Searched refs:c1 (Results 1 - 7 of 7) sorted by relevance

/xnu-2782.1.97/bsd/hfs/hfscommon/Unicode/
H A DUnicodeWrappers.c351 // c1 = GetNextValidChar(str1) // returns zero if at end of string
354 // if (c1 != c2) break // found a difference
356 // if (c1 == 0) // reached end of string on both strings at once?
360 // // When we get here, c1 != c2. So, we just need to determine which one is less.
361 // if (c1 < c2)
370 register u_int16_t c1,c2; local
377 /* Set default values for c1, c2 in case there are no more valid chars */
378 c1 = 0;
382 while (length1 && c1 == 0) {
383 c1
443 uint16_t c1; local
[all...]
/xnu-2782.1.97/EXTERNAL_HEADERS/corecrypto/
H A Dccn.h215 #define CCN192_C(c7,c6,c5,c4,c3,c2,c1,c0,b7,b6,b5,b4,b3,b2,b1,b0,a7,a6,a5,a4,a3,a2,a1,a0) \
218 CCN64_C(c7,c6,c5,c4,c3,c2,c1,c0)
220 #define CCN200_C(d0,c7,c6,c5,c4,c3,c2,c1,c0,b7,b6,b5,b4,b3,b2,b1,b0,a7,a6,a5,a4,a3,a2,a1,a0) \
221 CCN192_C(c7,c6,c5,c4,c3,c2,c1,c0,b7,b6,b5,b4,b3,b2,b1,b0,a7,a6,a5,a4,a3,a2,a1,a0),\
224 #define CCN224_C(d3,d2,d1,d0,c7,c6,c5,c4,c3,c2,c1,c0,b7,b6,b5,b4,b3,b2,b1,b0,a7,a6,a5,a4,a3,a2,a1,a0) \
225 CCN192_C(c7,c6,c5,c4,c3,c2,c1,c0,b7,b6,b5,b4,b3,b2,b1,b0,a7,a6,a5,a4,a3,a2,a1,a0),\
228 #define CCN232_C(d4,d3,d2,d1,d0,c7,c6,c5,c4,c3,c2,c1,c0,b7,b6,b5,b4,b3,b2,b1,b0,a7,a6,a5,a4,a3,a2,a1,a0) \
229 CCN192_C(c7,c6,c5,c4,c3,c2,c1,c0,b7,b6,b5,b4,b3,b2,b1,b0,a7,a6,a5,a4,a3,a2,a1,a0),\
232 #define CCN256_C(d7,d6,d5,d4,d3,d2,d1,d0,c7,c6,c5,c4,c3,c2,c1,c0,b7,b6,b5,b4,b3,b2,b1,b0,a7,a6,a5,a4,a3,a2,a1,a0) \
233 CCN192_C(c7,c6,c5,c4,c3,c2,c1,c
[all...]
/xnu-2782.1.97/osfmk/i386/commpage/
H A Dcommpage.c366 uint8_t c1; local
401 c1 = machine_info.physical_cpu_max;
402 commpage_stuff(_COMM_PAGE_PHYSICAL_CPUS,&c1,1);
403 c1 = machine_info.logical_cpu_max;
404 commpage_stuff(_COMM_PAGE_LOGICAL_CPUS,&c1,1);
/xnu-2782.1.97/bsd/hfs/
H A Dhfs_xattr.c2170 u_int16_t c1, c2; local
2184 c1 = *(str1++);
2187 if (c1 > c2) {
2191 if (c1 < c2) {
/xnu-2782.1.97/osfmk/mach/i386/
H A D_structs.h178 c1 :1,
/xnu-2782.1.97/bsd/net/
H A Dif_bond.c1296 make_uint32(u_char c0, u_char c1, u_char c2, u_char c3) argument
1298 return (((uint32_t)c0 << 24) | ((uint32_t)c1 << 16)
1303 make_uint32(u_char c0, u_char c1, u_char c2, u_char c3) argument
1306 | ((uint32_t)c1 << 8) | (uint32_t)c0);
/xnu-2782.1.97/bsd/dev/dtrace/
H A Ddtrace.c1071 uint8_t c1, c2; local
1081 c1 = '\0';
1083 c1 = dtrace_load8((uintptr_t)s1++);
1092 if (c1 != c2)
1093 return (c1 - c2);
1094 } while (--limit && c1 != '\0' && !(*flags & CPU_DTRACE_FAULT));

Completed in 119 milliseconds