Searched refs:conv (Results 1 - 25 of 139) sorted by relevance

123456

/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...]
/external/vboot_reference/scripts/image_signing/
H A Dfirmware_boot.sh53 dd if=nor.bin of=bad.bin conv=notrunc bs=1 count=65536
58 dd if=nor.bin of=${output} conv=notrunc bs=1 seek=${rw_a_offset}
59 dd if=nor.bin of=${output} conv=notrunc bs=1 seek=${rw_b_offset}
64 dd if=dev.bin of=${output} conv=notrunc bs=1 seek=${rw_a_offset}
65 dd if=dev.bin of=${output} conv=notrunc bs=1 seek=${rw_b_offset}
70 dd if=nor.bin of=${output} conv=notrunc bs=1 seek=${rw_a_offset}
71 dd if=dev.bin of=${output} conv=notrunc bs=1 seek=${rw_b_offset}
76 dd if=dev.bin of=${output} conv=notrunc bs=1 seek=${rw_a_offset}
77 dd if=nor.bin of=${output} conv=notrunc bs=1 seek=${rw_b_offset}
82 dd if=nor.bin of=${output} conv
[all...]
H A Dstrip_boot_from_image.sh36 ( sudo dd if=/dev/zero of="${rootfs}/filler" bs=4096 conv=fdatasync \
H A Dconvert_recovery_to_full_ssd.sh68 conv=notrunc
74 count=${kern_size} conv=notrunc
H A Dconvert_recovery_to_ssd.sh77 sudo dd if=${tmp_vblock} of=${IMAGE} seek=${kerna_offset} bs=512 conv=notrunc
81 sudo dd if=/dev/zero of=${IMAGE} seek=${kernb_offset} bs=512 count=${kern_size} conv=notrunc
H A Dcommon_minimal.sh232 conv=notrunc 2>/dev/null
244 conv=notrunc 2>/dev/null
264 conv=notrunc count=1 bs=1 2>/dev/null
299 conv=notrunc count=1 bs=1 2>/dev/null
/external/strace/linux/x86_64/
H A Dgentab.pl4 %conv = (
54 $name = $conv{$name} if defined($conv{$name});
/external/icu/icu4c/source/samples/ucnv/
H A Dconvsamp.cpp211 UConverter *conv; local
216 conv = ucnv_open("koi8-r", &status);
221 len = ucnv_fromUChars(conv, target, 100, source, -1, &status);
225 ucnv_close(conv);
307 UConverter *conv; local
319 conv = ucnv_open("utf-8", &status);
322 uBufSize = (BUFFERSIZE/ucnv_getMinCharSize(conv));
324 BUFFERSIZE, ucnv_getMinCharSize(conv), uBufSize);
341 ucnv_toUnicode(conv, &target, targetLimit,
375 ucnv_close(conv);
403 UConverter *conv; local
536 UConverter *conv; local
576 UConverter *conv = NULL; local
623 UConverter *conv = NULL; local
717 UConverter *conv = NULL, *cloneCnv = NULL; local
886 UConverter *conv = NULL; local
992 UConverter *conv = NULL; local
1087 UConverter *conv = NULL; local
[all...]
/external/sfntly/cpp/src/test/
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);
H A Dtest_utils.cc76 UConverter* conv = ucnv_open(charset_name, &status); local
79 return conv; // returns NULL @ error anyway
/external/icu/icu4c/source/i18n/
H A Dcsmatch.cpp63 UConverter *conv = ucnv_open(getName(), status); local
64 int32_t result = ucnv_toUChars(conv, buf, cap, (const char *) textIn->fRawInput, textIn->fRawLength, status);
66 ucnv_close(conv);
/external/fonttools/Lib/fontTools/ttLib/tables/
H A DotBase.py546 for conv in converters:
547 if conv.name == "SubTable":
548 conv = conv.getConverter(reader.globalState.tableType,
550 if conv.name == "ExtSubTable":
551 conv = conv.getConverter(reader.globalState.tableType,
553 if conv.name == "FeatureParams":
554 conv = conv
[all...]
/external/fonttools/Tools/fontTools/ttLib/tables/
H A DotBase.py546 for conv in converters:
547 if conv.name == "SubTable":
548 conv = conv.getConverter(reader.globalState.tableType,
550 if conv.name == "ExtSubTable":
551 conv = conv.getConverter(reader.globalState.tableType,
553 if conv.name == "FeatureParams":
554 conv = conv
[all...]
/external/elfutils/tests/
H A Drun-ranlib-test2.sh32 dd of=$original seek=24 bs=1 count=12 conv=notrunc 2>/dev/null
/external/icu/icu4c/source/tools/toolutil/
H A Ducbuf.cpp49 UConverter* conv; member in struct:UCHARBUF
55 ucbuf_autodetect_fs(FileStream* in, const char** cp, UConverter** conv, int32_t* signatureLength, UErrorCode* error){ argument
75 *conv =NULL;
80 *conv = ucnv_open(*cp,error);
85 ucnv_toUnicode(*conv, &pTarget, target+1, &pStart, start+*signatureLength, NULL, FALSE, error);
134 ucbuf_autodetect(const char* fileName, const char** cp,UConverter** conv, int32_t* signatureLength,UErrorCode* error){ argument
139 if(conv==NULL || cp==NULL || fileName==NULL){
151 if(ucbuf_autodetect_fs(in,cp,conv,signatureLength,error)) {
154 ucnv_close(*conv);
155 *conv
[all...]
H A Ducbuf.h177 * @param conv Output param to receive the opened converter if autodetected; NULL otherwise.
185 ucbuf_autodetect(const char* fileName, const char** cp,UConverter** conv,
196 * @param conv Output param to receive the opened converter if autodetected; NULL otherwise.
205 ucbuf_autodetect_fs(FileStream* in, const char** cp, UConverter** conv, int32_t* signatureLength, UErrorCode* status);
/external/skia/third_party/lua/src/
H A Dloslib.c171 static const char *checkoption (lua_State *L, const char *conv, char *buff) { argument
175 if (*conv != '\0' && strchr(options[i], *conv) != NULL) {
176 buff[1] = *conv;
179 return conv + 1;
181 else if (*(conv + 1) != '\0' &&
182 strchr(options[i + 1], *(conv + 1)) != NULL) {
183 buff[2] = *(conv + 1); /* valid two-char conversion specifier */
185 return conv + 2;
190 lua_pushfstring(L, "invalid conversion specifier '%%%s'", conv));
[all...]
/external/syslinux/com32/lua/src/
H A Dloslib.c176 static const char *checkoption (lua_State *L, const char *conv, char *buff) { argument
180 if (*conv != '\0' && strchr(options[i], *conv) != NULL) {
181 buff[1] = *conv;
184 return conv + 1;
186 else if (*(conv + 1) != '\0' &&
187 strchr(options[i + 1], *(conv + 1)) != NULL) {
188 buff[2] = *(conv + 1); /* valid two-char conversion specifier */
190 return conv + 2;
195 lua_pushfstring(L, "invalid conversion specifier '%%%s'", conv));
[all...]
/external/skia/src/gpu/effects/
H A DGrGaussianConvolutionFragmentProcessor.cpp122 const GrGaussianConvolutionFragmentProcessor& conv = local
124 GrTexture& texture = *conv.textureSampler(0).peekTexture();
128 switch (conv.direction()) {
139 if (conv.useBounds()) {
141 bounds[0] = conv.bounds()[0];
142 bounds[1] = conv.bounds()[1];
143 if (GrTextureDomain::kClamp_Mode == conv.mode()) {
147 if (Gr1DKernelEffect::kX_Direction == conv.direction()) {
159 int width = Gr1DKernelEffect::WidthFromRadius(conv.radius());
163 pdman.set4fv(fKernelUni, arrayCount, conv
168 const GrGaussianConvolutionFragmentProcessor& conv = local
[all...]
/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/python/cpython2/Lib/lib-tk/test/
H A Dwidget_tests.py55 conv=False, eq=None):
59 if conv:
60 expected = conv(expected)
112 if 'conv' in kwargs:
113 conv = kwargs.pop('conv')
115 conv = float
117 self.checkParam(widget, name, value, conv=conv, **kwargs)
173 if 'conv' i
[all...]
/external/icu/icu4c/source/common/
H A Dustr_wcs.cpp76 UConverter* conv = NULL; local
85 conv = u_getDefaultConverter(pErrorCode);
102 ucnv_fromUnicode(conv,&tempBuf,tempBufLimit,&pSrc,pSrcLimit,NULL,(UBool)(pSrc==pSrcLimit),pErrorCode);
225 u_releaseDefaultConverter(conv);
291 UConverter* conv = NULL; local
437 conv= u_getDefaultConverter(pErrorCode);
439 if(U_FAILURE(*pErrorCode)|| conv==NULL){
448 ucnv_toUnicode(conv,&pTarget,pTargetLimit,(const char**)&pCSrc,pCSrcLimit,NULL,(UBool)(pCSrc==pCSrcLimit),pErrorCode);
479 u_releaseDefaultConverter(conv);
/external/toybox/toys/pending/
H A Ddd.c17 [seek=N] [conv=notrunc|noerror|sync|fsync] [status=noxfer|none]
28 conv=notrunc Don't truncate output file
29 conv=noerror Continue after read errors
30 conv=sync Pad blocks with zeros
31 conv=fsync Physically write data out before finishing
110 int trunc = O_TRUNC, conv = 0; local
134 } else if (strstarteq(&arg, "conv")) {
141 if (i == ARRAY_LEN(convs)) error_exit("bad conv=%.*s", len, ss);
142 conv |= 1<<i;
161 if (conv
[all...]
/external/python/cpython2/Lib/plat-os2emx/
H A Dpwd.py88 conv = path[1] + ':' + path[2:]
90 conv = path[0] + ':' + path[2:]
92 conv = path
93 return conv.replace(os.altsep, os.sep)
/external/ltp/testscripts/
H A Dltp-aiodio.sh227 dd if=$file1 of=$TMP/aiodio/junkfile bs=8192 conv=block,sync
252 dd if=$file1 of=$TMP/aiodio/junkfile bs=8192 conv=block,sync
253 dd if=$file1 of=$TMP/aiodio/fff bs=4096 conv=block,sync
254 dd if=$file1 of=$TMP/aiodio/ff1 bs=2048 conv=block,sync
255 dd if=$file1 of=$TMP/aiodio/ff2 bs=1024 conv=block,sync
256 dd if=$file1 of=$TMP/aiodio/ff3 bs=512 conv=block,sync
291 dd if=$file1 of=$TMP/aiodio/file2 bs=2048 conv=block,sync
292 dd if=$file1 of=$TMP/aiodio/file3 bs=1024 conv=block,sync
293 dd if=$file1 of=$TMP/aiodio/file4 bs=512 conv=block,sync
294 dd if=$file1 of=$TMP/aiodio/file5 bs=4096 conv
[all...]

Completed in 2402 milliseconds

123456