Searched refs:firstByte (Results 1 - 22 of 22) sorted by relevance

/macosx-10.10.1/tidy-15.15/tidy/src/
H A Dwin32tc.h16 int TY_(Win32MLangGetChar)(byte firstByte, StreamIn * in, uint * bytesRead);
H A Diconvtc.c33 int IconvGetChar(byte firstByte, StreamIn * in, uint * bytesRead) argument
49 inbuf[inbufsize++] = (char)firstByte;
H A Dutf8.h24 int TY_(DecodeUTF8BytesToChar)( uint* c, uint firstByte, ctmbstr successorBytes,
H A Dutf8.c170 int TY_(DecodeUTF8BytesToChar)( uint* c, uint firstByte, ctmbstr successorBytes, argument
183 if ( firstByte == EndOfStream )
186 *c = firstByte;
191 ch = firstByte; /* first byte is passed in separately */
310 theByte = (tmbchar) firstByte;
329 fprintf( stderr, "0x%02x ", firstByte );
H A Dwin32tc.c635 int TY_(Win32MLangGetChar)(byte firstByte, StreamIn * in, uint * bytesRead) argument
652 inbuf[inbufsize++] = (CHAR)firstByte;
/macosx-10.10.1/ICU-531.30/icuSources/i18n/
H A Dcollationdata.cpp170 int32_t firstByte = head >> 8; local
172 do { table[firstByte++] = lowByte++; } while(firstByte <= lastByte);
191 int32_t firstByte = head >> 8; local
193 if(table[firstByte] != 0) { // Duplicate or equivalent script.
197 do { table[lastByte--] = highByte--; } while(firstByte <= lastByte);
210 int32_t firstByte = head >> 8; local
212 if(table[firstByte] != 0) { // Duplicate or equivalent script.
216 do { table[firstByte++] = lowByte++; } while(firstByte <
[all...]
H A Dcsrmbcs.cpp320 int32_t firstByte = it->charValue = it->nextByte(det); local
322 if (firstByte < 0) {
326 if (firstByte <= 0x7F || (firstByte > 0xA0 && firstByte <= 0xDF)) {
332 it->charValue = (firstByte << 8) | secondByte;
370 int32_t firstByte = 0; local
376 firstByte = it->charValue = it->nextByte(det);
378 if (firstByte < 0) {
383 if (firstByte <
492 int32_t firstByte; local
547 int32_t firstByte = 0; local
[all...]
H A Dcollationbasedatabuilder.h69 void addReorderingGroup(uint32_t firstByte, uint32_t lastByte,
H A Dcollationiterator.cpp759 int32_t firstByte = 2; local
763 uint32_t primary = numericPrimary | ((firstByte + value) << 16);
768 firstByte += numBytes;
773 ((firstByte + value / 254) << 16) | ((2 + value % 254) << 8);
778 firstByte += numBytes;
786 primary |= (firstByte + value % 254) << 16;
H A Dcollationbasedatabuilder.cpp305 CollationBaseDataBuilder::addReorderingGroup(uint32_t firstByte, uint32_t lastByte, argument
323 scripts.append((UChar)((firstByte << 8) | lastByte));
/macosx-10.10.1/BerkeleyDB-21/db/java/src/com/sleepycat/bind/tuple/
H A DTupleOutput.java544 int firstByte = a[0];
545 writeShort((firstByte < 0) ? (- a.length) : a.length);
546 writeByte(firstByte);
/macosx-10.10.1/ICU-531.30/icuSources/common/
H A Ducnv_lmb.c758 ulmbcs_byte_t firstByte; local
767 firstByte = (ulmbcs_byte_t)(value >> ((bytesConverted - 1) * 8));
779 U_ASSERT((firstByte <= ULMBCS_C0END) || (firstByte >= ULMBCS_C1START) || (group == ULMBCS_GRP_EXCEPT));
792 if ( bytesConverted == 1 && firstByte < 0x20 )
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_cms/lib/
H A DCMSEncoder.cpp191 unsigned char firstByte; local
211 firstByte = (40 * num);
214 firstByte += num;
233 *outP++ = firstByte;
/macosx-10.10.1/tcl-105/tk/tk/generic/
H A DtkFont.c1890 int firstByte, /* Index of first byte of first character. */
1895 lastByte, x, y, firstByte, lastByte);
1912 int firstByte, /* Index of first byte of first character. */
1921 TkpMeasureCharsInContext(tkfont, string, numBytes, 0, firstByte, -1, 0,
2317 const char *firstByte;
2336 firstByte = chunkPtr->start;
2338 firstByte = Tcl_UtfAtIndex(chunkPtr->start, firstChar);
2340 firstByte - chunkPtr->start, -1, 0, &drawX);
2347 firstByte, lastByte - firstByte,
1858 Tk_UnderlineChars( Display *display, Drawable drawable, GC gc, Tk_Font tkfont, const char *string, int x, int y, int firstByte, int lastByte) argument
1879 TkUnderlineCharsInContext( Display *display, Drawable drawable, GC gc, Tk_Font tkfont, const char *string, int numBytes, int x, int y, int firstByte, int lastByte) argument
2294 const char *firstByte; local
[all...]
H A DtkInt.h1179 int firstByte, int lastByte);
H A DtkDecls.h1108 int firstByte, int lastByte);
1869 void (*tk_UnderlineChars) (Display *display, Drawable drawable, GC gc, Tk_Font tkfont, CONST char *source, int x, int y, int firstByte, int lastByte); /* 178 */
/macosx-10.10.1/tcl-105/tk84/tk/generic/
H A DtkFont.c1770 Tk_UnderlineChars(display, drawable, gc, tkfont, string, x, y, firstByte,
1783 int firstByte; /* Index of first byte of first character. */
1792 Tk_MeasureChars(tkfont, string, firstByte, -1, 0, &startX);
2194 CONST char *firstByte;
2213 firstByte = chunkPtr->start;
2215 firstByte = Tcl_UtfAtIndex(chunkPtr->start, firstChar);
2217 firstByte - chunkPtr->start, -1, 0, &drawX);
2224 firstByte, lastByte - firstByte,
2172 CONST char *firstByte; local
H A DtkText.c2033 int numLines, startingLine, startingByte, lineNum, firstByte, lastByte;
2227 firstByte = 0;
2257 firstByte = indexInDString;
2258 if ((firstByte >= Tcl_DStringLength(&line))
2275 p = strstr(startOfLine + firstByte, /* INTL: Native. */
2287 startOfLine + firstByte, startOfLine);
2304 firstByte = i + Tcl_UtfToUniChar(startOfLine + matchByte, &ch);
2019 int numLines, startingLine, startingByte, lineNum, firstByte, lastByte; local
H A DtkDecls.h630 int firstByte, int lastByte));
1109 void (*tk_UnderlineChars) _ANSI_ARGS_((Display * display, Drawable drawable, GC gc, Tk_Font tkfont, CONST char * source, int x, int y, int firstByte, int lastByte)); /* 178 */
/macosx-10.10.1/tcl-105/tcl_ext/tktreectrl/tktreectrl/generic/
H A DtkTreeUtils.c2146 CONST char *firstByte; local
2159 firstByte = chunkPtr->start;
2161 firstByte = Tcl_UtfAtIndex(chunkPtr->start, firstChar);
2163 firstByte - chunkPtr->start, -1, 0, &drawX);
2174 if ((lastByte - firstByte) + ellipsisLen > sizeof(staticStr))
2175 buf = ckalloc((lastByte - firstByte) + ellipsisLen);
2176 memcpy(buf, firstByte, (lastByte - firstByte));
2177 memcpy(buf + (lastByte - firstByte), ellipsis, ellipsisLen);
2179 buf, (lastByte - firstByte)
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/sec/Security/
H A DSecOTRSession.c82 uint8_t firstByte = *CFDataGetBytePtr(decodedBytes); local
83 switch (firstByte) {
86 type = firstByte;
H A DSecCertificate.c4950 uint8_t firstByte; local
4957 firstByte = x * 40;
4966 firstByte += x;
4969 CFDataAppendBytes(currentResult, &firstByte, 1);

Completed in 215 milliseconds