Home
last modified time | relevance | path

Searched refs:pStart (Results 1 – 16 of 16) sorted by relevance

/external/icu4c/samples/layout/
Dpflow.c116 LEUnicode *pStart; in pf_create() local
153 pStart = &flow->fChars[0]; in pf_create()
155 while (*pStart != 0) { in pf_create()
156 LEUnicode *pEnd = u_strpbrk(pStart, separators); in pf_create()
164 if (pEnd != pStart) { in pf_create()
165 subsetFontRuns(fontRuns, pStart - flow->fChars, pEnd - flow->fChars, fr); in pf_create()
169 pl_addLocaleRun(locales, TEST_LOCALE, pEnd - pStart); in pf_create()
172 …paragraphLayout = pl_create(pStart, pEnd - pStart, fr, NULL, NULL, locales, flow->fParagraphLevel,… in pf_create()
210 pStart = skipLineEnd(pEnd); in pf_create()
Dparagraph.cpp101 LEUnicode *pStart = &fChars[0]; in Paragraph() local
103 while (*pStart != 0) { in Paragraph()
104 LEUnicode *pEnd = u_strpbrk(pStart, separators); in Paragraph()
112 if (pEnd != pStart) { in Paragraph()
113 subsetFontRuns(fontRuns, pStart - fChars, pEnd - fChars, &fr); in Paragraph()
115 …paragraphLayout = new ParagraphLayout(pStart, pEnd - pStart, &fr, NULL, NULL, locales, fParagraphL… in Paragraph()
153 pStart = skipLineEnd(pEnd); in Paragraph()
/external/icu4c/tools/toolutil/
Duparse.c295 uint32_t *pStart, uint32_t *pEnd, in u_parseCodePointRangeAnyTerminator() argument
304 if(s==NULL || pStart==NULL || pEnd==NULL) { in u_parseCodePointRangeAnyTerminator()
316 *pStart=*pEnd=value; in u_parseCodePointRangeAnyTerminator()
335 if(value<*pStart) { in u_parseCodePointRangeAnyTerminator()
341 return value-*pStart+1; in u_parseCodePointRangeAnyTerminator()
346 uint32_t *pStart, uint32_t *pEnd, in u_parseCodePointRange() argument
350 u_parseCodePointRangeAnyTerminator(s, pStart, pEnd, &terminator, pErrorCode); in u_parseCodePointRange()
Duparse.h132 uint32_t *pStart, uint32_t *pEnd,
142 uint32_t *pStart, uint32_t *pEnd,
Ducbuf.c58 const char* pStart; in ucbuf_autodetect_fs() local
81 pStart = start; in ucbuf_autodetect_fs()
82 ucnv_toUnicode(*conv, &pTarget, target+1, &pStart, start+*signatureLength, NULL, FALSE, error); in ucbuf_autodetect_fs()
83 *signatureLength = (int32_t)(pStart - start); in ucbuf_autodetect_fs()
589 const char* pStart; in ucbuf_rewind() local
597 pStart = start; in ucbuf_rewind()
598 … ucnv_toUnicode(buf->conv, &pTarget, target+1, &pStart, start+numRead, NULL, FALSE, error); in ucbuf_rewind()
/external/openssl/crypto/asn1/
Da_set.c95 unsigned char *pStart, *pTempMem; in i2d_ASN1_SET() local
121 pStart = p; /* Catch the beg of Setblobs*/ in i2d_ASN1_SET()
139 totSize = p - pStart; /* This is the total size of all set blobs */ in i2d_ASN1_SET()
159 memcpy(pStart, pTempMem, totSize); in i2d_ASN1_SET()
/external/icu4c/common/
Duset.cpp481 UChar32* pStart, UChar32* pEnd) { in uset_getSerializedRange() argument
485 if(set==NULL || rangeIndex<0 || pStart==NULL || pEnd==NULL) { in uset_getSerializedRange()
495 *pStart=array[rangeIndex++]; in uset_getSerializedRange()
510 *pStart=(((int32_t)array[rangeIndex])<<16)|array[rangeIndex+1]; in uset_getSerializedRange()
/external/webkit/Source/JavaScriptCore/icu/unicode/
Duset.h743 UChar32* pStart, UChar32* pEnd);
/external/webkit/Source/WebCore/icu/unicode/
Duset.h743 UChar32* pStart, UChar32* pEnd);
/external/icu4c/tools/gennames/
Dgennames.c476 getName(char **pStart, char *limit) { in getName() argument
478 char *start=(char *)u_skipWhitespace(*pStart); in getName()
486 *pStart=start; in getName()
/external/icu4c/common/unicode/
Duset.h1118 UChar32* pStart, UChar32* pEnd);
/external/sqlite/dist/
Dshell.c95 static double timeDiff(struct timeval *pStart, struct timeval *pEnd){ in timeDiff() argument
96 return (pEnd->tv_usec - pStart->tv_usec)*0.000001 + in timeDiff()
97 (double)(pEnd->tv_sec - pStart->tv_sec); in timeDiff()
169 static double timeDiff(FILETIME *pStart, FILETIME *pEnd){ in timeDiff() argument
170 sqlite_int64 i64Start = *((sqlite_int64 *) pStart); in timeDiff()
Dshell.c.orig90 static double timeDiff(struct timeval *pStart, struct timeval *pEnd){
91 return (pEnd->tv_usec - pStart->tv_usec)*0.000001 +
92 (double)(pEnd->tv_sec - pStart->tv_sec);
164 static double timeDiff(FILETIME *pStart, FILETIME *pEnd){
165 sqlite_int64 i64Start = *((sqlite_int64 *) pStart);
Dsqlite3.c8888 void *pStart; /* First byte of available memory space */ member
17896 return p && p>=db->lookaside.pStart && p<db->lookaside.pEnd; in isLookaside()
33513 void *pStart, *pEnd; /* Bounds of pagecache malloc range */
33562 pcache1.pStart = pBuf;
33617 if( p>=pcache1.pStart && p<pcache1.pEnd ){
33641 if( p>=pcache1.pStart && p<pcache1.pEnd ){
34233 if( pcache1.pStart==0 ){
77214 Token *pStart, /* The CREATE token that begins this statement */
77237 assert( pStart==0 || pEnd!=0 ); /* pEnd must be non-NULL if pStart is */
77600 if( pStart ){
[all …]
Dsqlite3.c.orig8877 u8 bMalloced; /* True if pStart obtained from sqlite3_malloc() */
8881 void *pStart; /* First byte of available memory space */
17889 return p && p>=db->lookaside.pStart && p<db->lookaside.pEnd;
33506 void *pStart, *pEnd; /* Bounds of pagecache malloc range */
33555 pcache1.pStart = pBuf;
33610 if( p>=pcache1.pStart && p<pcache1.pEnd ){
33634 if( p>=pcache1.pStart && p<pcache1.pEnd ){
34226 if( pcache1.pStart==0 ){
77207 Token *pStart, /* The CREATE token that begins this statement */
77230 assert( pStart==0 || pEnd!=0 ); /* pEnd must be non-NULL if pStart is */
[all …]
/external/icu4c/i18n/
Ducol.cpp1638 const UChar *pStart; in collPrevIterNormalize() local
1642 pStart = data->string; in collPrevIterNormalize()
1645 pStart = data->fcdPosition + 1; in collPrevIterNormalize()
1649 data->nfd->normalize(UnicodeString(FALSE, pStart, (int32_t)((pEnd - pStart) + 1)), in collPrevIterNormalize()
2189 const UChar *pStart = data->pos - 1; in normalizeNextContraction() local
2193 data->writableBuffer.setTo(*(pStart - 1)); in normalizeNextContraction()
2203 data->nfd->normalize(UnicodeString(FALSE, pStart, (int32_t)(pEnd - pStart)), status)); in normalizeNextContraction()
2535 const UChar *pStart; in normalizePrevContraction() local
2550 pStart = data->string; in normalizePrevContraction()
2553 pStart = data->fcdPosition + 1; in normalizePrevContraction()
[all …]