Home
last modified time | relevance | path

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

/external/pcre/dist/
Dpcre16_ord2utf16.c68 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()
Dpcre_ord2utf8.c68 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()
Dpcre32_ord2utf32.c68 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()
Dpcretest.c1639 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/
Dillegal-member-initialization.cpp4 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/mesa3d/src/gallium/auxiliary/util/
Du_snprintf.c463 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/coregrind/m_debuginfo/
Dreadpdb.c775 unsigned short cvalue; /* numeric leaf */ member
786 unsigned short cvalue; /* numeric leaf */ member
797 unsigned short cvalue; member
/external/sfntly/cpp/src/test/tinyxml/
Dtinyxml.cpp780 void TiXmlElement::SetAttribute( const char * cname, const char * cvalue ) in SetAttribute() argument
784 attrib->SetValue( cvalue ); in SetAttribute()
/external/llvm/bindings/go/llvm/
Dir.go1051 cvalue := C.CString(value)
1052 defer C.free(unsafe.Pointer(cvalue))
1053 C.LLVMAddTargetDependentFunctionAttr(v.C, cattr, cvalue)