Searched refs:cvalue (Results 1 - 8 of 8) sorted by relevance
/external/pcre/dist/ |
H A D | pcre16_ord2utf16.c | 61 cvalue the character value 68 PRIV(ord2utf)(pcre_uint32 cvalue, pcre_uchar *buffer) argument 72 if (cvalue <= 0xffff) 74 *buffer = (pcre_uchar)cvalue; 78 cvalue -= 0x10000; 79 *buffer++ = 0xd800 | (cvalue >> 10); 80 *buffer = 0xdc00 | (cvalue & 0x3ff); 84 (void)(cvalue); /* Keep compiler happy; this function won't ever be */
|
H A D | pcre32_ord2utf32.c | 61 cvalue the character value 68 PRIV(ord2utf)(pcre_uint32 cvalue, pcre_uchar *buffer) argument 72 *buffer = (pcre_uchar)cvalue; 76 (void)(cvalue); /* Keep compiler happy; this function won't ever be */
|
H A D | pcre_ord2utf8.c | 60 cvalue the character value 68 PRIV(ord2utf)(pcre_uint32 cvalue, pcre_uchar *buffer) argument 75 if ((int)cvalue <= PRIV(utf8_table1)[i]) break; 79 *buffer-- = 0x80 | (cvalue & 0x3f); 80 cvalue >>= 6; 82 *buffer = PRIV(utf8_table2)[i] | cvalue; 87 (void)(cvalue); /* Keep compiler happy; this function won't ever be */
|
H A D | pcretest.c | 1632 cvalue the character value 1639 ord2utf8(pcre_uint32 cvalue, pcre_uint8 *utf8bytes) argument 1642 if (cvalue > 0x7fffffffu) 1645 if (cvalue <= (pcre_uint32)utf8_table1[i]) break; 1649 *utf8bytes-- = 0x80 | (cvalue & 0x3f); 1650 cvalue >>= 6; 1652 *utf8bytes = utf8_table2[i] | cvalue;
|
/external/clang/test/SemaCXX/ |
H A D | illegal-member-initialization.cpp | 4 A() : value(), cvalue() { } // expected-error {{reference to type 'int' requires an initializer}} 6 const int cvalue; member in struct:A 14 // expected-error {{constructor for 'X' must explicitly initialize the const member 'cvalue'}} \ 18 const int cvalue; // expected-note{{declared here}} member in struct:X
|
/external/pdfium/xfa/src/fxbarcode/pdf417/ |
H A D | BC_PDF417Codeword.cpp | 29 int32_t cvalue) {
33 m_value = cvalue;
26 CBC_Codeword(int32_t startX, int32_t endX, int32_t bucket, int32_t cvalue) argument
|
/external/mesa3d/src/gallium/auxiliary/util/ |
H A D | u_snprintf.c | 463 unsigned char cvalue; local 758 cvalue = (unsigned char)va_arg(args, int); 759 OUTCHAR(str, len, size, cvalue);
|
/external/valgrind/coregrind/m_debuginfo/ |
H A D | readpdb.c | 775 unsigned short cvalue; /* numeric leaf */ member in struct:codeview_symbol::__anon19439 786 unsigned short cvalue; /* numeric leaf */ member in struct:codeview_symbol::__anon19440 797 unsigned short cvalue; member in struct:codeview_symbol::__anon19441
|
Completed in 443 milliseconds