/linux-4.1.27/fs/hfsplus/ |
D | unicode.c | 34 u16 len1, len2, c1, c2; in hfsplus_strcasecmp() local 43 c1 = c2 = 0; in hfsplus_strcasecmp() 50 while (len2 && !c2) { in hfsplus_strcasecmp() 51 c2 = case_fold(be16_to_cpu(*p2)); in hfsplus_strcasecmp() 56 if (c1 != c2) in hfsplus_strcasecmp() 57 return (c1 < c2) ? -1 : 1; in hfsplus_strcasecmp() 58 if (!c1 && !c2) in hfsplus_strcasecmp() 67 u16 len1, len2, c1, c2; in hfsplus_strcmp() local 78 c2 = be16_to_cpu(*p2); in hfsplus_strcmp() 79 if (c1 != c2) in hfsplus_strcmp() [all …]
|
/linux-4.1.27/fs/ntfs/ |
D | unistr.c | 103 u16 c1, c2; in ntfs_collate_names() local 110 c2 = le16_to_cpu(*name2++); in ntfs_collate_names() 114 if (c2 < upcase_len) in ntfs_collate_names() 115 c2 = le16_to_cpu(upcase[c2]); in ntfs_collate_names() 119 if (c1 < c2) in ntfs_collate_names() 121 if (c1 > c2) in ntfs_collate_names() 151 u16 c1, c2; in ntfs_ucsncmp() local 156 c2 = le16_to_cpu(s2[i]); in ntfs_ucsncmp() 157 if (c1 < c2) in ntfs_ucsncmp() 159 if (c1 > c2) in ntfs_ucsncmp() [all …]
|
/linux-4.1.27/security/selinux/ss/ |
D | context.h | 97 static inline int mls_context_cmp(struct context *c1, struct context *c2) in mls_context_cmp() argument 99 return ((c1->range.level[0].sens == c2->range.level[0].sens) && in mls_context_cmp() 100 ebitmap_cmp(&c1->range.level[0].cat, &c2->range.level[0].cat) && in mls_context_cmp() 101 (c1->range.level[1].sens == c2->range.level[1].sens) && in mls_context_cmp() 102 ebitmap_cmp(&c1->range.level[1].cat, &c2->range.level[1].cat)); in mls_context_cmp() 150 static inline int context_cmp(struct context *c1, struct context *c2) in context_cmp() argument 152 if (c1->len && c2->len) in context_cmp() 153 return (c1->len == c2->len && !strcmp(c1->str, c2->str)); in context_cmp() 154 if (c1->len || c2->len) in context_cmp() 156 return ((c1->user == c2->user) && in context_cmp() [all …]
|
D | avtab.c | 34 static const u32 c2 = 0x1b873593; in avtab_hash() local 46 v *= c2; \ in avtab_hash()
|
/linux-4.1.27/lib/ |
D | string.c | 40 unsigned char c1, c2; in strncasecmp() local 47 c2 = *s2++; in strncasecmp() 48 if (!c1 || !c2) in strncasecmp() 50 if (c1 == c2) in strncasecmp() 53 c2 = tolower(c2); in strncasecmp() 54 if (c1 != c2) in strncasecmp() 57 return (int)c1 - (int)c2; in strncasecmp() 65 int c1, c2; in strcasecmp() local 69 c2 = tolower(*s2++); in strcasecmp() 70 } while (c1 == c2 && c1 != 0); in strcasecmp() [all …]
|
D | bch.c | 606 unsigned int a, b, c, a2, b2, c2, e3, tmp[4]; in find_poly_deg3_roots() local 611 c2 = gf_div(bch, poly->c[0], e3); in find_poly_deg3_roots() 616 c = gf_mul(bch, a2, c2); /* c = a2c2 */ in find_poly_deg3_roots() 617 b = gf_mul(bch, a2, b2)^c2; /* b = a2b2 + c2 */ in find_poly_deg3_roots() 639 unsigned int a, b, c, d, e = 0, f, a2, b2, c2, e4; in find_poly_deg4_roots() local 675 c2 = gf_inv(bch, d); in find_poly_deg4_roots() 680 c2 = d; in find_poly_deg4_roots() 685 if (find_affine4_roots(bch, a2, b2, c2, roots) == 4) { in find_poly_deg4_roots()
|
/linux-4.1.27/drivers/media/usb/pvrusb2/ |
D | pvrusb2-std.c | 192 unsigned int c1,c2; in pvr2_std_id_to_str() local 203 c2 = scnprintf(bufPtr,bufSize,";"); in pvr2_std_id_to_str() 204 c1 += c2; in pvr2_std_id_to_str() 205 bufSize -= c2; in pvr2_std_id_to_str() 206 bufPtr += c2; in pvr2_std_id_to_str() 209 c2 = scnprintf(bufPtr,bufSize, in pvr2_std_id_to_str() 213 c2 = scnprintf(bufPtr,bufSize,"/"); in pvr2_std_id_to_str() 215 c1 += c2; in pvr2_std_id_to_str() 216 bufSize -= c2; in pvr2_std_id_to_str() 217 bufPtr += c2; in pvr2_std_id_to_str() [all …]
|
D | pvrusb2-v4l2.c | 1110 int c1,c2; in pvr2_v4l2_read() local 1120 c2 = pvr2_hdw_cpufw_get(hdw,offs,tbuf,c1); in pvr2_v4l2_read() 1121 if (c2 < 0) { in pvr2_v4l2_read() 1122 tcnt = c2; in pvr2_v4l2_read() 1125 if (!c2) break; in pvr2_v4l2_read() 1126 if (copy_to_user(buff,tbuf,c2)) { in pvr2_v4l2_read() 1130 offs += c2; in pvr2_v4l2_read() 1131 tcnt += c2; in pvr2_v4l2_read() 1132 buff += c2; in pvr2_v4l2_read() 1133 count -= c2; in pvr2_v4l2_read() [all …]
|
/linux-4.1.27/arch/arm/kvm/ |
D | init.S | 75 mcrr p15, 4, rr_lo_hi(r2, r3), c2 79 mrc p15, 4, r0, c2, c0, 2 @ HTCR 82 mrc p15, 0, r1, c2, c0, 2 @ TTBCR 85 mcr p15, 4, r0, c2, c0, 2 @ HTCR 87 mrc p15, 4, r1, c2, c1, 2 @ VTCR 93 mcr p15, 4, r1, c2, c1, 2 @ VTCR 97 mrc p15, 0, r0, c10, c2, 0 98 mcr p15, 4, r0, c10, c2, 0 99 mrc p15, 0, r0, c10, c2, 1 100 mcr p15, 4, r0, c10, c2, 1
|
D | interrupts.S | 55 mcrr p15, 6, rr_lo_hi(r2, r3), c2 @ Write VTTBR 62 mcrr p15, 6, r2, r3, c2 @ Back to VMID #0 168 mcrr p15, 6, r2, r3, c2 @ Write VTTBR 282 mrrc p15, 6, r0, r1, c2 @ Read VTTBR 289 mrc p15, 4, r2, c5, c2, 0 @ HSR 295 mrc p15, 4, r2, c5, c2, 0 @ HSR 375 mrrc p15, 6, r0, r2, c2 435 mrc p15, 4, r1, c5, c2, 0 @ HSR
|
D | interrupts_head.S | 253 mrc p15, 0, r4, c2, c0, 2 @ TTBCR 255 mrrc p15, 0, r6, r7, c2 @ TTBR 0 256 mrrc p15, 1, r8, r9, c2 @ TTBR 1 257 mrc p15, 0, r10, c10, c2, 0 @ PRRR 258 mrc p15, 0, r11, c10, c2, 1 @ NMRR 390 mcr p15, 0, r4, c2, c0, 2 @ TTBCR 392 mcrr p15, 0, r6, r7, c2 @ TTBR 0 393 mcrr p15, 1, r8, r9, c2 @ TTBR 1 394 mcr p15, 0, r10, c10, c2, 0 @ PRRR 395 mcr p15, 0, r11, c10, c2, 1 @ NMRR
|
/linux-4.1.27/arch/arm/include/asm/hardware/ |
D | cp14.h | 62 #define RCP14_DBGDSCRext() MRC14(0, c0, c2, 2) 67 #define RCP14_DBGBVR2() MRC14(0, c0, c2, 4) 83 #define RCP14_DBGBCR2() MRC14(0, c0, c2, 5) 99 #define RCP14_DBGWVR2() MRC14(0, c0, c2, 6) 115 #define RCP14_DBGWCR2() MRC14(0, c0, c2, 7) 132 #define RCP14_DBGBXVR2() MRC14(0, c1, c2, 1) 147 #define RCP14_DBGOSSRR() MRC14(0, c1, c2, 4) 151 #define RCP14_DBGDSAR() MRC14(0, c2, c0, 0) 158 #define RCP14_DBGDEVID() MRC14(0, c7, c2, 7) 167 #define WCP14_DBGDSCRext(val) MCR14(val, 0, c0, c2, 2) [all …]
|
/linux-4.1.27/drivers/char/ |
D | nwflash.c | 62 volatile unsigned int c1, c2; in get_flash_id() local 68 c2 = inb(0x80); in get_flash_id() 72 c2 = inb(0x80); in get_flash_id() 78 c2 = *(volatile unsigned char *) (FLASH_BASE + 2); in get_flash_id() 80 c2 = *(volatile unsigned char *) (FLASH_BASE + 1); in get_flash_id() 82 c2 += (c1 << 8); in get_flash_id() 89 if (c2 == KFLASH_ID4) in get_flash_id() 92 return c2; in get_flash_id() 428 volatile unsigned int c2; in write_block() local 453 if (__get_user(c2, buf + offset)) in write_block() [all …]
|
/linux-4.1.27/drivers/leds/ |
D | leds-tca6507.c | 218 int c1, c2; in choose_times() local 232 for (c2 = 0; c2 <= c1; c2++) { in choose_times() 233 int tt = t + time_codes[c2]; in choose_times() 245 *c2p = c2; in choose_times() 326 int c1, c2; in set_times() local 329 result = choose_times(tca->bank[bank].ontime, &c1, &c2); in set_times() 333 c2, time_codes[c2], tca->bank[bank].ontime); in set_times() 334 set_code(tca, TCA6507_FADE_ON, bank, c2); in set_times() 338 result = choose_times(tca->bank[bank].offtime, &c1, &c2); in set_times() 342 c2, time_codes[c2], tca->bank[bank].offtime); in set_times() [all …]
|
/linux-4.1.27/arch/mips/include/asm/sibyte/ |
D | board.h | 42 #define setleds(t0, t1, c0, c1, c2, c3) \ argument 48 li t1, c2; \ 53 #define setleds(t0, t1, c0, c1, c2, c3) argument
|
/linux-4.1.27/arch/x86/boot/ |
D | string.c | 44 unsigned char c1, c2; in strncmp() local 48 c2 = *ct++; in strncmp() 49 if (c1 != c2) in strncmp() 50 return c1 < c2 ? -1 : 1; in strncmp()
|
/linux-4.1.27/arch/arm/mm/ |
D | proc-v7-3level.S | 62 mcrr p15, 0, rpgdl, rpgdh, c2 @ set TTB 0 133 mrc p15, 0, \tmp, c2, c0, 2 @ TTB control register 145 mcr p15, 0, \tmp, c2, c0, 2 @ TTBCR 149 mcrr p15, 1, \ttbr1, \tmp, c2 @ load TTBR1 152 mcrr p15, 0, \ttbr0, \tmp, c2 @ load TTBR0
|
D | proc-v7.S | 105 mrrc p15, 1, r5, r7, c2 @ TTB 1 107 mrc p15, 0, r7, c2, c0, 1 @ TTB 1 109 mrc p15, 0, r11, c2, c0, 2 @ TTB control register 130 mcrr p15, 0, r1, ip, c2 @ TTB 0 131 mcrr p15, 1, r5, r7, c2 @ TTB 1 135 mcr p15, 0, r1, c2, c0, 0 @ TTB 0 136 mcr p15, 0, r7, c2, c0, 1 @ TTB 1 138 mcr p15, 0, r11, c2, c0, 2 @ TTB control register 141 mcr p15, 0, r4, c10, c2, 0 @ write PRRR 142 mcr p15, 0, r5, c10, c2, 1 @ write NMRR [all …]
|
D | proc-v6.S | 107 mcr p15, 0, r0, c2, c0, 0 @ set TTB 0 145 mrc p15, 0, r6, c2, c0, 1 @ Translation table base 1 167 mcr p15, 0, r1, c2, c0, 0 @ Translation table base 0 168 mcr p15, 0, r6, c2, c0, 1 @ Translation table base 1 169 mcr p15, 0, ip, c2, c0, 2 @ TTB control register 213 mcr p15, 0, r0, c2, c0, 2 @ TTB control register 218 mcr p15, 0, r8, c2, c0, 1 @ load TTB1
|
D | proc-v7-2level.S | 62 mcr p15, 0, r0, c2, c0, 0 @ set TTB 0 152 mcr p15, 0, \zero, c2, c0, 2 @ TTB control register 157 mcr p15, 0, \ttbr1, c2, c0, 1 @ load TTB1
|
D | proc-sa1100.S | 56 mcr p15, 0, ip, c15, c2, 2 @ Disable clock switching 111 mcr p15, 0, r0, c15, c2, 2 @ disable clock switching 151 mcr p15, 0, r0, c2, c0, 0 @ load page table pointer 194 mcr p15, 0, r1, c2, c0, 0 @ translation table base addr
|
D | proc-xscale.S | 72 mrc p15, 0, \rd, c2, c0, 0 @ arbitrary read of cp15 78 mrc p15, 0, \rd, c2, c0, 0 @ arbitrary read of cp15 94 1: mcr p15, 0, \rd, c7, c2, 5 @ allocate D cache line 96 mcr p15, 0, \rd, c7, c2, 5 @ allocate D cache line 98 mcr p15, 0, \rd, c7, c2, 5 @ allocate D cache line 100 mcr p15, 0, \rd, c7, c2, 5 @ allocate D cache line 477 mcr p15, 0, r0, c2, c0, 0 @ load page table pointer 554 mcr p15, 0, r1, c2, c0, 0 @ translation table base addr
|
D | proc-sa110.S | 48 mcr p15, 0, r0, c15, c2, 2 @ Disable clock switching 95 mcr p15, 0, ip, c15, c2, 2 @ disable clock switching 140 mcr p15, 0, r0, c2, c0, 0 @ load page table pointer
|
D | proc-arm940.S | 308 mcr p15, 0, r3, c6, c2, 0 @ set area 2, ROM/FLASH 309 mcr p15, 0, r3, c6, c2, 1 312 mcr p15, 0, r0, c2, c0, 0 @ Region 1&2 cacheable 313 mcr p15, 0, r0, c2, c0, 1
|
D | proc-arm740.S | 98 2: mcr p15, 0, r0, c6, c2 @ set area 2, ROM/FLASH 101 mcr p15, 0, r0, c2, c0 @ Region 1&2 cacheable
|
D | proc-mohawk.S | 334 mcr p15, 0, r0, c2, c0, 0 @ load page table pointer 379 mcr p15, 0, r1, c2, c0, 0 @ translation table base addr 393 mcr p15, 0, r4, c2, c0, 0 @ load page table pointer
|
D | proc-arm946.S | 353 mcr p15, 0, r3, c6, c2, 0 356 mcr p15, 0, r0, c2, c0, 0 @ region 1,2 d-cacheable 357 mcr p15, 0, r0, c2, c0, 1 @ region 1,2 i-cacheable
|
D | proc-xsc3.S | 59 mrc p15, 0, \rd, c2, c0, 0 @ arbitrary read of cp15 369 mcr p15, 0, r0, c2, c0, 0 @ load page table pointer 442 mcr p15, 0, r1, c2, c0, 0 @ translation table base addr 458 mcr p15, 0, r4, c2, c0, 0 @ load page table pointer
|
D | proc-arm1026.S | 378 mcr p15, 0, r0, c2, c0, 0 @ load page table pointer 406 mcr p15, 0, r4, c2, c0 @ load page table pointer
|
D | proc-arm920.S | 367 mcr p15, 0, r0, c2, c0, 0 @ load page table pointer 407 mcr p15, 0, r1, c2, c0, 0 @ TTB address
|
D | proc-arm720.S | 81 mcr p15, 0, r0, c2, c0, 0 @ update page table ptr
|
D | proc-arm926.S | 380 mcr p15, 0, r0, c2, c0, 0 @ load page table pointer 422 mcr p15, 0, r1, c2, c0, 0 @ TTB address
|
D | proc-fa526.S | 117 mcr p15, 0, r0, c2, c0, 0 @ load page table pointer
|
D | proc-feroceon.S | 491 mcr p15, 0, r0, c2, c0, 0 @ load page table pointer 537 mcr p15, 0, r1, c2, c0, 0 @ TTB address
|
D | proc-arm922.S | 371 mcr p15, 0, r0, c2, c0, 0 @ load page table pointer
|
D | proc-arm1020e.S | 405 mcr p15, 0, r0, c2, c0, 0 @ load page table pointer
|
D | proc-arm1022.S | 389 mcr p15, 0, r0, c2, c0, 0 @ load page table pointer
|
D | proc-arm1020.S | 421 mcr p15, 0, r0, c2, c0, 0 @ load page table pointer
|
D | proc-arm925.S | 419 mcr p15, 0, r0, c2, c0, 0 @ load page table pointer
|
/linux-4.1.27/tools/power/cpupower/utils/helpers/ |
D | bitmask.c | 202 const char *c1, *c2; /* next tokens after '-' or ',' */ in bitmask_parselist() local 212 c2 = nexttoken(p, ','); in bitmask_parselist() 213 if (c1 != NULL && (c2 == NULL || c1 < c2)) { in bitmask_parselist() 218 if (c1 != NULL && (c2 == NULL || c1 < c2)) { in bitmask_parselist()
|
/linux-4.1.27/fs/adfs/ |
D | dir.c | 112 char c1, c2; in adfs_match() local 115 c2 = obj->name[i]; in adfs_match() 119 if (c2 >= 'A' && c2 <= 'Z') in adfs_match() 120 c2 += 'a' - 'A'; in adfs_match() 122 if (c1 != c2) in adfs_match()
|
/linux-4.1.27/net/wireless/ |
D | chan.c | 187 const struct cfg80211_chan_def *c2) in cfg80211_chandef_compatible() argument 192 if (cfg80211_chandef_identical(c1, c2)) in cfg80211_chandef_compatible() 196 if (c1->chan != c2->chan) in cfg80211_chandef_compatible() 203 if (c1->width == c2->width) in cfg80211_chandef_compatible() 212 c2->width == NL80211_CHAN_WIDTH_5 || in cfg80211_chandef_compatible() 213 c2->width == NL80211_CHAN_WIDTH_10) in cfg80211_chandef_compatible() 218 return c2; in cfg80211_chandef_compatible() 220 if (c2->width == NL80211_CHAN_WIDTH_20_NOHT || in cfg80211_chandef_compatible() 221 c2->width == NL80211_CHAN_WIDTH_20) in cfg80211_chandef_compatible() 225 chandef_primary_freqs(c2, &c2_pri40, &c2_pri80); in cfg80211_chandef_compatible() [all …]
|
/linux-4.1.27/arch/arm/boot/compressed/ |
D | string.c | 83 unsigned char c1, c2; in strcmp() local 88 c2 = *ct++; in strcmp() 89 res = c1 - c2; in strcmp()
|
D | head.S | 622 mcr p15, 0, r0, c2, c0, 0 @ D-cache on 623 mcr p15, 0, r0, c2, c0, 1 @ I-cache on 651 mcr p15, 0, r0, c2, c0, 0 @ cache on 775 mrcne p15, 0, r6, c2, c0, 2 @ read ttb control reg 780 mcrne p15, 0, r3, c2, c0, 0 @ load page table pointer 782 mcrne p15, 0, r6, c2, c0, 2 @ load ttb control 812 mcr p15, 0, r3, c2, c0, 0 @ load page table pointer
|
/linux-4.1.27/fs/hpfs/ |
D | name.c | 83 unsigned char c2 = upcase(hpfs_sb(s)->sb_cp_table,n2[i]); in hpfs_compare_names() local 84 if (c1 < c2) return -1; in hpfs_compare_names() 85 if (c1 > c2) return 1; in hpfs_compare_names()
|
D | dnode.c | 247 int c1, c2 = 0; in hpfs_add_to_dnode() local 266 if (hpfs_stop_cycles(i->i_sb, dno, &c1, &c2, "hpfs_add_to_dnode")) { in hpfs_add_to_dnode() 393 int c1, c2 = 0; in hpfs_add_dirent() local 397 if (hpfs_stop_cycles(i->i_sb, dno, &c1, &c2, "hpfs_add_dirent")) return 1; in hpfs_add_dirent() 439 int c1, c2 = 0; in move_to_top() local 443 if (hpfs_stop_cycles(i->i_sb, dno, &c1, &c2, "move_to_top")) in move_to_top() 523 int c1, c2 = 0; in delete_empty_dnode() local 525 if (hpfs_stop_cycles(i->i_sb, dno, &c1, &c2, "delete_empty_dnode")) return; in delete_empty_dnode() 748 int c1, c2 = 0; in hpfs_count_dnodes() local 753 if (hpfs_stop_cycles(s, dno, &c1, &c2, "hpfs_count_dnodes #1")) return; in hpfs_count_dnodes() [all …]
|
D | anode.c | 20 int c1, c2 = 0; in hpfs_bplus_lookup() local 22 if (hpfs_sb(s)->sb_chk) if (hpfs_stop_cycles(s, a, &c1, &c2, "hpfs_bplus_lookup")) return -1; in hpfs_bplus_lookup() 70 int c1, c2 = 0; in hpfs_add_sector_to_btree() local 91 if (hpfs_stop_cycles(s, a, &c1, &c2, "hpfs_add_sector_to_btree #1")) return -1; in hpfs_add_sector_to_btree() 163 c2 = 0; in hpfs_add_sector_to_btree() 167 if (hpfs_stop_cycles(s, up, &c1, &c2, "hpfs_add_sector_to_btree #2")) return -1; in hpfs_add_sector_to_btree() 282 int c1, c2 = 0; in hpfs_remove_btree() local 303 if (hpfs_stop_cycles(s, ano, &c1, &c2, "hpfs_remove_btree #2")) return; in hpfs_remove_btree() 406 int c1, c2 = 0; in hpfs_truncate_btree() local 447 if (hpfs_stop_cycles(s, node, &c1, &c2, "hpfs_truncate_btree")) in hpfs_truncate_btree()
|
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() 107 (*c2)++; in hpfs_stop_cycles() 108 if (!((*c2 - 1) & *c2)) *c1 = key; in hpfs_stop_cycles()
|
D | dir.c | 69 int c1, c2 = 0; in hpfs_readdir() local 123 if (hpfs_stop_cycles(inode->i_sb, ctx->pos, &c1, &c2, "hpfs_readdir")) { in hpfs_readdir()
|
/linux-4.1.27/drivers/acpi/acpica/ |
D | utstring.c | 106 int c2; in acpi_ut_stricmp() local 110 c2 = tolower((int)*string2); in acpi_ut_stricmp() 115 while ((c1 == c2) && (c1)); in acpi_ut_stricmp() 117 return (c1 - c2); in acpi_ut_stricmp()
|
/linux-4.1.27/arch/arm/mach-iop13xx/include/mach/ |
D | entry-macro.S | 30 mrc p6, 0, \irqnr, c3, c2, 0 @ Read IINTVEC 32 mrceq p6, 0, \irqnr, c3, c2, 0 @ Re-read on potentially bad zero
|
/linux-4.1.27/drivers/gpu/drm/nouveau/include/nvkm/core/ |
D | object.h | 193 unsigned char c1, c2; in nv_memcmp() local 197 c2 = *(str++); in nv_memcmp() 198 if (c1 != c2) in nv_memcmp() 199 return c1 - c2; in nv_memcmp()
|
/linux-4.1.27/arch/m68k/include/asm/ |
D | page_mm.h | 78 m68k_fixup(%c2, 1b+2) in ___pa() 89 m68k_fixup(%c2, 1b+2) in __va()
|
/linux-4.1.27/scripts/ |
D | pnmtologo.c | 223 static inline int is_equal(struct color c1, struct color c2) in is_equal() argument 225 return c1.red == c2.red && c1.green == c2.green && c1.blue == c2.blue; in is_equal()
|
/linux-4.1.27/drivers/media/usb/pwc/ |
D | pwc-dec23.c | 444 const int *c2 = src + 4; in copy_image_block_CrCb() 447 for (i = 0; i < 4; i++, c1++, c2++) { in copy_image_block_CrCb() 449 *d++ = CLAMP((*c2) >> scalebits); in copy_image_block_CrCb() 453 for (i = 0; i < 4; i++, c1++, c2++) { in copy_image_block_CrCb() 455 *d++ = CLAMP((*c2) >> scalebits); in copy_image_block_CrCb()
|
/linux-4.1.27/drivers/thermal/ |
D | imx_thermal.c | 100 u32 c1, c2; /* See formula in imx_get_sensor_data() */ member 117 critical_value = (data->c2 - panic_temp) / data->c1; in imx_set_panic_temp() 130 alarm_value = (data->c2 - alarm_temp) / data->c1; in imx_set_alarm_temp() 182 *temp = data->c2 - n_meas * data->c1; in imx_get_temp() 405 data->c2 = n1 * data->c1 + 1000 * t1; in imx_get_sensor_data()
|
/linux-4.1.27/arch/unicore32/kernel/ |
D | hibernate_asm.S | 32 movc p0.c2, r0, #0 65 movc p0.c2, r0, #0
|
D | sleep.S | 25 movc r4, p0.c2, #0 @ translation table base addr 175 movc p0.c2, r4, #0 @ translation table base addr
|
D | head.S | 162 movc p0.c2, r4, #0 @ set pgd
|
/linux-4.1.27/Documentation/devicetree/bindings/dma/ |
D | qcom_adm.txt | 17 - c2 34 reset-names = "clk", "c0", "c1", "c2";
|
/linux-4.1.27/include/uapi/linux/android/ |
D | binder.h | 26 #define B_PACK_CHARS(c1, c2, c3, c4) \ argument 27 ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4))
|
/linux-4.1.27/drivers/media/pci/ttpci/ |
D | av7110_av.c | 648 int c, c2, l, add; in av7110_p2t_write() local 652 c2 = 0; in av7110_p2t_write() 704 c2 = find_pes_header(buf + c, length - c, &p->frags); in av7110_p2t_write() 705 if (c2 >= 0 && c2 < (TS_SIZE - 4) - p->pos) in av7110_p2t_write() 706 l = c2+c; in av7110_p2t_write() 718 c2 = find_pes_header(buf + c + add, length - c - add, &p->frags); in av7110_p2t_write() 719 if (c2 >= 0) { in av7110_p2t_write() 720 c2 += c + add; in av7110_p2t_write() 721 if (c2 > c){ in av7110_p2t_write() 722 p_to_t(buf + c, c2 - c, pid, &p->counter, p->feed); in av7110_p2t_write() [all …]
|
/linux-4.1.27/drivers/infiniband/hw/amso1100/ |
D | Kbuild | 5 iw_c2-y := c2.o c2_provider.o c2_rnic.o c2_alloc.o c2_mq.o c2_ae.o c2_vq.o \
|
/linux-4.1.27/Documentation/devicetree/bindings/pinctrl/ |
D | marvell,armada-375-pinctrl.txt | 27 mpp11 11 gpio, dev(a0), led(c2), audio(sdo) 68 mpp52 52 gpio, led(c2), ge0(rxd2), ge1(rxd2) 76 mpp60 60 gpio, uart1(txd), led(c2)
|
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/subdev/volt/ |
D | gk20a.c | 30 int c2; member 68 mv = DIV_ROUND_CLOSEST(coef->c2 * speedo, s_scale); in gk20a_volt_get_cvb_voltage()
|
/linux-4.1.27/arch/powerpc/crypto/ |
D | aes-tab-4k.S | 54 .long R(75, b7, b7, c2), R(e1, fd, fd, 1c) 122 .long R(9f, c2, c2, 5d), R(bd, d3, d3, 6e) 146 .long R(c2, 61, 61, a3), R(6a, 35, 35, 5f) 185 .long R(75, c2, 89, 6a), R(f4, 8e, 79, 78) 197 .long R(b2, eb, 28, 07), R(2f, b5, c2, 03) 255 .long R(f6, 8d, 13, c2), R(90, d8, b8, e8) 290 .long R(38, 24, 34, 2c), R(c2, a3, 40, 5f)
|
/linux-4.1.27/arch/powerpc/platforms/86xx/ |
D | mpc8610_hpcd.c | 150 #define MAKE_AD(alpha, red, blue, green, size, c0, c1, c2, c3) \ argument 154 (c2 << AD_COMP_2_SHIFT) | (c1 << AD_COMP_1_SHIFT) | \
|
/linux-4.1.27/arch/arm/kernel/ |
D | iwmmxt.S | 96 mrc p15, 0, r2, c2, c0, 0 222 mrc p15, 0, r2, c2, c0, 0 232 mrc p15, 0, r2, c2, c0, 0 344 mrc p15, 0, r1, c2, c0, 0
|
D | head-nommu.S | 177 mcr p15, 0, \tmp, c6, c2, 0 @ Write RGNR
|
D | head.S | 449 mcr p15, 0, r4, c2, c0, 0 @ load page table pointer
|
D | hw_breakpoint.c | 261 ARM_DBG_WRITE(c0, c2, 2, (dscr | ARM_DSCR_MDBGEN)); in enable_monitor_mode()
|
/linux-4.1.27/tools/perf/util/ |
D | help.c | 251 const struct cmdname *const *c1 = p1, *const *c2 = p2; in levenshtein_compare() local 252 const char *s1 = (*c1)->name, *s2 = (*c2)->name; in levenshtein_compare() 254 int l2 = (*c2)->len; in levenshtein_compare()
|
/linux-4.1.27/Documentation/devicetree/bindings/net/ |
D | opencores-ethoc.txt | 20 local-mac-address = [00 50 c2 13 6f 00];
|
/linux-4.1.27/drivers/staging/rtl8723au/hal/ |
D | HalDMOutSrc8723A_CE.c | 666 static bool _PHY_SimularityCompare(struct rtw_adapter *pAdapter, int result[][8], u8 c1, u8 c2) in _PHY_SimularityCompare() argument 681 …diff = (result[c1][i] > result[c2][i]) ? (result[c1][i] - result[c2][i]) : (result[c2][i] - result… in _PHY_SimularityCompare() 685 final_candidate[(i/4)] = c2; in _PHY_SimularityCompare() 686 else if (result[c2][i]+result[c2][i+1] == 0) in _PHY_SimularityCompare()
|
/linux-4.1.27/tools/perf/tests/ |
D | code-reading.c | 50 char c1, c2; in read_objdump_line() local 63 c2 = line[i++]; in read_objdump_line() 68 *(unsigned char *)*buf = (hex(c1) << 4) | hex(c2); in read_objdump_line()
|
/linux-4.1.27/drivers/usb/misc/ |
D | yurex.c | 455 unsigned long long c, c2 = 0; in yurex_write() local 498 c = c2 = simple_strtoull(data, NULL, 0); in yurex_write() 529 dev->bbu = c2; in yurex_write()
|
/linux-4.1.27/drivers/staging/netlogic/ |
D | xlr_net.c | 574 int b1, b2, c1, c2, i, j, k; in xlr_config_translate_table() local 594 c2 = 0; in xlr_config_translate_table() 603 c2 = (c1 + 1) & 3; in xlr_config_translate_table() 610 (c2 << 7) | (b2 << 1) | (use_bkt << 0)); in xlr_config_translate_table() 612 i, b1, b2, c1, c2); in xlr_config_translate_table() 614 c1 = c2; in xlr_config_translate_table()
|
/linux-4.1.27/drivers/staging/rtl8188eu/hal/ |
D | phy.c | 986 u8 c1, u8 c2) in simularity_compare() argument 1008 if ((resulta[c2][i] & 0x00000200) != 0) in simularity_compare() 1009 tmp2 = resulta[c2][i] | 0xFFFFFC00; in simularity_compare() 1011 tmp2 = resulta[c2][i]; in simularity_compare() 1014 tmp2 = resulta[c2][i]; in simularity_compare() 1022 final_candidate[(i/4)] = c2; in simularity_compare() 1023 else if (resulta[c2][i] + resulta[c2][i+1] == 0) in simularity_compare()
|
/linux-4.1.27/sound/core/ |
D | init.c | 84 char c2 = *s2++; in module_slot_match() local 87 if (c2 == '-') in module_slot_match() 88 c2 = '_'; in module_slot_match() 89 if (c1 != c2) in module_slot_match()
|
/linux-4.1.27/drivers/hwmon/ |
D | sht15.c | 661 int c2, c3; in sht15_calc_humid() local 666 c2 = 648000; /* x 10 ^ -6 */ in sht15_calc_humid() 670 c2 = 40500; /* x 10 ^ -6 */ in sht15_calc_humid() 676 + c2 * data->val_humid / 1000 in sht15_calc_humid()
|
/linux-4.1.27/arch/powerpc/platforms/85xx/ |
D | p1022_ds.c | 102 #define MAKE_AD(alpha, red, blue, green, size, c0, c1, c2, c3) \ argument 106 (c2 << AD_COMP_2_SHIFT) | (c1 << AD_COMP_1_SHIFT) | \
|
/linux-4.1.27/arch/x86/crypto/sha-mb/ |
D | sha1_x8_avx2.S | 74 # r2 = {c7 c6 c5 c4 c3 c2 c1 c0} 84 # r2 = {h2 g2 f2 e2 d2 c2 b2 a2} 97 vshufps $0xEE, \r3, \r2, \r2 # r2 = {d7 d6 c7 c6 d3 d2 c3 c2} 99 vshufps $0x88, \r2, \r0, \r1 # r1 = {d6 c6 b6 a6 d2 c2 b2 a2}
|
/linux-4.1.27/arch/unicore32/mm/ |
D | proc-ucv2.S | 104 movc p0.c2, r0, #0 @ update page table ptr
|
D | proc-macros.S | 98 movc \pa, p0.c2, #0
|
/linux-4.1.27/Documentation/scsi/ |
D | aacraid.txt | 85 1011:0046:103c:10c2 HP NetRAID-4M (Mustang) 108 9005:0285:9005:02c2 ICP ICP5165BR (Marauder160)
|
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8723ae/ |
D | phy.c | 1109 long result[][8], u8 c1, u8 c2) in _rtl8723e_phy_simularity_compare() argument 1121 diff = (result[c1][i] > result[c2][i]) ? in _rtl8723e_phy_simularity_compare() 1122 (result[c1][i] - result[c2][i]) : in _rtl8723e_phy_simularity_compare() 1123 (result[c2][i] - result[c1][i]); in _rtl8723e_phy_simularity_compare() 1128 final_candidate[(i / 4)] = c2; in _rtl8723e_phy_simularity_compare() 1129 else if (result[c2][i] + result[c2][i + 1] == 0) in _rtl8723e_phy_simularity_compare()
|
/linux-4.1.27/arch/xtensa/boot/dts/ |
D | xtfpga.dtsi | 71 local-mac-address = [00 50 c2 13 6f 00];
|
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8192c/ |
D | phy_common.c | 1172 long result[][8], u8 c1, u8 c2) in _rtl92c_phy_simularity_compare() argument 1188 diff = (result[c1][i] > result[c2][i]) ? in _rtl92c_phy_simularity_compare() 1189 (result[c1][i] - result[c2][i]) : in _rtl92c_phy_simularity_compare() 1190 (result[c2][i] - result[c1][i]); in _rtl92c_phy_simularity_compare() 1195 final_candidate[(i / 4)] = c2; in _rtl92c_phy_simularity_compare() 1196 else if (result[c2][i] + result[c2][i + 1] == 0) in _rtl92c_phy_simularity_compare()
|
/linux-4.1.27/drivers/video/fbdev/omap2/dss/ |
D | hdmi5_core.h | 292 u16 c1, c2, c3, c4; member
|
D | hdmi5_core.c | 498 REG_FLD_MOD(base, HDMI_CORE_CSC_COEF_C2_MSB, csc_coeff.c2 >> 8, 6, 0); in hdmi_core_csc_config() 499 REG_FLD_MOD(base, HDMI_CORE_CSC_COEF_C2_LSB, csc_coeff.c2, 7, 0); in hdmi_core_csc_config()
|
/linux-4.1.27/arch/arm/mach-sa1100/ |
D | sleep.S | 34 mcr p15, 0, r1, c15, c2, 2
|
/linux-4.1.27/fs/cifs/ |
D | dir.c | 876 wchar_t c1, c2; in cifs_ci_compare() local 891 l2 = codepage->char2uni(&name->name[i], name->len - i, &c2); in cifs_ci_compare() 912 if (cifs_toupper(c1) != cifs_toupper(c2)) in cifs_ci_compare()
|
/linux-4.1.27/arch/x86/kernel/ |
D | smpboot.c | 317 #define link_mask(_m, c1, c2) \ argument 319 cpumask_set_cpu((c1), cpu_##_m##_mask(c2)); \ 320 cpumask_set_cpu((c2), cpu_##_m##_mask(c1)); \
|
D | hpet.c | 1019 static inline int hpet_cnt_ahead(u32 c1, u32 c2) in hpet_cnt_ahead() argument 1021 return (s32)(c2 - c1) < 0; in hpet_cnt_ahead()
|
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8723be/ |
D | phy.c | 2002 long result[][8], u8 c1, u8 c2) in _rtl8723be_phy_simularity_compare() argument 2021 if ((result[c2][i] & 0x00000200) != 0) in _rtl8723be_phy_simularity_compare() 2022 tmp2 = result[c2][i] | 0xFFFFFC00; in _rtl8723be_phy_simularity_compare() 2024 tmp2 = result[c2][i]; in _rtl8723be_phy_simularity_compare() 2027 tmp2 = result[c2][i]; in _rtl8723be_phy_simularity_compare() 2035 final_candidate[(i / 4)] = c2; in _rtl8723be_phy_simularity_compare() 2036 else if (result[c2][i] + result[c2][i + 1] == 0) in _rtl8723be_phy_simularity_compare()
|
/linux-4.1.27/Documentation/sound/alsa/ |
D | Audiophile-Usb.txt | 119 % aplay -D hw:1,0 -c2 -t raw -r48000 -fS24_3BE test.raw 121 % arecord -D hw:1,1 -c2 -t raw -r48000 -fS24_3BE test.raw 123 % aplay -D hw:1,1 -c2 -t raw -r48000 -fS16_BE test.raw 176 % aplay -D hw:1,1 -c2 -t raw -r48000 -fS16_BE test_S16_LE.raw 183 % aplay -D hw:1,1 -c2 -t raw -r48000 -fS16_LE test_S16_LE.raw
|
/linux-4.1.27/security/tomoyo/ |
D | util.c | 352 static inline u8 tomoyo_make_byte(const u8 c1, const u8 c2, const u8 c3) in tomoyo_make_byte() argument 354 return ((c1 - '0') << 6) + ((c2 - '0') << 3) + (c3 - '0'); in tomoyo_make_byte()
|
/linux-4.1.27/arch/x86/kernel/cpu/ |
D | perf_event_intel.c | 2102 struct event_constraint *c2; in intel_get_event_constraints() local 2112 c2 = __intel_get_event_constraints(cpuc, idx, event); in intel_get_event_constraints() 2114 bitmap_copy(c1->idxmsk, c2->idxmsk, X86_PMC_IDX_MAX); in intel_get_event_constraints() 2115 c1->weight = c2->weight; in intel_get_event_constraints() 2116 c2 = c1; in intel_get_event_constraints() 2120 return intel_get_excl_constraints(cpuc, event, idx, c2); in intel_get_event_constraints() 2122 return c2; in intel_get_event_constraints()
|
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8188ee/ |
D | phy.c | 1655 long result[][8], u8 c1, u8 c2) in _rtl88e_phy_simularity_compare() argument 1671 diff = (result[c1][i] > result[c2][i]) ? in _rtl88e_phy_simularity_compare() 1672 (result[c1][i] - result[c2][i]) : in _rtl88e_phy_simularity_compare() 1673 (result[c2][i] - result[c1][i]); in _rtl88e_phy_simularity_compare() 1678 final_candidate[(i / 4)] = c2; in _rtl88e_phy_simularity_compare() 1679 else if (result[c2][i] + result[c2][i + 1] == 0) in _rtl88e_phy_simularity_compare()
|
/linux-4.1.27/drivers/iommu/ |
D | msm_iommu.c | 42 #define RCP15_PRRR(reg) MRC(reg, p15, 0, c10, c2, 0) 43 #define RCP15_NMRR(reg) MRC(reg, p15, 0, c10, c2, 1)
|
/linux-4.1.27/drivers/net/wireless/iwlwifi/dvm/ |
D | rxon.c | 868 #define CHK_NEQ(c1, c2) \ in iwl_full_rxon_required() argument 869 if ((c1) != (c2)) { \ in iwl_full_rxon_required() 871 #c1 " != " #c2 " - %d != %d\n", \ in iwl_full_rxon_required() 872 (c1), (c2)); \ in iwl_full_rxon_required()
|
/linux-4.1.27/arch/x86/crypto/ |
D | camellia-aesni-avx-asm_64.S | 431 #define byteslice_16x16b(a0, b0, c0, d0, a1, b1, c1, d1, a2, b2, c2, d2, a3, \ argument 442 transpose_4x4(c0, c1, c2, c3, a0, a1); \ 456 vpshufb a0, c2, c2; \ 474 transpose_4x4(a2, b2, c2, d2, b0, b1); \
|
D | camellia-aesni-avx2-asm_64.S | 470 #define byteslice_16x16b_fast(a0, b0, c0, d0, a1, b1, c1, d1, a2, b2, c2, d2, \ argument 481 transpose_4x4(c0, c1, c2, c3, a0, a1); \ 495 vpshufb a0, c2, c2; \ 513 transpose_4x4(a2, b2, c2, d2, b0, b1); \
|
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8192ee/ |
D | phy.c | 2446 long result[][8], u8 c1, u8 c2) in _rtl92ee_phy_simularity_compare() argument 2465 if ((result[c2][i] & 0x00000200) != 0) in _rtl92ee_phy_simularity_compare() 2466 tmp2 = result[c2][i] | 0xFFFFFC00; in _rtl92ee_phy_simularity_compare() 2468 tmp2 = result[c2][i]; in _rtl92ee_phy_simularity_compare() 2471 tmp2 = result[c2][i]; in _rtl92ee_phy_simularity_compare() 2479 final_candidate[(i / 4)] = c2; in _rtl92ee_phy_simularity_compare() 2480 else if (result[c2][i] + result[c2][i + 1] == 0) in _rtl92ee_phy_simularity_compare()
|
/linux-4.1.27/drivers/net/ethernet/ti/ |
D | netcp_xgbepcsr.c | 437 int lane, int cm, int c1, int c2) in netcp_xgbe_serdes_setup_cm_c1_c2() argument
|
/linux-4.1.27/tools/power/x86/turbostat/ |
D | turbostat.c | 797 struct core_data *c2, struct pkg_data *p2) in delta_cpu() argument 801 delta_core(c, c2); in delta_cpu() 804 delta_thread(t, t2, c2); /* c2 is core delta */ in delta_cpu() 1556 struct core_data *c, *c2; in for_all_cpus_2() local 1567 c2 = GET_CORE(core_base2, core_no, pkg_no); in for_all_cpus_2() 1572 retval = func(t, c, p, t2, c2, p2); in for_all_cpus_2()
|
/linux-4.1.27/drivers/scsi/ |
D | hpsa.c | 1628 struct io_accel2_cmd *c2) in handle_ioaccel_mode2_error() argument 1633 switch (c2->error_data.serv_response) { in handle_ioaccel_mode2_error() 1635 switch (c2->error_data.status) { in handle_ioaccel_mode2_error() 1643 if (c2->error_data.data_present != in handle_ioaccel_mode2_error() 1650 data_len = c2->error_data.sense_data_len; in handle_ioaccel_mode2_error() 1653 if (data_len > sizeof(c2->error_data.sense_data_buff)) in handle_ioaccel_mode2_error() 1655 sizeof(c2->error_data.sense_data_buff); in handle_ioaccel_mode2_error() 1657 c2->error_data.sense_data_buff, data_len); in handle_ioaccel_mode2_error() 1685 "HP SSD Smart Path", c2->error_data.status); in handle_ioaccel_mode2_error() 1694 c2->error_data.status); in handle_ioaccel_mode2_error() [all …]
|
/linux-4.1.27/drivers/scsi/device_handler/ |
D | scsi_dh_rdac.c | 208 struct c2_inquiry c2; member 529 inqp = &h->inq.c2; in set_mode_select()
|
/linux-4.1.27/mm/ |
D | slab_common.c | 616 struct kmem_cache *c, *c2; in kmem_cache_destroy() local 632 for_each_memcg_cache_safe(c, c2, s) { in kmem_cache_destroy()
|
/linux-4.1.27/security/selinux/ |
D | selinuxfs.c | 800 int c1, c2; in sel_write_create() local 811 c2 = hex_to_bin(*r++); in sel_write_create() 812 if (c2 < 0) in sel_write_create() 814 c1 = (c1 << 4) | c2; in sel_write_create()
|
/linux-4.1.27/drivers/firewire/ |
D | ohci.c | 1724 u32 c0, c1, c2; in get_cycle_time() local 1729 c2 = reg_read(ohci, OHCI1394_IsochronousCycleTimer); in get_cycle_time() 1733 c1 = c2; in get_cycle_time() 1734 c2 = reg_read(ohci, OHCI1394_IsochronousCycleTimer); in get_cycle_time() 1737 c1 = c2; in get_cycle_time() 1738 c2 = reg_read(ohci, OHCI1394_IsochronousCycleTimer); in get_cycle_time() 1741 t2 = cycle_timer_ticks(c2); in get_cycle_time() 1749 return c2; in get_cycle_time()
|
/linux-4.1.27/Documentation/block/ |
D | ioprio.txt | 51 # ionice -c2 -n0 /bin/ls
|
/linux-4.1.27/Documentation/video4linux/ |
D | si470x.txt | 87 arecord -D hw:1,0 -r96000 -c2 -f S16_LE | artsdsp aplay -B -
|
D | CARDLIST.saa7134 | 182 181 -> TechoTrend TT-budget T-3000 [13c2:2804]
|
/linux-4.1.27/sound/usb/usx2y/ |
D | usbusx2yaudio.c | 568 char c1, c2; member 678 ((char*)(usbdata + i))[1] = ra[i].c2; in usX2Y_rate_set()
|
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8192de/ |
D | phy.c | 2110 long result[][8], u8 c1, u8 c2) in _rtl92d_phy_simularity_compare() argument 2125 diff = (result[c1][i] > result[c2][i]) ? (result[c1][i] - in _rtl92d_phy_simularity_compare() 2126 result[c2][i]) : (result[c2][i] - result[c1][i]); in _rtl92d_phy_simularity_compare() 2130 final_candidate[(i / 4)] = c2; in _rtl92d_phy_simularity_compare() 2131 else if (result[c2][i] + result[c2][i + 1] == 0) in _rtl92d_phy_simularity_compare()
|
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/engine/sec/fuc/ |
D | g98.fuc0s | 549 cmov $c2 $c6 552 cxor $c0 $c2
|
/linux-4.1.27/drivers/tty/vt/ |
D | cp437.uni | 84 0x41 U+0041 U+00c0 U+00c1 U+00c2 U+00c3
|
/linux-4.1.27/drivers/video/fbdev/aty/ |
D | radeon_base.c | 2147 unsigned char c1, c2; in radeonfb_pci_register() local 2177 c2 = ent->device & 0xff; in radeonfb_pci_register() 2178 if (isprint(c1) && isprint(c2)) in radeonfb_pci_register() 2180 "ATI Radeon %x \"%c%c\"", ent->device & 0xffff, c1, c2); in radeonfb_pci_register()
|
/linux-4.1.27/crypto/ |
D | gf128mul.c | 113 (i & 0x02 ? xx(03, 84) : 0) ^ (i & 0x01 ? xx(01, c2) : 0) \
|
/linux-4.1.27/arch/m68k/ifpsp060/ |
D | itest.sa | 395 dc.l $000036c2,$4a0066ff,$000036e8,$52aeff78 859 dc.l $000019c2,$4a0066ff,$000019e8,$52aeff78 955 dc.l $000013c2,$4a0066ff,$000013e8,$52aeff78 971 dc.l $000012c2,$4a0066ff,$000012e8,$52aeff78 1211 dc.l $000003c2,$4a0066ff,$000003e8,$52aeff78
|
D | ftest.sa | 301 dc.l $01700000,$038cf23b,$d0ff0170,$000003c2
|
D | pfpsp.sa | 333 dc.l $00c82f6f,$000400c2,$3f7c2024,$00c6dffc 351 dc.l $400800c2,$2f4800c4,$3f4000c8,$3f7c0001
|
/linux-4.1.27/Documentation/filesystems/ |
D | nilfs2.txt | 263 |-- ifile (cno=c2) ---- file (ino=i1)
|
/linux-4.1.27/drivers/video/fbdev/ |
D | fsl-diu-fb.c | 951 #define MAKE_PF(alpha, red, green, blue, size, c0, c1, c2, c3) \ in fsl_diu_get_pixel_format() argument 955 (c2 << PF_COMP_2_SHIFT) | (c1 << PF_COMP_1_SHIFT) | \ in fsl_diu_get_pixel_format()
|
/linux-4.1.27/Documentation/sysctl/ |
D | net.txt | 173 84:50:f4:00:a8:15:d1:a7:e9:7f:1d:60:35:c7:47:25:42:97:74:ca:56:bb:b6:a1:d8:43:e3:c9:0c:fd:17:55:c2:…
|
/linux-4.1.27/drivers/net/wireless/ |
D | mac80211_hwsim.c | 1043 struct ieee80211_channel *c2) in hwsim_chans_compat() argument 1045 if (!c1 || !c2) in hwsim_chans_compat() 1048 return c1->center_freq == c2->center_freq; in hwsim_chans_compat()
|
/linux-4.1.27/drivers/net/wireless/iwlegacy/ |
D | common.c | 3794 #define CHK_NEQ(c1, c2) \ in il_full_rxon_required() argument 3795 if ((c1) != (c2)) { \ in il_full_rxon_required() 3797 #c1 " != " #c2 " - %d != %d\n", \ in il_full_rxon_required() 3798 (c1), (c2)); \ in il_full_rxon_required()
|
/linux-4.1.27/Documentation/ |
D | sysrq.txt | 142 IMPORTANT: c2 compliant system, and it should not be mistaken as :IMPORTANT
|
D | devices.txt | 884 19 = /dev/ml16pa-c2 First card, third counter/timer 892 51 = /dev/ml16pb-c2 Second card, third counter/timer
|
/linux-4.1.27/arch/x86/lib/ |
D | x86-opcode-map.txt | 244 c2: RETN Iw (f64) 537 c2: vcmpps Vps,Hps,Wps,Ib | vcmppd Vpd,Hpd,Wpd,Ib (66) | vcmpss Vss,Hss,Wss,Ib (F3),(v1) | vcmpsd V…
|
/linux-4.1.27/Documentation/networking/ |
D | vortex.txt | 161 sent to the reserved destination address of 01:80:c2:00:00:01. They
|
/linux-4.1.27/Documentation/devicetree/bindings/thermal/ |
D | thermal.txt | 545 * z = c1*x1 + c2*x2 + c3*x3
|
/linux-4.1.27/Documentation/s390/ |
D | Debugging390.txt | 703 800005c2: b9 04 00 1f lgr %r1,%r15
|