Searched defs:conv (Results 1 - 25 of 48) sorted by relevance

12

/external/elfutils/libdwelf/
H A Ddwelf_elf_gnu_debuglink.c79 Elf_Data conv = local
92 Elf_Data *d = gelf_xlatetom (elf, &crcdata, &conv, ehdr->e_ident[EI_DATA]);
/external/icu/icu4c/source/i18n/
H A Dcsmatch.cpp61 UConverter *conv = ucnv_open(getName(), status); local
62 int32_t result = ucnv_toUChars(conv, buf, cap, (const char *) textIn->fRawInput, textIn->fRawLength, status);
64 ucnv_close(conv);
/external/sfntly/cpp/src/test/
H A Dtest_utils.cc76 UConverter* conv = ucnv_open(charset_name, &status); local
79 return conv; // returns NULL @ error anyway
H A Dtest_utils_test.cc32 UConverter* conv = TestUtils::GetEncoder("utf8"); local
33 EXPECT_TRUE(conv != NULL);
41 int32_t encoded = TestUtils::EncodeOneChar(conv, (int16_t)from[i]);
48 ucnv_close(conv);
53 ucnv_close(conv);
/external/toybox/scripts/
H A Dmkstatus.py51 conv = [("posix", '<a href="http://pubs.opengroup.org/onlinepubs/9699919799/utilities/%s.html">%%s</a>', "[%s]"), variable
68 for j in conv:
123 for j in conv:
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_suppressions.cc68 static const char *conv(ReportType typ) { function in namespace:__tsan
116 const char *stype = conv(typ);
135 const char *stype = conv(typ);
/external/libxml2/include/libxml/
H A DxmlIO.h149 xmlBufPtr conv; /* if encoder != NULL buffer for output */ member in struct:_xmlOutputBuffer
/external/e2fsprogs/intl/
H A DgettextP.h117 __gconv_t conv; member in struct:loaded_domain
120 iconv_t conv; member in struct:loaded_domain
/external/libedit/src/
H A Dchartype.c50 ct_conv_buff_resize(ct_buffer_t *conv, size_t mincsize, size_t minwsize) argument
53 if (mincsize > conv->csize) {
54 conv->csize = mincsize;
55 p = el_realloc(conv->cbuff, conv->csize * sizeof(*conv->cbuff));
57 conv->csize = 0;
58 el_free(conv->cbuff);
59 conv->cbuff = NULL;
61 conv
78 ct_encode_string(const Char *s, ct_buffer_t *conv) argument
112 ct_decode_string(const char *s, ct_buffer_t *conv) argument
136 ct_decode_argv(int argc, const char *argv[], ct_buffer_t *conv) argument
[all...]
H A Dsearch.c114 static ct_buffer_t conv; local
131 if (regcomp(&re, ct_encode_string(pat, &conv), 0) == 0) {
132 rv = regexec(&re, ct_encode_string(str, &conv), (size_t)0, NULL,
140 if ((re = regcomp(ct_encode_string(pat, &conv))) != NULL) {
141 rv = regexec(re, ct_encode_string(str, &conv));
148 if (re_comp(ct_encode_string(pat, &conv)) != NULL)
151 return re_exec(ct_encode_string(str, &conv) == 1);
H A Dhistory.c742 static ct_buffer_t conv; local
777 if (HENTER(h, &ev, ct_decode_string(ptr, &conv)) == -1) {
803 static ct_buffer_t conv; local
819 str = ct_encode_string(ev.str, &conv);
/external/icu/icu4c/source/common/
H A Dustr_wcs.cpp74 UConverter* conv = NULL; local
83 conv = u_getDefaultConverter(pErrorCode);
100 ucnv_fromUnicode(conv,&tempBuf,tempBufLimit,&pSrc,pSrcLimit,NULL,(UBool)(pSrc==pSrcLimit),pErrorCode);
223 u_releaseDefaultConverter(conv);
289 UConverter* conv = NULL; local
435 conv= u_getDefaultConverter(pErrorCode);
437 if(U_FAILURE(*pErrorCode)|| conv==NULL){
446 ucnv_toUnicode(conv,&pTarget,pTargetLimit,(const char**)&pCSrc,pCSrcLimit,NULL,(UBool)(pCSrc==pCSrcLimit),pErrorCode);
477 u_releaseDefaultConverter(conv);
/external/icu/icu4c/source/samples/ugrep/
H A Dugrep.cpp317 UConverter* conv; local
318 conv = ucnv_open(encoding, &status);
328 uint32_t destCap = ucnv_toUChars(conv,
341 ucnv_toUChars(conv,
351 ucnv_close(conv);
/external/icu/icu4c/source/test/intltest/
H A Didnaconf.cpp104 UConverter* conv = ucnv_open("utf-8", &status); local
105 int dest_len = ucnv_toUChars(conv,
116 ucnv_toUChars(conv, dest, dest_len + 1, source, source_len, &status);
123 ucnv_close(conv);
128 ucnv_close(conv);
/external/icu/icu4c/source/test/perf/convperf/
H A Dconvperf.h26 UConverter* conv; member in class:ICUToUnicodePerfFunction
34 conv = ucnv_open(name,&status);
38 conv = NULL;
43 int32_t reqdLen = ucnv_toUChars(conv, target, 0,
59 ucnv_toUnicode(conv, &myTarget, targetLimit, &mySrc, sourceLimit, NULL, TRUE, status);
66 ucnv_close(conv);
71 UConverter* conv; member in class:ICUFromUnicodePerfFunction
80 conv = ucnv_open(name,&status);
84 conv = NULL;
89 int32_t reqdLen = ucnv_fromUChars(conv, targe
[all...]
/external/skia/src/gpu/effects/
H A DGrConvolutionEffect.cpp95 const GrConvolutionEffect& conv = processor.cast<GrConvolutionEffect>(); local
96 GrTexture& texture = *conv.texture(0);
100 switch (conv.direction()) {
111 if (conv.useBounds()) {
112 const float* bounds = conv.bounds();
113 if (Gr1DKernelEffect::kY_Direction == conv.direction() &&
120 int width = Gr1DKernelEffect::WidthFromRadius(conv.radius());
122 pdman.set1fv(fKernelUni, width, conv.kernel());
127 const GrConvolutionEffect& conv = processor.cast<GrConvolutionEffect>(); local
128 uint32_t key = conv
[all...]
H A DGrMatrixConvolutionEffect.cpp124 const GrMatrixConvolutionEffect& conv = processor.cast<GrMatrixConvolutionEffect>(); local
125 GrTexture& texture = *conv.texture(0);
132 pdman.set2fv(fKernelOffsetUni, 1, conv.kernelOffset());
133 pdman.set1fv(fKernelUni, conv.kernelSize().width() * conv.kernelSize().height(), conv.kernel());
134 pdman.set1f(fGainUni, conv.gain());
135 pdman.set1f(fBiasUni, conv.bias());
136 fDomain.setData(pdman, conv.domain(), texture.origin());
/external/icu/icu4c/source/samples/ucnv/
H A Dconvsamp.cpp204 UConverter *conv; local
209 conv = ucnv_open("koi8-r", &status);
214 len = ucnv_fromUChars(conv, target, 100, source, -1, &status);
218 ucnv_close(conv);
300 UConverter *conv; local
312 conv = ucnv_open("utf-8", &status);
315 uBufSize = (BUFFERSIZE/ucnv_getMinCharSize(conv));
317 BUFFERSIZE, ucnv_getMinCharSize(conv), uBufSize);
334 ucnv_toUnicode(conv, &target, targetLimit,
368 ucnv_close(conv);
396 UConverter *conv; local
529 UConverter *conv; local
569 UConverter *conv = NULL; local
616 UConverter *conv = NULL; local
710 UConverter *conv = NULL, *cloneCnv = NULL; local
879 UConverter *conv = NULL; local
985 UConverter *conv = NULL; local
1080 UConverter *conv = NULL; local
[all...]
/external/icu/icu4c/source/test/cintltst/
H A Dcintltst.c520 UConverter* conv = ucnv_open(convName, &errorCode); local
527 ucnv_setFromUCallBack(conv, UCNV_FROM_U_CALLBACK_ESCAPE, UCNV_ESCAPE_C, &cb, &p, &errorCode);
528 ucnv_fromUnicode(conv,&target,targetLimit, &unichars, (UChar*)(unichars+length),NULL,TRUE,&errorCode);
529 ucnv_close(conv);
H A Dncnvfbts.c135 UConverter *conv = 0; local
162 conv = my_ucnv_open(codepage, &status);
171 ucnv_setFallback (conv, fallback);
172 action = ucnv_usesFallback(conv);
208 ucnv_fromUnicode (conv,
249 ucnv_close(conv);
296 UConverter *conv = 0; local
326 conv = my_ucnv_open(codepage, &status);
343 ucnv_setFallback (conv, fallback);
344 action = ucnv_usesFallback(conv);
[all...]
/external/icu/icu4c/source/tools/genrb/
H A Dwrtjava.cpp101 static UConverter* conv = NULL; variable
187 int retVal=ucnv_fromUChars(conv,dest,30,source+i,1,status);
675 conv=ucnv_open(enc,status);
686 ucnv_close(conv);
/external/icu/icu4c/source/tools/toolutil/
H A Ducbuf.c47 UConverter* conv; member in struct:UCHARBUF
53 ucbuf_autodetect_fs(FileStream* in, const char** cp, UConverter** conv, int32_t* signatureLength, UErrorCode* error){ argument
73 *conv =NULL;
78 *conv = ucnv_open(*cp,error);
83 ucnv_toUnicode(*conv, &pTarget, target+1, &pStart, start+*signatureLength, NULL, FALSE, error);
132 ucbuf_autodetect(const char* fileName, const char** cp,UConverter** conv, int32_t* signatureLength,UErrorCode* error){ argument
137 if(conv==NULL || cp==NULL || fileName==NULL){
149 if(ucbuf_autodetect_fs(in,cp,conv,signatureLength,error)) {
152 ucnv_close(*conv);
153 *conv
[all...]
/external/v8/test/unittests/compiler/mips/
H A Dinstruction-selector-mips-unittest.cc689 const Conversion conv = GetParam(); local
690 StreamBuilder m(this, conv.mi.machine_type, conv.src_machine_type);
691 m.Return((m.*conv.mi.constructor)(m.Parameter(0)));
694 EXPECT_EQ(conv.mi.arch_opcode, s[0]->arch_opcode());
710 const Conversion conv = GetParam(); local
711 StreamBuilder m(this, conv.mi.machine_type, conv.src_machine_type);
712 m.Return(m.ChangeFloat64ToInt32((m.*conv.mi.constructor)(m.Parameter(0))));
715 EXPECT_EQ(conv
732 const Conversion conv = GetParam(); local
[all...]
/external/v8/test/unittests/compiler/mips64/
H A Dinstruction-selector-mips64-unittest.cc838 const Conversion conv = GetParam(); local
839 StreamBuilder m(this, conv.mi.machine_type, conv.src_machine_type);
840 m.Return((m.*conv.mi.constructor)(m.Parameter(0)));
843 EXPECT_EQ(conv.mi.arch_opcode, s[0]->arch_opcode());
882 const Conversion conv = GetParam(); local
883 StreamBuilder m(this, conv.mi.machine_type, conv.src_machine_type);
884 m.Return(m.ChangeFloat64ToInt32((m.*conv.mi.constructor)(m.Parameter(0))));
887 EXPECT_EQ(conv
903 const Conversion conv = GetParam(); local
[all...]
/external/clang/test/SemaCXX/
H A Dconditional-expr.cpp104 Convertible conv; local
107 Base &bar3 = i1 ? base : conv;
108 Base &bar4 = i1 ? conv : base;

Completed in 716 milliseconds

12