Home
last modified time | relevance | path

Searched refs:str (Results 3001 - 3025 of 8987) sorted by relevance

1...<<121122123124125126127128129130>>...360

/third_party/ffmpeg/libavfilter/
H A Dvf_boxblur.c269 { "luma_radius", "Radius of the luma blurring box", OFFSET(luma_param.radius_expr), AV_OPT_TYPE_STRING, {.str="2"}, .flags = FLAGS },
270 { "lr", "Radius of the luma blurring box", OFFSET(luma_param.radius_expr), AV_OPT_TYPE_STRING, {.str="2"}, .flags = FLAGS },
274 { "chroma_radius", "Radius of the chroma blurring box", OFFSET(chroma_param.radius_expr), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
275 { "cr", "Radius of the chroma blurring box", OFFSET(chroma_param.radius_expr), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
279 { "alpha_radius", "Radius of the alpha blurring box", OFFSET(alpha_param.radius_expr), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
280 { "ar", "Radius of the alpha blurring box", OFFSET(alpha_param.radius_expr), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
H A Dvf_crop.c359 { "out_w", "set the width crop area expression", OFFSET(w_expr), AV_OPT_TYPE_STRING, {.str = "iw"}, 0, 0, TFLAGS },
360 { "w", "set the width crop area expression", OFFSET(w_expr), AV_OPT_TYPE_STRING, {.str = "iw"}, 0, 0, TFLAGS },
361 { "out_h", "set the height crop area expression", OFFSET(h_expr), AV_OPT_TYPE_STRING, {.str = "ih"}, 0, 0, TFLAGS },
362 { "h", "set the height crop area expression", OFFSET(h_expr), AV_OPT_TYPE_STRING, {.str = "ih"}, 0, 0, TFLAGS },
363 { "x", "set the x crop area expression", OFFSET(x_expr), AV_OPT_TYPE_STRING, {.str = "(in_w-out_w)/2"}, 0, 0, TFLAGS },
364 { "y", "set the y crop area expression", OFFSET(y_expr), AV_OPT_TYPE_STRING, {.str = "(in_h-out_h)/2"}, 0, 0, TFLAGS },
H A Dvf_avgblur_opencl.c362 { "luma_radius", "Radius of the luma blurring box", OFFSET(luma_param.radius_expr), AV_OPT_TYPE_STRING, {.str="2"}, .flags = FLAGS },
363 { "lr", "Radius of the luma blurring box", OFFSET(luma_param.radius_expr), AV_OPT_TYPE_STRING, {.str="2"}, .flags = FLAGS },
367 { "chroma_radius", "Radius of the chroma blurring box", OFFSET(chroma_param.radius_expr), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
368 { "cr", "Radius of the chroma blurring box", OFFSET(chroma_param.radius_expr), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
372 { "alpha_radius", "Radius of the alpha blurring box", OFFSET(alpha_param.radius_expr), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
373 { "ar", "Radius of the alpha blurring box", OFFSET(alpha_param.radius_expr), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
H A Dvf_tonemap_vaapi.c370 { .str = NULL }, .flags = FLAGS, "matrix" },
373 { .str = NULL }, .flags = FLAGS, "matrix" },
376 { .str = NULL }, .flags = FLAGS, "primaries" },
379 { .str = NULL }, .flags = FLAGS, "primaries" },
382 { .str = NULL }, .flags = FLAGS, "transfer" },
385 { .str = NULL }, .flags = FLAGS, "transfer" },
H A Dvf_subtitles.c70 {"filename", "set the filename of file to read", OFFSET(filename), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, FLAGS }, \
71 {"f", "set the filename of file to read", OFFSET(filename), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, FLAGS }, \
72 {"original_size", "set the size of the original video (used to scale fonts)", OFFSET(original_w), AV_OPT_TYPE_IMAGE_SIZE, {.str = NULL}, 0, 0, FLAGS }, \
73 {"fontsdir", "set the directory containing the fonts to read", OFFSET(fontsdir), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, FLAGS }, \
270 {"charenc", "set input character encoding", OFFSET(charenc), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, FLAGS},
273 {"force_style", "force subtitle style", OFFSET(force_style), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, FLAGS},
/third_party/ffmpeg/libavformat/
H A Dutils.c503 void ff_parse_key_value(const char *str, ff_parse_key_val_cb callback_get_buf, in ff_parse_key_value() argument
506 const char *ptr = str; in ff_parse_key_value()
586 char *str; in ff_bprint_to_codecpar_extradata() local
588 ret = av_bprint_finalize(buf, &str); in ff_bprint_to_codecpar_extradata()
592 av_free(str); in ff_bprint_to_codecpar_extradata()
596 par->extradata = str; in ff_bprint_to_codecpar_extradata()
/third_party/alsa-lib/src/topology/
H A Dparser.c28 const char *str; in tplg_get_integer() local
39 err = snd_config_get_string(n, &str); in tplg_get_integer()
42 err = safe_strtol_base(str, &lval, base); in tplg_get_integer()
61 const char *str; in tplg_get_unsigned() local
89 err = snd_config_get_string(n, &str); in tplg_get_unsigned()
93 uval = strtoul(str, NULL, base); in tplg_get_unsigned()
/third_party/backends/backend/pixma/
H A Dpixma_io_sanei.c182 u16tohex (uint16_t x, char *str) in u16tohex() argument
188 str[0] = hdigit[(x >> 12) & 0xf]; in u16tohex()
189 str[1] = hdigit[(x >> 8) & 0xf]; in u16tohex()
190 str[2] = hdigit[(x >> 4) & 0xf]; in u16tohex()
191 str[3] = hdigit[x & 0xf]; in u16tohex()
192 str[4] = '\0'; in u16tohex()
/third_party/backends/backend/
H A Dsnapscan-usb.c257 static char *usb_debug_data(char *str,const char *data, int len) { in usb_debug_data() argument
261 str[0]=0; in usb_debug_data()
265 strcat(str,"\n"); in usb_debug_data()
266 strcat(str,tmpstr); in usb_debug_data()
269 strcat(str," ..."); in usb_debug_data()
270 return str; in usb_debug_data()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/lang/
H A DUCharacterCaseTest.java481 String str = SPECIAL_DATA_[j]; in TestSpecial()
484 UCharacter.toLowerCase(locale, str))) { in TestSpecial()
486 hex(str) + " expected " + hex(SPECIAL_DATA_[j + 1]) in TestSpecial()
488 hex(UCharacter.toLowerCase(locale, str))); in TestSpecial()
491 UCharacter.toUpperCase(locale, str))) { in TestSpecial()
493 hex(str) + " expected " + SPECIAL_DATA_[j + 2] in TestSpecial()
495 hex(UCharacter.toUpperCase(locale, str))); in TestSpecial()
499 String lower = UCharacter.toLowerCase(str); in TestSpecial()
502 hex(str) + " expected " + SPECIAL_DATA_[j + 1] + in TestSpecial()
505 String upper = UCharacter.toUpperCase(str); in TestSpecial()
1776 getUnicodeStrings(String str) getUnicodeStrings() argument
[all...]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
H A DUCharacterCaseTest.java544 String str = SPECIAL_DATA_[j]; in TestSpecial()
547 UCharacter.toLowerCase(locale, str))) { in TestSpecial()
549 hex(str) + " expected " + hex(SPECIAL_DATA_[j + 1]) in TestSpecial()
551 hex(UCharacter.toLowerCase(locale, str))); in TestSpecial()
554 UCharacter.toUpperCase(locale, str))) { in TestSpecial()
556 hex(str) + " expected " + SPECIAL_DATA_[j + 2] in TestSpecial()
558 hex(UCharacter.toUpperCase(locale, str))); in TestSpecial()
562 String lower = UCharacter.toLowerCase(str); in TestSpecial()
565 hex(str) + " expected " + SPECIAL_DATA_[j + 1] + in TestSpecial()
568 String upper = UCharacter.toUpperCase(str); in TestSpecial()
1859 getUnicodeStrings(String str) getUnicodeStrings() argument
[all...]
/third_party/libsnd/programs/
H A Dsndfile-info.c183 { static char str [128] ; in format_duration_str() local
187 memset (str, 0, sizeof (str)) ; in format_duration_str()
193 snprintf (str, sizeof (str) - 1, "%02d:%02d:%06.3f", hrs, min, sec) ; in format_duration_str()
195 return str ; in format_duration_str()
/third_party/libbpf/src/
H A Dlibbpf_internal.h144 /* Check whether a string `str` has prefix `pfx`, regardless if `pfx` is
148 #define str_has_pfx(str, pfx) \
149 (strncmp(str, pfx, __builtin_constant_p(pfx) ? sizeof(pfx) - 1 : strlen(pfx)) == 0)
152 static inline bool str_has_sfx(const char *str, const char *sfx) in str_has_sfx() argument
154 size_t str_len = strlen(str); in str_has_sfx()
159 return strcmp(str + str_len - sfx_len, sfx) == 0; in str_has_sfx()
655 bool glob_match(const char *str, const char *pat);
/third_party/mesa3d/src/imagination/vulkan/pds/
H A Dpvr_pds_printer.c34 #define X(lop, str) #str,
42 #define X(enum, str, size) { #str, #size }, in pvr_pds_disassemble_operand()
516 #define X(dout_dst, str) #str, in pvr_pds_disassemble_instruction_dout()
/third_party/node/tools/gyp/pylib/gyp/
H A Dcommon.py45 e.args = (str(e.args[0]) + " " + msg,)
47 e.args = (str(e.args[0]) + " " + msg,) + e.args[1:]
277 if not isinstance(argument, str):
278 argument = str(argument)
592 return "CycleError: cycle involving: " + str(self.nodes)
658 return "CYGWIN" in str(stdout)
/third_party/node/deps/cares/src/lib/
H A Dares_dns_mapping.c601 ares_bool_t ares_dns_class_fromstr(ares_dns_class_t *qclass, const char *str) in ares_dns_class_fromstr() argument
617 if (qclass == NULL || str == NULL) { in ares_dns_class_fromstr()
622 if (strcasecmp(list[i].name, str) == 0) { in ares_dns_class_fromstr()
631 const char *str) in ares_dns_rec_type_fromstr()
661 if (qtype == NULL || str == NULL) { in ares_dns_rec_type_fromstr()
666 if (strcasecmp(list[i].name, str) == 0) { in ares_dns_rec_type_fromstr()
630 ares_dns_rec_type_fromstr(ares_dns_rec_type_t *qtype, const char *str) ares_dns_rec_type_fromstr() argument
/third_party/mesa3d/src/intel/compiler/
H A Dbrw_vec4_builder.h73 annotation.str = inst->annotation; in vec4_builder()
139 annotate(const char *str, const void *ir = NULL) const in annotate() argument
142 bld.annotation.str = str; in annotate()
317 inst->annotation = annotation.str; in emit()
640 const char *str; member
/third_party/mesa3d/src/mesa/main/
H A Dformat_parser.py57 s = str(self.type)
60 s += str(self.size)
147 if isinstance(swizzle, str):
185 elif isinstance(idx, str):
452 if str(self.swizzle) == 'xxxx':
454 elif str(self.swizzle)[0:3] in ('xxx', 'yyy'):
/third_party/node/deps/icu-small/source/i18n/
H A Dutrans.cpp456 UnicodeString str(text, textLen, textCapacity);
458 *limit = ((Transliterator*) trans)->transliterate(str, start, *limit);
462 textLen = str.extract(text, textCapacity, *status);
486 UnicodeString str(text, textLen, textCapacity);
488 ((Transliterator*) trans)->transliterate(str, *pos, *status);
492 textLen = str.extract(text, textCapacity, *status);
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
H A Dcommon.py45 e.args = (str(e.args[0]) + " " + msg,)
47 e.args = (str(e.args[0]) + " " + msg,) + e.args[1:]
273 if not isinstance(argument, str):
274 argument = str(argument)
586 return "CycleError: cycle involving: " + str(self.nodes)
652 return "CYGWIN" in str(stdout)
/third_party/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_jit.c388 char *str = LLVMPrintModuleToString(gallivm->module); in lp_jit_create_types() local
389 fprintf(stderr, "%s", str); in lp_jit_create_types()
390 LLVMDisposeMessage(str); in lp_jit_create_types()
508 char *str = LLVMPrintModuleToString(gallivm->module); in lp_jit_create_cs_types() local
509 fprintf(stderr, "%s", str); in lp_jit_create_cs_types()
510 LLVMDisposeMessage(str); in lp_jit_create_cs_types()
/third_party/icu/icu4c/source/i18n/
H A Dutrans.cpp456 UnicodeString str(text, textLen, textCapacity);
458 *limit = ((Transliterator*) trans)->transliterate(str, start, *limit);
462 textLen = str.extract(text, textCapacity, *status);
486 UnicodeString str(text, textLen, textCapacity);
488 ((Transliterator*) trans)->transliterate(str, *pos, *status);
492 textLen = str.extract(text, textCapacity, *status);
/third_party/node/deps/v8/src/debug/wasm/gdb-server/
H A Dtarget.cc455 const char* str = &pkt_in->GetPayload()[1]; in ProcessQueryPacket() local
464 if (!strcmp(str, "fThreadInfo") || !strcmp(str, "sThreadInfo")) { in ProcessQueryPacket()
465 if (str[0] == 'f') { in ProcessQueryPacket()
487 if (!strncmp(str, tmp.data(), tmp.length())) { in ProcessQueryPacket()
511 std::vector<std::string> toks = StringSplit(str, ":;"); in ProcessQueryPacket()
/third_party/node/deps/v8/src/utils/
H A Dallocation.cc129 char* StrDup(const char* str) { in StrDup() argument
130 size_t length = strlen(str); in StrDup()
132 MemCopy(result, str, length); in StrDup()
137 char* StrNDup(const char* str, size_t n) { in StrNDup() argument
138 size_t length = strlen(str); in StrNDup()
141 MemCopy(result, str, length); in StrNDup()
/third_party/node/deps/openssl/openssl/crypto/bio/
H A Dbss_conn.c44 static int conn_puts(BIO *h, const char *str);
602 static int conn_puts(BIO *bp, const char *str) in conn_puts() argument
606 n = strlen(str); in conn_puts()
607 ret = conn_write(bp, str, n); in conn_puts()
611 BIO *BIO_new_connect(const char *str) in BIO_new_connect() argument
618 if (BIO_set_conn_hostname(ret, str)) in BIO_new_connect()

Completed in 23 milliseconds

1...<<121122123124125126127128129130>>...360