/linux-4.19.296/fs/ntfs/ |
D | unistr.c | 103 u16 c1, c2; in ntfs_collate_names() local 109 c1 = le16_to_cpu(*name1++); in ntfs_collate_names() 112 if (c1 < upcase_len) in ntfs_collate_names() 113 c1 = le16_to_cpu(upcase[c1]); in ntfs_collate_names() 117 if (c1 < 64 && legal_ansi_char_array[c1] & 8) in ntfs_collate_names() 119 if (c1 < c2) in ntfs_collate_names() 121 if (c1 > c2) in ntfs_collate_names() 129 c1 = le16_to_cpu(*name1); in ntfs_collate_names() 130 if (c1 < 64 && legal_ansi_char_array[c1] & 8) in ntfs_collate_names() 151 u16 c1, c2; in ntfs_ucsncmp() local [all …]
|
/linux-4.19.296/fs/hfsplus/ |
D | unicode.c | 35 u16 len1, len2, c1, c2; in hfsplus_strcasecmp() local 44 c1 = c2 = 0; in hfsplus_strcasecmp() 46 while (len1 && !c1) { in hfsplus_strcasecmp() 47 c1 = case_fold(be16_to_cpu(*p1)); in hfsplus_strcasecmp() 57 if (c1 != c2) in hfsplus_strcasecmp() 58 return (c1 < c2) ? -1 : 1; in hfsplus_strcasecmp() 59 if (!c1 && !c2) in hfsplus_strcasecmp() 68 u16 len1, len2, c1, c2; in hfsplus_strcmp() local 78 c1 = be16_to_cpu(*p1); in hfsplus_strcmp() 80 if (c1 != c2) in hfsplus_strcmp() [all …]
|
/linux-4.19.296/drivers/char/ |
D | nwflash.c | 62 volatile unsigned int c1, c2; in get_flash_id() local 71 c1 = *(volatile unsigned char *) FLASH_BASE; in get_flash_id() 77 if (c1 == 0xB0) in get_flash_id() 82 c2 += (c1 << 8); in get_flash_id() 293 volatile unsigned int c1; in erase_block() local 306 c1 = *(volatile unsigned char *) (FLASH_BASE + 0x8000); in erase_block() 322 c1 = *pWritePtr; in erase_block() 344 c1 = 0; in erase_block() 345 while (!(c1 & 0x80) && time_before(jiffies, timeout)) { in erase_block() 350 c1 = *(volatile unsigned char *) (pWritePtr); in erase_block() [all …]
|
/linux-4.19.296/lib/ |
D | string.c | 45 unsigned char c1, c2; in strncasecmp() local 51 c1 = *s1++; in strncasecmp() 53 if (!c1 || !c2) in strncasecmp() 55 if (c1 == c2) in strncasecmp() 57 c1 = tolower(c1); in strncasecmp() 59 if (c1 != c2) in strncasecmp() 62 return (int)c1 - (int)c2; in strncasecmp() 70 int c1, c2; in strcasecmp() local 73 c1 = tolower(*s1++); in strcasecmp() 75 } while (c1 == c2 && c1 != 0); in strcasecmp() [all …]
|
/linux-4.19.296/drivers/clk/davinci/ |
D | psc.h | 36 #define LPSC_CLKDEV2(n, c1, d1, c2, d2) \ argument 38 LPSC_CLKDEV((c1), (d1)), \ 43 #define LPSC_CLKDEV3(n, c1, d1, c2, d2, c3, d3) \ argument 45 LPSC_CLKDEV((c1), (d1)), \
|
/linux-4.19.296/fs/adfs/ |
D | dir.c | 112 char c1, c2; in adfs_match() local 114 c1 = name->name[i]; in adfs_match() 117 if (c1 >= 'A' && c1 <= 'Z') in adfs_match() 118 c1 += 'a' - 'A'; in adfs_match() 122 if (c1 != c2) in adfs_match()
|
/linux-4.19.296/fs/hpfs/ |
D | name.c | 83 unsigned char c1 = upcase(hpfs_sb(s)->sb_cp_table,n1[i]); in hpfs_compare_names() local 85 if (c1 < c2) return -1; in hpfs_compare_names() 86 if (c1 > c2) return 1; in hpfs_compare_names()
|
D | dnode.c | 251 int c1, c2 = 0; in hpfs_add_to_dnode() local 270 if (hpfs_stop_cycles(i->i_sb, dno, &c1, &c2, "hpfs_add_to_dnode")) { in hpfs_add_to_dnode() 397 int c1, c2 = 0; in hpfs_add_dirent() local 401 if (hpfs_stop_cycles(i->i_sb, dno, &c1, &c2, "hpfs_add_dirent")) return 1; in hpfs_add_dirent() 442 int c1, c2 = 0; in move_to_top() local 446 if (hpfs_stop_cycles(i->i_sb, dno, &c1, &c2, "move_to_top")) in move_to_top() 526 int c1, c2 = 0; in delete_empty_dnode() local 528 if (hpfs_stop_cycles(i->i_sb, dno, &c1, &c2, "delete_empty_dnode")) return; in delete_empty_dnode() 750 int c1, c2 = 0; in hpfs_count_dnodes() local 755 if (hpfs_stop_cycles(s, dno, &c1, &c2, "hpfs_count_dnodes #1")) return; in hpfs_count_dnodes() [all …]
|
D | anode.c | 21 int c1, c2 = 0; in hpfs_bplus_lookup() local 23 if (hpfs_sb(s)->sb_chk) if (hpfs_stop_cycles(s, a, &c1, &c2, "hpfs_bplus_lookup")) return -1; in hpfs_bplus_lookup() 71 int c1, c2 = 0; in hpfs_add_sector_to_btree() local 92 if (hpfs_stop_cycles(s, a, &c1, &c2, "hpfs_add_sector_to_btree #1")) return -1; in hpfs_add_sector_to_btree() 168 if (hpfs_stop_cycles(s, up, &c1, &c2, "hpfs_add_sector_to_btree #2")) return -1; in hpfs_add_sector_to_btree() 283 int c1, c2 = 0; in hpfs_remove_btree() local 304 if (hpfs_stop_cycles(s, ano, &c1, &c2, "hpfs_remove_btree #2")) return; in hpfs_remove_btree() 407 int c1, c2 = 0; in hpfs_truncate_btree() local 448 if (hpfs_stop_cycles(s, node, &c1, &c2, "hpfs_truncate_btree")) in hpfs_truncate_btree()
|
D | dir.c | 74 int c1, c2 = 0; in hpfs_readdir() local 128 if (hpfs_stop_cycles(inode->i_sb, ctx->pos, &c1, &c2, "hpfs_readdir")) { in hpfs_readdir()
|
D | super.c | 100 int hpfs_stop_cycles(struct super_block *s, int key, int *c1, int *c2, in hpfs_stop_cycles() argument 103 if (*c2 && *c1 == key) { in hpfs_stop_cycles() 108 if (!((*c2 - 1) & *c2)) *c1 = key; in hpfs_stop_cycles()
|
/linux-4.19.296/drivers/misc/ |
D | tsl2550.c | 162 u16 c1 = count_lut[ch1]; in tsl2550_calculate_lux() local 171 if (c1 <= c0) in tsl2550_calculate_lux() 173 r = c1 * 128 / c0; in tsl2550_calculate_lux() 176 lux = ((c0 - c1) * ratio_lut[r]) / 256; in tsl2550_calculate_lux()
|
/linux-4.19.296/include/uapi/linux/android/ |
D | binder.h | 27 #define B_PACK_CHARS(c1, c2, c3, c4) \ argument 28 ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4))
|
/linux-4.19.296/drivers/clk/tegra/ |
D | cvb.h | 31 int c1; member
|
D | cvb.c | 30 mv = DIV_ROUND_CLOSEST((mv + cvb->c1) * speedo, s_scale) + cvb->c0; in get_cvb_voltage()
|
/linux-4.19.296/virt/kvm/arm/hyp/ |
D | vgic-v3-sr.c | 616 int c0, c1; in __vgic_v3_clear_highest_active_priority() local 626 c1 = ap1 ? __ffs(ap1) : 32; in __vgic_v3_clear_highest_active_priority() 629 if (c0 < c1) { in __vgic_v3_clear_highest_active_priority() 634 ap1 &= ~BIT(c1); in __vgic_v3_clear_highest_active_priority() 636 hap += c1; in __vgic_v3_clear_highest_active_priority()
|
/linux-4.19.296/include/sound/ |
D | ak4117.h | 182 void (*change_callback)(struct ak4117 *ak4117, unsigned char c0, unsigned char c1);
|
D | ak4114.h | 193 void (*change_callback)(struct ak4114 *ak4114, unsigned char c0, unsigned char c1);
|
D | ak4113.h | 311 unsigned char c1);
|
/linux-4.19.296/fs/cifs/ |
D | dir.c | 951 wchar_t c1, c2; in cifs_ci_compare() local 965 l1 = codepage->char2uni(&str[i], len - i, &c1); in cifs_ci_compare() 987 if (cifs_toupper(c1) != cifs_toupper(c2)) in cifs_ci_compare()
|
/linux-4.19.296/drivers/gpio/ |
D | gpio-aspeed.c | 313 void __iomem *c1 = bank_reg(gpio, bank, reg_cmdsrc1); in aspeed_gpio_change_cmd_source() local 324 reg = ioread32(c1); in aspeed_gpio_change_cmd_source() 329 iowrite32(reg, c1); in aspeed_gpio_change_cmd_source()
|
/linux-4.19.296/drivers/media/common/v4l2-tpg/ |
D | v4l2-tpg-colors.c | 1212 const double c1 = 3424.0 / 4096.0; in transfer_rgb_to_smpte2084() local 1223 return pow((c1 + c2 * v) / (1 + c3 * v), m2); in transfer_rgb_to_smpte2084()
|
/linux-4.19.296/fs/ubifs/ |
D | super.c | 2128 struct ubifs_info *c1 = data; in sb_test() local 2131 return c->vi.cdev == c1->vi.cdev; in sb_test() 2179 struct ubifs_info *c1 = sb->s_fs_info; in ubifs_mount() local 2183 if (!!(flags & SB_RDONLY) != c1->ro_mount) { in ubifs_mount()
|