Searched refs:chars (Results 1 - 25 of 442) sorted by last modified time

1234567891011>>

/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...
/external/zlib/src/
H A Dgzlib.c40 DWORD chars = FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM local
48 if (chars != 0) {
50 if (chars >= 2
51 && msgbuf[chars - 2] == '\r' && msgbuf[chars - 1] == '\n') {
52 chars -= 2;
53 msgbuf[chars] = 0;
56 if (chars > sizeof (buf) - 1) {
57 chars = sizeof (buf) - 1;
58 msgbuf[chars]
[all...]
/external/zlib/src/test/
H A Dminigzip.c87 DWORD chars = FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM local
95 if (chars != 0) {
97 if (chars >= 2
98 && msgbuf[chars - 2] == '\r' && msgbuf[chars - 1] == '\n') {
99 chars -= 2;
100 msgbuf[chars] = 0;
103 if (chars > sizeof (buf) - 1) {
104 chars = sizeof (buf) - 1;
105 msgbuf[chars]
[all...]
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
H A Dgenlingware.pl33 9. id names of kb (strings of max 15 chars plus closing space)
/external/stlport/test/unit/
H A Dalg_test.cpp277 char chars[] = {1, 2}; local
286 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars));
291 unsigned char chars[] = {1, 2, 255}; local
300 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars));
305 signed char chars[] = {93, 2, -101, 13}; local
315 first = find_first_of(intv.begin(), intv.end(), chars, char
320 char chars[] = {1, 2}; local
[all...]
H A Dequal_test.cpp92 char chars[] = "aabbccddggghhklllmqqqqssyyzz"; local
94 const unsigned count = sizeof(chars) - 1;
95 pair<char*, char*> range = equal_range((char*)chars, (char*)chars + count, 'q', less<char>());
96 CPPUNIT_ASSERT( (range.first - chars) == 18 );
97 CPPUNIT_ASSERT( (range.second - chars) == 22 );
101 range = equal_range((char*)chars, (char*)chars + count, 'm', less<char>());
H A Distmit_test.cpp89 string chars; local
91 2, back_inserter(chars)).first,
92 2, back_inserter(chars)).first;
93 CPPUNIT_ASSERT( chars == "aabb" );
94 copy_n(ite, 2, back_inserter(chars));
95 CPPUNIT_ASSERT( chars == "aabbcd" );
/external/speex/include/speex/
H A Dspeex_bits.h50 char *chars; /**< "raw" data */ member in struct:SpeexBits
54 int owner; /**< Does the struct "own" the "raw" buffer (member "chars") */
/external/speex/libspeex/
H A Dbits.c50 bits->chars = (char*)speex_alloc(MAX_CHARS_PER_FRAME);
51 if (!bits->chars)
63 bits->chars = (char*)buff;
73 bits->chars = (char*)buff;
88 speex_free(bits->chars);
95 bits->chars[0]=0;
109 EXPORT void speex_bits_read_from(SpeexBits *bits, char *chars, int len) argument
118 char *tmp = (char*)speex_realloc(bits->chars, nchars);
122 bits->chars=tmp;
139 bits->chars[
156 speex_bits_read_whole_bytes(SpeexBits *bits, char *chars, int nbytes) argument
188 speex_bits_write(SpeexBits *bits, char *chars, int max_nbytes) argument
211 speex_bits_write_whole_bytes(SpeexBits *bits, char *chars, int max_nbytes) argument
309 char *chars; local
[all...]
/external/srec/srec/crec/
H A Dsrec_context.c344 Interface->chars = (char*) CALLOC_CLR(Interface->max_chars, sizeof(char), "srec.graph.wordmap.chars");
345 Interface->next_chars = Interface->chars;
431 if (((*wmap)->chars)) FREE((*wmap)->chars);
556 wmap->max_chars = (wmap->next_chars - wmap->chars);
624 char* old_wmap_chars = wmap->chars;
625 int offset = wmap->next_base_chars - wmap->chars;
626 char* tmp_chars = NEW_ARRAY(char, offset, L("srec.g2g.graph.wordmap.chars"));
628 passert ( 0 && L("failed to reset the memory for wordmap.chars ") );
[all...]
/external/srec/srec/include/
H A Dsrec_context.h56 char* chars; /* FOUR_BYTE_PTR(char*, chars, dummy1); */ member in struct:__anon31160
/external/srec/tools/test_g2g/
H A Dtest_g2g.c223 pfprintf(PSTDOUT, "%s %d arcs %d/%d/%d nodes %d/%d/%d words %d/%d chars %d/%d modelver %d\n",
228 fst->olabels->next_chars-fst->olabels->chars,
/external/skia/src/animator/
H A DSkDisplayEvent.cpp239 const char* chars = string->c_str(); local
240 int count = SkUTF8_CountUnichars(chars);
242 code = (SkKey) SkUTF8_NextUnichar(&chars);
246 SkASSERT(*chars == '-');
247 chars++;
248 fMax = (SkKey) SkUTF8_NextUnichar(&chars);
/external/skia/src/core/
H A DSkTypeface.cpp57 virtual int onCharsToGlyphs(const void* chars, Encoding encoding,
222 int SkTypeface::charsToGlyphs(const void* chars, Encoding encoding, argument
227 if (NULL == chars || (unsigned)encoding > kUTF32_Encoding) {
233 return this->onCharsToGlyphs(chars, encoding, glyphs, glyphCount);
H A DSkWriter32.cpp51 char* chars = (char*)(ptr + 1); local
52 memcpy(chars, str, len);
53 chars[len] = '\0';
/external/skia/src/fonts/
H A DSkGScalerContext.cpp198 int SkGTypeface::onCharsToGlyphs(const void* chars, Encoding encoding, argument
200 return fProxy->charsToGlyphs(chars, encoding, glyphs, glyphCount);
H A DSkGScalerContext.h32 virtual int onCharsToGlyphs(const void* chars, Encoding encoding,
/external/skia/src/ports/
H A DSkFontHost_FreeType.cpp1581 static SkUnichar next_utf8(const void** chars) { argument
1582 return SkUTF8_NextUnichar((const char**)chars);
1585 static SkUnichar next_utf16(const void** chars) { argument
1586 return SkUTF16_NextUnichar((const uint16_t**)chars);
1589 static SkUnichar next_utf32(const void** chars) { argument
1590 const SkUnichar** uniChars = (const SkUnichar**)chars;
1606 int SkTypeface_FreeType::onCharsToGlyphs(const void* chars, Encoding encoding, argument
1621 if (0 == FT_Get_Char_Index(face, next_uni_proc(&chars))) {
1629 unsigned id = FT_Get_Char_Index(face, next_uni_proc(&chars));
H A DSkFontHost_FreeType_common.h63 virtual int onCharsToGlyphs(const void* chars, Encoding, uint16_t glyphs[],
H A DSkFontHost_mac.cpp467 virtual int onCharsToGlyphs(const void* chars, Encoding, uint16_t glyphs[],
1915 int SkTypeface_Mac::onCharsToGlyphs(const void* chars, Encoding encoding, argument
1927 const char* utf8 = reinterpret_cast<const char*>(chars);
1938 src = reinterpret_cast<const UniChar*>(chars);
1949 const SkUnichar* utf32 = reinterpret_cast<const SkUnichar*>(chars);
H A DSkFontHost_win.cpp275 virtual int onCharsToGlyphs(const void* chars, Encoding encoding,
395 SkAutoTArray<WCHAR> chars(count + 1);
396 chars[count] = 0; // termintate string
399 chars[j] = glyphSet->ranges[i].wcLow + j;
401 GetGlyphIndicesW(fontHdc, chars.get(), count, glyph.get(),
413 (*glyphToUnicode)[glyph[j]] = chars[j];
2176 int LogFontTypeface::onCharsToGlyphs(const void* chars, Encoding encoding,
2204 const char* currentUtf8 = reinterpret_cast<const char*>(chars);
2239 const WCHAR* currentUtf16 = reinterpret_cast<const WCHAR*>(chars);
2266 const uint32_t* utf32 = reinterpret_cast<const uint32_t*>(chars);
[all...]
H A DSkTypeface_win_dw.cpp40 static SkUnichar next_utf8(const void** chars) { argument
41 return SkUTF8_NextUnichar((const char**)chars);
44 static SkUnichar next_utf16(const void** chars) { argument
45 return SkUTF16_NextUnichar((const uint16_t**)chars);
48 static SkUnichar next_utf32(const void** chars) { argument
49 const SkUnichar** uniChars = (const SkUnichar**)chars;
65 int DWriteFontTypeface::onCharsToGlyphs(const void* chars, Encoding encoding, argument
71 const SkUnichar c = next_ucs4_proc(&chars);
91 scratch[i] = next_ucs4_proc(&chars);
98 const UINT32* utf32 = reinterpret_cast<const UINT32*>(chars);
[all...]
H A DSkTypeface_win_dw.h104 virtual int onCharsToGlyphs(const void* chars, Encoding encoding,
/external/skia/src/views/
H A DSkEvent.cpp68 char chars[sizeof(size_t) + 1]; local
69 size_t len = makeCharArray(chars, (size_t) fType);
70 str->set(chars, len);
87 char chars[sizeof(size_t) + 1]; local
88 size_t len = makeCharArray(chars, (size_t) fType);
89 return len == typeLen && strncmp(chars, type, typeLen) == 0;
/external/skia/tests/
H A DFontHostTest.cpp77 const void* chars; member in struct:CharsToGlyphs_TestData
99 paint.textToGlyphs(test.chars, test.charsByteLength, paintGlyphIds);
101 face->charsToGlyphs(test.chars, test.typefaceEncoding, faceGlyphIds, test.charCount);

Completed in 922 milliseconds

1234567891011>>