Searched refs:cvalue (Results 1 - 9 of 9) sorted by relevance

/external/pcre/dist/
H A Dpcre16_ord2utf16.c61 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 Dpcre32_ord2utf32.c61 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 Dpcre_ord2utf8.c60 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 Dpcretest.c1632 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 Dillegal-member-initialization.cpp4 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/chromium_org/third_party/leveldatabase/src/doc/bench/
H A Ddb_bench_tree_db.cc462 std::string ckey, cvalue; local
463 while (cur->get(&ckey, &cvalue, true)) {
464 bytes_ += ckey.size() + cvalue.size();
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_snprintf.c463 unsigned char cvalue; local
758 cvalue = (unsigned char)va_arg(args, int);
759 OUTCHAR(str, len, size, cvalue);
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_snprintf.c463 unsigned char cvalue; local
758 cvalue = (unsigned char)va_arg(args, int);
759 OUTCHAR(str, len, size, cvalue);
/external/valgrind/main/coregrind/m_debuginfo/
H A Dreadpdb.c775 unsigned short cvalue; /* numeric leaf */ member in struct:codeview_symbol::__anon32504
786 unsigned short cvalue; /* numeric leaf */ member in struct:codeview_symbol::__anon32505
797 unsigned short cvalue; member in struct:codeview_symbol::__anon32506

Completed in 317 milliseconds