Searched refs:cvalue (Results 1 – 11 of 11) sorted by relevance
/external/pcre/dist/ |
D | pcre16_ord2utf16.c | 68 PRIV(ord2utf)(pcre_uint32 cvalue, pcre_uchar *buffer) in PRIV() 72 if (cvalue <= 0xffff) in PRIV() 74 *buffer = (pcre_uchar)cvalue; in PRIV() 78 cvalue -= 0x10000; in PRIV() 79 *buffer++ = 0xd800 | (cvalue >> 10); in PRIV() 80 *buffer = 0xdc00 | (cvalue & 0x3ff); in PRIV() 84 (void)(cvalue); /* Keep compiler happy; this function won't ever be */ in PRIV()
|
D | pcre_ord2utf8.c | 68 PRIV(ord2utf)(pcre_uint32 cvalue, pcre_uchar *buffer) in PRIV() 75 if ((int)cvalue <= PRIV(utf8_table1)[i]) break; in PRIV() 79 *buffer-- = 0x80 | (cvalue & 0x3f); in PRIV() 80 cvalue >>= 6; in PRIV() 82 *buffer = PRIV(utf8_table2)[i] | cvalue; in PRIV() 87 (void)(cvalue); /* Keep compiler happy; this function won't ever be */ in PRIV()
|
D | pcre32_ord2utf32.c | 68 PRIV(ord2utf)(pcre_uint32 cvalue, pcre_uchar *buffer) in PRIV() 72 *buffer = (pcre_uchar)cvalue; in PRIV() 76 (void)(cvalue); /* Keep compiler happy; this function won't ever be */ in PRIV()
|
D | pcretest.c | 1639 ord2utf8(pcre_uint32 cvalue, pcre_uint8 *utf8bytes) in ord2utf8() argument 1642 if (cvalue > 0x7fffffffu) in ord2utf8() 1645 if (cvalue <= (pcre_uint32)utf8_table1[i]) break; in ord2utf8() 1649 *utf8bytes-- = 0x80 | (cvalue & 0x3f); in ord2utf8() 1650 cvalue >>= 6; in ord2utf8() 1652 *utf8bytes = utf8_table2[i] | cvalue; in ord2utf8()
|
/external/clang/test/SemaCXX/ |
D | illegal-member-initialization.cpp | 4 A() : value(), cvalue() { } // expected-error {{reference to type 'int' requires an initializer}} in A() 6 const int cvalue; member 18 const int cvalue; // expected-note{{declared here}} member
|
/external/chromium_org/third_party/leveldatabase/src/doc/bench/ |
D | db_bench_tree_db.cc | 462 std::string ckey, cvalue; in ReadSequential() local 463 while (cur->get(&ckey, &cvalue, true)) { in ReadSequential() 464 bytes_ += ckey.size() + cvalue.size(); in ReadSequential()
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
D | u_snprintf.c | 463 unsigned char cvalue; in util_vsnprintf() local 758 cvalue = (unsigned char)va_arg(args, int); in util_vsnprintf() 759 OUTCHAR(str, len, size, cvalue); in util_vsnprintf()
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_snprintf.c | 463 unsigned char cvalue; in util_vsnprintf() local 758 cvalue = (unsigned char)va_arg(args, int); in util_vsnprintf() 759 OUTCHAR(str, len, size, cvalue); in util_vsnprintf()
|
/external/valgrind/main/coregrind/m_debuginfo/ |
D | readpdb.c | 775 unsigned short cvalue; /* numeric leaf */ member 786 unsigned short cvalue; /* numeric leaf */ member 797 unsigned short cvalue; member
|
/external/sfntly/cpp/src/test/tinyxml/ |
D | tinyxml.cpp | 780 void TiXmlElement::SetAttribute( const char * cname, const char * cvalue ) in SetAttribute() argument 784 attrib->SetValue( cvalue ); in SetAttribute()
|
/external/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/ |
D | tinyxml.cpp | 780 void TiXmlElement::SetAttribute( const char * cname, const char * cvalue ) in SetAttribute() argument 784 attrib->SetValue( cvalue ); in SetAttribute()
|