/external/icu4c/tools/tzcode/ |
zdump.c | 828 register int lead; local 854 lead = timeptr->tm_year / DIVISOR + TM_YEAR_BASE / DIVISOR + 857 if (trail < 0 && lead > 0) { 859 --lead; 860 } else if (lead < 0 && trail > 0) { 862 ++lead; 864 if (lead == 0) 866 else (void) printf("%d%d", lead, ((trail < 0) ? -trail : trail)); 931 register int lead; local 939 lead = loc.tm_year / DIVISOR + TM_YEAR_BASE / DIVISOR + trail / DIVISOR [all...] |
/external/icu4c/tools/gennorm/ |
store.c | 132 * The lead and trail code points combine into the the combined one, 133 * i.e., there is a canonical decomposition of combined-> <lead, trail>. 136 * After processCombining(), they contain the indexes of the lead and trail 143 uint32_t lead, trail, combined; member in struct:CombiningTriple 414 addCombiningTriple(uint32_t lead, uint32_t trail, uint32_t combined) { 426 createNorm(lead)->combiningFlags|=1; /* combines forward */ 429 addCombiningCP(lead, 1); 433 triple->lead=lead; 459 /* add lead and trail indexes to the triples for sorting * [all...] |
/external/icu4c/test/cintltst/ |
trie2test.c | 207 /* test values for lead surrogate code units */ 358 0xed, 0xa0, 0x80, /* lead surrogate U+d800 */ 386 /* first a couple of trail bytes in lead position */ 842 /* set some values for lead surrogate code units */ 1334 UChar lead; local [all...] |
/bionic/libc/ |
CAVEATS | 7 - C++ exceptions are not supported. on embedded systems, they lead to extremely larger and
|
/external/bluetooth/glib/docs/ |
debugging.txt | 9 Such traps lead to immediate code halts to examine the current
|
/external/icu4c/tools/toolutil/ |
ucmstate.c | 609 * by finding lead bytes with all-unassigned trail bytes and adding another state 624 /* find the lead state */ 626 /* use the DBCS lead state for SI/SO codepages */ 647 /* count possible savings from lead bytes with all-unassigned results in all trail bytes */ 650 /* for each lead byte */ 654 /* the offset is different for each lead byte */ 656 /* for each trail byte for this lead byte */ 665 j=999; /* do not count for this lead byte because there are assignments */ 673 j=999; /* do not count for this lead byte because there are assignments */ 681 /* all trail bytes for this lead byte are unassigned * [all...] |
/external/icu4c/common/unicode/ |
utf8.h | 47 * lead byte position. 60 * Count the trail bytes for a UTF-8 lead byte. 66 * Mask a UTF-8 lead byte, leave only the lower bits that form part of the code point value. 110 * Is this code unit (byte) a UTF-8 lead byte? 153 * The offset may point to either the lead byte or one of the trail bytes 175 * The offset may point to either the lead byte or one of the trail bytes 204 * The offset may point to the lead byte of a multi-byte sequence, 240 * The offset may point to the lead byte of a multi-byte sequence, 429 * then the offset is moved backward to the corresponding lead byte. 446 * then the offset is moved backward to the corresponding lead byte [all...] |
/external/qemu/hw/ |
cdrom.c | 66 /* lead out track */ 97 *q++ = 0xa0; /* lead-in */ 121 *q++ = 0xa2; /* lead-out */
|
/external/webkit/JavaScriptCore/icu/unicode/ |
utf8.h | 47 * lead byte position. 60 * Count the trail bytes for a UTF-8 lead byte. 66 * Mask a UTF-8 lead byte, leave only the lower bits that form part of the code point value. 110 * Is this code unit (byte) a UTF-8 lead byte? 153 * The offset may point to either the lead byte or one of the trail bytes 175 * The offset may point to either the lead byte or one of the trail bytes 204 * The offset may point to the lead byte of a multi-byte sequence, 240 * The offset may point to the lead byte of a multi-byte sequence, 404 * then the offset is moved backward to the corresponding lead byte. 421 * then the offset is moved backward to the corresponding lead byte [all...] |
/external/webkit/JavaScriptGlue/icu/unicode/ |
utf8.h | 47 * lead byte position. 60 * Count the trail bytes for a UTF-8 lead byte. 66 * Mask a UTF-8 lead byte, leave only the lower bits that form part of the code point value. 110 * Is this code unit (byte) a UTF-8 lead byte? 153 * The offset may point to either the lead byte or one of the trail bytes 175 * The offset may point to either the lead byte or one of the trail bytes 204 * The offset may point to the lead byte of a multi-byte sequence, 240 * The offset may point to the lead byte of a multi-byte sequence, 404 * then the offset is moved backward to the corresponding lead byte. 421 * then the offset is moved backward to the corresponding lead byte [all...] |
/external/webkit/WebCore/icu/unicode/ |
utf8.h | 47 * lead byte position. 60 * Count the trail bytes for a UTF-8 lead byte. 66 * Mask a UTF-8 lead byte, leave only the lower bits that form part of the code point value. 110 * Is this code unit (byte) a UTF-8 lead byte? 153 * The offset may point to either the lead byte or one of the trail bytes 175 * The offset may point to either the lead byte or one of the trail bytes 204 * The offset may point to the lead byte of a multi-byte sequence, 240 * The offset may point to the lead byte of a multi-byte sequence, 404 * then the offset is moved backward to the corresponding lead byte. 421 * then the offset is moved backward to the corresponding lead byte [all...] |
/external/webkit/WebKit/mac/icu/unicode/ |
utf8.h | 47 * lead byte position. 60 * Count the trail bytes for a UTF-8 lead byte. 66 * Mask a UTF-8 lead byte, leave only the lower bits that form part of the code point value. 110 * Is this code unit (byte) a UTF-8 lead byte? 153 * The offset may point to either the lead byte or one of the trail bytes 175 * The offset may point to either the lead byte or one of the trail bytes 204 * The offset may point to the lead byte of a multi-byte sequence, 240 * The offset may point to the lead byte of a multi-byte sequence, 404 * then the offset is moved backward to the corresponding lead byte. 421 * then the offset is moved backward to the corresponding lead byte [all...] |
/external/icu4c/common/ |
ucnvbocu.c | 60 /* number of lead bytes */ 76 /* number of lead bytes for positive and negative 2/3/4-byte sequences */ 95 /* The lead byte start values. */ 106 /* The length of a byte sequence, according to the lead byte (!=BOCU1_RESET). */ 107 #define BOCU1_LENGTH_FROM_LEAD(lead) \ 108 ((BOCU1_START_NEG_2<=(lead) && (lead)<BOCU1_START_POS_2) ? 1 : \ 109 (BOCU1_START_NEG_3<=(lead) && (lead)<BOCU1_START_POS_3) ? 2 : \ 110 (BOCU1_START_NEG_4<=(lead) && (lead)<BOCU1_START_POS_4) ? 3 : 4 [all...] |
ustrtrns.c | 261 * *ps points to after the lead byte and will be moved to after the last trail byte. 262 * c is the lead byte. 329 * *ps points to after the lead byte and will be moved to after the last trail byte. 330 * c is the lead byte. 441 * The code explicitly checks for NULs only in the lead byte position. 472 ++pSrc; /* continue after the lead byte */ 519 ++pSrc; /* continue after the lead byte */ 593 ++pSrc; /* continue after the lead byte */ 644 ++pSrc; /* continue after the lead byte */ 693 ++pSrc; /* continue after the lead byte * [all...] |
utf_impl.c | 45 * lead bytes above 0xf4 are illegal. 254 /* no lead byte at all */ 267 /* lead byte, this will always end the loop */ 289 /* the lead byte does not match the number of trail bytes */ 290 /* only set the position to the lead byte if it would
|
unormcmp.cpp | 95 * this string's lead surrogate. 97 * preceding lead units were identical, we back up the other string by one unit 327 * therefore the lead surrogate must have been the same as in the other string; 328 * compare this decomposition with the lead surrogate in the other string 372 * therefore the lead surrogate must have been the same as in the other string; 373 * compare this decomposition with the lead surrogate in the other string 417 * therefore the lead surrogate must have been the same as in the other string; 418 * compare this decomposition with the lead surrogate in the other string 458 * therefore the lead surrogate must have been the same as in the other string; 459 * compare this decomposition with the lead surrogate in the other strin [all...] |
utrie2_builder.c | 46 * Exception: Support for separate values for lead surrogate code _units_ 59 * corresponding to one lead surrogate. 174 * Plus as many as needed for lead surrogate code points. 368 UChar lead; local 390 for(lead=0xd800; lead<0xdc00; ++lead) { 393 value=UTRIE2_GET16_FROM_U16_SINGLE_LEAD(other, lead); 395 value=UTRIE2_GET32_FROM_U16_SINGLE_LEAD(other, lead); 398 utrie2_set32ForLeadSurrogateCodeUnit(context.trie, lead, value, pErrorCode) 412 UChar lead; local [all...] |
unorm.cpp | 138 /* is this a norm32 with a special index for a lead surrogate? */ 428 /* c is a lead surrogate, get the real norm32 */ 471 /* get the lead/trail cc from the decomposition data */ 479 /* use the code point cc value for both lead and trail cc's */ 721 /* get the lead and trail cc's */ 726 /* lead and trail cc's are both 0 */ 742 /* get the lead and trail cc's */ 747 /* lead and trail cc's are both 0 */ 817 /* c is a lead surrogate, get the real norm32 */ 869 * (lead cc==0 [all...] |
ucnv_u8.c | 156 * - use only trail bytes after a lead byte (checked above) 157 * - use the right number of trail bytes for a given lead byte 284 * - use only trail bytes after a lead byte (checked above) 285 * - use the right number of trail bytes for a given lead byte 401 /* this is an unpaired trail or lead code unit */ 528 /* this is an unpaired trail or lead code unit */ 712 * - use only trail bytes after a lead byte (checked above) 713 * - use the right number of trail bytes for a given lead byte 743 /* offsets for n-byte UTF-8 sequences that were calculated with ((lead<<6)+trail)<<6+trail... */ 823 /* stop converting before the lead byte if there are not enough trail bytes for it * [all...] |
unormimp.h | 147 /* FCD check: everything below this code point is known to have a 0 lead combining class */ 170 JAMO_L_BASE=0x1100, /* "lead" jamo */ 333 * bits 15..8 lead combining class 336 * If c is a lead surrogate and the value is not 0, 349 * bits 15..8 lead combining class 369 } else /* unpaired lead surrogate */ { 379 * bits 15..8 lead combining class 704 * Since all 16 bits are used for cc's, lead surrogates must be tested 720 * (not for lead surrogate), 721 * or lead surrogate offset (for lead surrogate, if 9..0 not zero [all...] |
/external/icu4c/tools/genbidi/ |
store.c | 407 /* delete lead surrogate code unit values */ 408 UChar lead; local 410 for(lead=0xd800; lead<0xdc00; ++lead) { 411 utrie2_set32ForLeadSurrogateCodeUnit(trie2, lead, trie2->initialValue, &errorCode); 417 "genbidi error: deleting lead surrogate code unit values failed - %s\n",
|
/external/bison/m4/ |
iconv.m4 | 65 dnl If $LIBICONV didn't lead to a usable library, we don't need $INCICONV
|
/external/v8/test/mjsunit/ |
debug-compile-event-newfunction.js | 63 // Create a function from its body text. It will lead to an eval.
|
/bionic/libc/tzcode/ |
strftime.c | 744 register int lead; local 749 lead = a / DIVISOR + b / DIVISOR + trail / DIVISOR; 751 if (trail < 0 && lead > 0) { 753 --lead; 754 } else if (lead < 0 && trail > 0) { 756 ++lead; 759 if (lead == 0 && trail < 0) 761 else pt = _conv(lead, getformat(modifier, "%02d",
|
/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/locks/ |
ReadWriteLock.java | 30 * lock will lead to performance improvements over the use of a mutual 62 * short and infrequent. Reader preference is less common as it can lead to
|