HomeSort by relevance Sort by last modified time
    Searched refs:cvalue (Results 1 - 9 of 9) sorted by null

  /external/pcre/dist/
pcre16_ord2utf16.c 61 cvalue the character value
68 PRIV(ord2utf)(pcre_uint32 cvalue, pcre_uchar *buffer)
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 */
pcre32_ord2utf32.c 61 cvalue the character value
68 PRIV(ord2utf)(pcre_uint32 cvalue, pcre_uchar *buffer)
72 *buffer = (pcre_uchar)cvalue;
76 (void)(cvalue); /* Keep compiler happy; this function won't ever be */
pcre_ord2utf8.c 60 cvalue the character value
68 PRIV(ord2utf)(pcre_uint32 cvalue, pcre_uchar *buffer)
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 */
pcretest.c     [all...]
  /external/clang/test/SemaCXX/
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/chromium_org/third_party/leveldatabase/src/doc/bench/
db_bench_tree_db.cc 462 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/
u_snprintf.c 463 unsigned char cvalue; local
758 cvalue = (unsigned char)va_arg(args, int);
759 OUTCHAR(str, len, size, cvalue);
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_snprintf.c 463 unsigned char cvalue; local
758 cvalue = (unsigned char)va_arg(args, int);
759 OUTCHAR(str, len, size, cvalue);
    [all...]
  /external/valgrind/main/coregrind/m_debuginfo/
readpdb.c 775 unsigned short cvalue; /* numeric leaf */ member in struct:codeview_symbol::__anon16195
786 unsigned short cvalue; /* numeric leaf */ member in struct:codeview_symbol::__anon16196
797 unsigned short cvalue; member in struct:codeview_symbol::__anon16197
    [all...]

Completed in 246 milliseconds