| /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/src/ |
| gtest-printers.cc | 386 unsigned char lead = s[i++]; local 388 if (lead <= 0x7f) { 391 if (lead < 0xc2) { 393 } else if (lead <= 0xdf && (i + 1) <= length && IsUTF8TrailByte(s[i])) { 395 } else if (0xe0 <= lead && lead <= 0xef && (i + 2) <= length && 399 (lead != 0xe0 || s[i] >= 0xa0) && 400 (lead != 0xed || s[i] < 0xa0)) { 402 } else if (0xf0 <= lead && lead <= 0xf4 && (i + 3) <= length & [all...] |
| /src/sys/dev/spi/ |
| mcp3k.c | 71 uint8_t lead; /* leading bits to ignore */ member in struct:mcp3kadc_model 107 .lead = 3, 115 .lead = 2, 123 .lead = 2, 131 .lead = 2, 139 .lead = 3, 147 .lead = 2, 155 .lead = 2, 163 .lead = 2, 171 .lead = 3 [all...] |
| /src/external/gpl3/binutils/dist/gas/ |
| input-file.c | 174 int lead = c; 183 ungetc (lead, f_in); 193 ungetc (lead, f_in); 200 ungetc (lead, f_in); 172 int lead = c; local
|
| /src/external/gpl3/binutils.old/dist/gas/ |
| input-file.c | 174 int lead = c; 183 ungetc (lead, f_in); 193 ungetc (lead, f_in); 200 ungetc (lead, f_in); 172 int lead = c; local
|
| /src/external/bsd/jemalloc/dist/src/ |
| emap.c | 293 edata_t lead = {0}; local 294 edata_init(&lead, 0U, edata_addr_get(edata), size_a, false, 0, 0, 297 emap_rtree_leaf_elms_lookup(tsdn, emap, rtree_ctx, &lead, false, true, 311 edata_t *lead, size_t size_a, edata_t *trail, size_t size_b) { 313 * We should think about not writing to the lead leaf element. We can 321 prepare->lead_elm_b, lead, SC_NSIZES, /* slab */ false); 328 edata_t *lead, edata_t *trail) { 330 emap_rtree_leaf_elms_lookup(tsdn, emap, rtree_ctx, lead, true, false, 338 edata_t *lead, edata_t *trail) { 361 lead, SC_NSIZES, false) [all...] |
| extent.c | 451 * it, this splits off lead and trail extents, leaving edata pointing to an 453 * This function doesn't put lead or trail into any ecache; it's the caller's 458 * Split successfully. lead, edata, and trail, are modified to extents 470 * None of lead, edata, or trail are valid. 478 edata_t **edata, edata_t **lead, edata_t **trail, 490 *lead = NULL; 495 /* Split the lead. */ 498 *lead = *edata; 499 *edata = extent_split_impl(tsdn, pac, ehooks, *lead, leadsize, 502 *to_leak = *lead; 538 edata_t *lead; local 694 edata_t *lead; local [all...] |
| /src/usr.bin/make/unit-tests/ |
| var-recursive.mk | 4 # evaluated, as that would lead to an endless loop. 29 # An expression with modifiers is skipped halfway. This can lead to wrong
|
| var-op-append.mk | 50 # irrelevant in practice since variable names containing dollars lead to
|
| varparse-undef-partial.mk | 5 # the remaining expression is evaluated. In edge cases this can lead to
|
| varmod-defined.mk | 50 # ApplyModifier_Defined calls Var_Parse, double dollars lead to a parse
|
| directive-for-escape.mk | 258 # XXX: Why does the '$$' before the '${.TARGET}' lead to an escaped '}'? 261 # XXX: Why does the '$$' before the '${.TARGET}' lead to an escaped '}'?
|
| /src/lib/libc/time/ |
| strftime.c | 855 int lead; local 860 lead = a / DIVISOR + b / DIVISOR + trail / DIVISOR; 862 if (trail < 0 && lead > 0) { 864 --lead; 865 } else if (lead < 0 && trail > 0) { 867 ++lead; 870 if (lead == 0 && trail < 0) 872 else pt = _conv(lead, "%02d", pt, ptlim, loc);
|
| zdump.c | 1218 int lead; local 1237 lead = timeptr->tm_year / DIVISOR + TM_YEAR_BASE / DIVISOR + 1240 if (trail < 0 && lead > 0) { 1242 --lead; 1243 } else if (lead < 0 && trail > 0) { 1245 ++lead; 1247 if (lead == 0) 1249 else printf("%d%d", lead, ((trail < 0) ? -trail : trail));
|
| /src/external/bsd/jemalloc/dist/include/jemalloc/internal/ |
| emap.h | 125 * In all cases, "lead" refers to the lower-addressed extent, and trail to the 132 edata_t *lead, size_t size_a, edata_t *trail, size_t size_b); 134 edata_t *lead, edata_t *trail); 136 edata_t *lead, edata_t *trail);
|
| /src/external/bsd/jemalloc/include/jemalloc/internal/ |
| emap.h | 125 * In all cases, "lead" refers to the lower-addressed extent, and trail to the 132 edata_t *lead, size_t size_a, edata_t *trail, size_t size_b); 134 edata_t *lead, edata_t *trail); 136 edata_t *lead, edata_t *trail);
|
| /src/lib/libc/stdio/ |
| vfwprintf.c | 661 int lead; /* sig figs before decimal or group sep */ local 883 lead = 0; 1210 lead = expt; 1213 if (lead <= *grouping) 1215 lead -= *grouping; 1224 lead = expt; 1462 lead, zeroes); 1463 result += lead;
|
| /src/external/gpl3/binutils/dist/gprofng/src/ |
| Print.h | 243 char *pr_load_objects (Vector<LoadObject*> *loadobjects, char *lead); 245 char *pr_mesgs (Emsg *msg, const char *null_str, const char *lead);
|
| /src/external/gpl3/binutils.old/dist/gprofng/src/ |
| Print.h | 243 char *pr_load_objects (Vector<LoadObject*> *loadobjects, char *lead); 245 char *pr_mesgs (Emsg *msg, const char *null_str, const char *lead);
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++23/ |
| print.cc | 245 char16_t lead = LEAD_OFFSET + (code_point >> 10); local 247 out.push_back(lead);
|
| /src/external/bsd/jemalloc.old/dist/src/ |
| extent.c | 911 * it, this splits off lead and trail extents, leaving extent pointing to an 913 * This function doesn't put lead or trail into any extents_t; it's the caller's 918 * Split successfully. lead, extent, and trail, are modified to extents 930 * None of lead, extent, or trail are valid. 939 extent_t **extent, extent_t **lead, extent_t **trail, 953 *lead = NULL; 958 /* Split the lead. */ 960 *lead = *extent; 962 *lead, leadsize, NSIZES, false, esize + trailsize, szind, 965 *to_leak = *lead; 1017 extent_t *lead; local 1299 extent_t *lead; local 2003 extent_t lead; local [all...] |
| /src/sys/arch/shark/ofw/ |
| ofw.c | 1596 vaddr_t lead; local 1601 lead = 0; 1604 lead = new - (*ppvf)->start; 1607 if (((*ppvf)->size - lead) >= size) { 1608 if (lead == 0) { 1621 (*ppvf)->size = lead;
|
| /src/external/lgpl3/gmp/dist/mpn/x86/ |
| copyi.asm | 54 C cycles, but doing something special for small sizes could lead to a
|
| /src/external/lgpl3/gmp/dist/mpn/x86/atom/ |
| aors_n.asm | 76 C the calculation. Note values other than 1 or 0 here will lead to garbage
|
| /src/sys/arch/mac68k/obio/ |
| iwm.s | 134 * For convenience, the bytes of the sector data lead-in 699 * Check for sector data lead-in 'D5 AA AD' 710 lea dataLeadIn,%a3 | Sector data lead-in 726 * We have found the lead-in. Now get the 12 tag bytes. 908 * sector data lead-out 'DE AA' 1039 * Write sync pattern and sector data lead-in 'D5 AA'. The 1075 * Write 5 sync bytes and first byte of sector data lead-in 1086 moveb %a4@+,%d1 | Write 2nd byte of sector lead-in 1097 moveq #0x0B,%d1 | 3rd byte of sector data lead-in 1142 * We enter with the last byte of the sector data lead-i [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/ |
| NVPTXAsmPrinter.cpp | 1683 const char *lead; local 1687 lead = "0f"; 1691 lead = "0d"; 1697 O << lead << format_hex_no_prefix(API.getZExtValue(), numHex, /*Upper=*/true);
|