/third_party/skia/third_party/externals/icu/source/common/ |
H A D | icuplug.cpp | 56 char libName[UPLUG_NAME_MAX]; /**< library name */ 60 char name[UPLUG_NAME_MAX]; /**< name of plugin */ member 112 char name[UPLUG_NAME_MAX]; /**< library name */ member 130 if(!uprv_strcmp(libName, libraryList[i].name)) { in searchForLibraryName() 157 ret = libraryList[libEnt].name; in uplug_findLibrary() 192 libraryList[libEntry].name[0] = 0; in uplug_openLibrary() 200 uprv_strncpy(libraryList[libEntry].name,libName,UPLUG_NAME_MAX); in uplug_openLibrary() 348 plug->name[ in uplug_allocateEmptyPlug() 460 uplug_setPlugName(UPlugData *data, const char *name) uplug_setPlugName() argument [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | mappedTypeAsClauses.js | 9 type PropDef<K extends keyof any, T> = { name: K, type: T }; 11 type TypeFromDefs<T extends PropDef<keyof any, any>> = { [P in T as P['name']]: P['type'] }; 13 type TP1 = TypeFromDefs<{ name: 'a', type: string } | { name: 'b', type: number } | { name: 'a', type: boolean }>; 39 readonly name: string; 64 name: string; 83 let primitiveCar: OnlyPrimitives<Car>; // { name: string; seats: number; } 84 let keys: keyof OnlyPrimitives<Car>; // "name" | "seats" 88 let carKeys: KeysOfPrimitives<Car>; // "name" | "seat [all...] |
/third_party/protobuf/src/google/protobuf/compiler/csharp/ |
H A D | csharp_message.cc | 15 // * Neither the name of Google Inc. nor the names of its 91 return descriptor_->name(); in class_name() 217 "field_name", fieldDescriptor->name(), in Generate() 229 vars["name"] = UnderscoresToCamelCase(oneof->name(), false); in Generate() 230 vars["property_name"] = UnderscoresToCamelCase(oneof->name(), true); in Generate() 231 vars["original_name"] = oneof->name(); in Generate() 234 "private object $name$_;\n" in Generate() 251 "private $property_name$OneofCase $name$Case_ = $property_name$OneofCase.None;\n"); in Generate() 256 " get { return $name in Generate() [all...] |
/third_party/protobuf/src/google/protobuf/compiler/java/ |
H A D | java_helpers.cc | 15 // * Neither the name of Google Inc. nor the names of its 103 // Groups are hacky: The name of the field is just the lower-cased name in FieldName() 105 // capitalization of the type name. in FieldName() 107 field_name = field->message_type()->name(); in FieldName() 109 field_name = field->name(); in FieldName() 112 // Append a trailing "#" to indicate that the name should be decorated to in FieldName() 187 // Add a trailing "_" if the name should be altered. in UnderscoresToCamelCase() 207 return UnderscoresToCamelCase(method->name(), false); in UnderscoresToCamelCase() 211 std::string name in UnderscoresToCamelCaseCheckReserved() local 310 std::string name = field->name() + "_FIELD_NUMBER"; FieldConstantName() local [all...] |
/third_party/python/Modules/_sqlite/ |
H A D | module.c | 184 PyObject* name = NULL; in pysqlite_register_converter_impl() local 187 /* convert the name to upper case */ in pysqlite_register_converter_impl() 189 name = PyObject_CallMethodNoArgs(orig_name, state->str_upper); in pysqlite_register_converter_impl() 190 if (!name) { in pysqlite_register_converter_impl() 194 if (PyDict_SetItem(state->converters, name, callable) != 0) { in pysqlite_register_converter_impl() 200 Py_XDECREF(name); in pysqlite_register_converter_impl() 299 const char *name; member 453 for (int i = 0; error_codes[i].name != NULL; i++) { in add_error_constants() 454 const char *name = error_codes[i].name; in add_error_constants() local [all...] |
/third_party/python/Modules/clinic/ |
H A D | _tkinter.c.h | 326 "createcommand($self, name, func, /)\n" 334 _tkinter_tkapp_createcommand_impl(TkappObject *self, const char *name, 341 const char *name; in _tkinter_tkapp_createcommand() local 352 name = PyUnicode_AsUTF8AndSize(args[0], &name_length); in _tkinter_tkapp_createcommand() 353 if (name == NULL) { in _tkinter_tkapp_createcommand() 356 if (strlen(name) != (size_t)name_length) { in _tkinter_tkapp_createcommand() 361 return_value = _tkinter_tkapp_createcommand_impl(self, name, func); in _tkinter_tkapp_createcommand() 368 "deletecommand($self, name, /)\n" 376 _tkinter_tkapp_deletecommand_impl(TkappObject *self, const char *name); 382 const char *name; in _tkinter_tkapp_deletecommand() local [all...] |
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/ |
H A D | raw_hash_set_probe_benchmark.cc | 241 constexpr char kStringFormat[] = "/path/to/file/name-%07d-of-9999999.txt"; 462 bool CanRunBenchmark(absl::string_view name) { in CanRunBenchmark() argument 468 return filter == nullptr || std::regex_search(std::string(name), *filter); in CanRunBenchmark() 472 std::string name; member 479 std::string name = absl::StrCat(Name<T>(), "/", Name<Dist>()); in RunForTypeAndDistribution() local 482 if (!CanRunBenchmark(absl::StrCat(name, "/min")) && in RunForTypeAndDistribution() 483 !CanRunBenchmark(absl::StrCat(name, "/avg")) && in RunForTypeAndDistribution() 484 !CanRunBenchmark(absl::StrCat(name, "/max"))) { in RunForTypeAndDistribution() 552 absl::PrintF("%-*s%-*s %8.4f %8.4f %8.4f\n", kNameWidth, result.name, in main() 563 std::string name in main() [all...] |
/third_party/skia/modules/svg/src/ |
H A D | SkSVGText.cpp | 534 bool SkSVGTextContainer::parseAndSetAttribute(const char* name, const char* value) { in parseAndSetAttribute() argument 535 return INHERITED::parseAndSetAttribute(name, value) || in parseAndSetAttribute() 536 this->setX(SkSVGAttributeParser::parse<std::vector<SkSVGLength>>("x", name, value)) || in parseAndSetAttribute() 537 this->setY(SkSVGAttributeParser::parse<std::vector<SkSVGLength>>("y", name, value)) || in parseAndSetAttribute() 538 this->setDx(SkSVGAttributeParser::parse<std::vector<SkSVGLength>>("dx", name, value)) || in parseAndSetAttribute() 539 this->setDy(SkSVGAttributeParser::parse<std::vector<SkSVGLength>>("dy", name, value)) || in parseAndSetAttribute() 541 name, in parseAndSetAttribute() 543 this->setXmlSpace(SkSVGAttributeParser::parse<SkSVGXmlSpace>("xml:space", name, value)); in parseAndSetAttribute() 661 bool SkSVGTextPath::parseAndSetAttribute(const char* name, const char* value) { in parseAndSetAttribute() argument 662 return INHERITED::parseAndSetAttribute(name, valu in parseAndSetAttribute() [all...] |
/third_party/skia/dm/ |
H A D | DMSrcSink.h | 91 virtual Name name() const = 0; 139 Name name() const override; 171 Name name() const override; 189 Name name() const override; 218 Name name() const override; 238 Name name() const override; 255 Name name() const override; 268 Name name() const override; 295 Name name() const override; 317 Name name() cons [all...] |
/third_party/vk-gl-cts/modules/gles3/performance/ |
H A D | es3pStateChangeCallTests.cpp | 54 StateChangeCallTest_ ## NAME (Context& context, const char* name, const char* description)\ 55 : gls::StateChangeCallPerformanceCase(context.getTestContext(), context.getRenderContext(), name, description)\ 77 StateChangeCallTest_ ## NAME (Context& context, const char* name, const char* description)\ 78 : gls::StateChangeCallPerformanceCase(context.getTestContext(), context.getRenderContext(), name, description)\ 102 StateChangeCallTest_ ## NAME (Context& context, const char* name, const char* description)\ 103 : gls::StateChangeCallPerformanceCase(context.getTestContext(), context.getRenderContext(), name, description)\ 129 StateChangeCallTest_ ## NAME (Context& context, const char* name, const char* description)\ 130 : gls::StateChangeCallPerformanceCase(context.getTestContext(), context.getRenderContext(), name, description)\ 158 StateChangeCallTest_ ## NAME (Context& context, const char* name, const char* description)\ 159 : gls::StateChangeCallPerformanceCase(context.getTestContext(), context.getRenderContext(), name, descriptio [all...] |
/third_party/vk-gl-cts/modules/gles31/functional/ |
H A D | es31fShaderHelperInvocationTests.cpp | 295 HelperInvocationValueCase (Context& context, const char* name, const char* description, PrimitiveType primType, int numSamples); 314 HelperInvocationValueCase::HelperInvocationValueCase (Context& context, const char* name, const char* description, PrimitiveType primType, int numSamples) in HelperInvocationValueCase() argument 315 : TestCase (context, name, description) in HelperInvocationValueCase() 452 HelperInvocationDerivateCase (Context& context, const char* name, const char* description, PrimitiveType primType, int numSamples, const char* derivateFunc, bool checkAbsoluteValue); 472 HelperInvocationDerivateCase::HelperInvocationDerivateCase (Context& context, const char* name, const char* description, PrimitiveType primType, int numSamples, const char* derivateFunc, bool checkAbsoluteValue) in HelperInvocationDerivateCase() argument 473 : TestCase (context, name, description) in HelperInvocationDerivateCase() 694 const string name = string(s_primTypes[primTypeNdx].caseName) + s_sampleCounts[sampleCountNdx].suffix; in init() local 698 valueGroup->addChild(new HelperInvocationValueCase(m_context, name.c_str(), "", primType, numSamples)); in init() 712 const string name = string(s_primTypes[primTypeNdx].caseName) + s_sampleCounts[sampleCountNdx].suffix; in init() local 716 derivateGroup->addChild(new HelperInvocationDerivateCase(m_context, (name in init() [all...] |
/third_party/curl/lib/ |
H A D | mime.c | 134 #define filesize(name, stat_data) (stat_data.st_size) 150 curl_off_t VmsRealFileSize(const char *name, in VmsRealFileSize() argument 158 file = fopen(name, FOPEN_READTEXT); /* VMS */ in VmsRealFileSize() 180 static curl_off_t VmsSpecialSize(const char *name, in VmsSpecialSize() argument 186 return VmsRealFileSize(name, stat_buf); in VmsSpecialSize() 193 #define filesize(name, stat_data) VmsSpecialSize(name, &stat_data) 1176 Curl_safefree(part->name); in Curl_mime_cleanpart() 1265 res = curl_mime_name(dst, src->name); in Curl_mime_duppart() 1339 /* Set mime part name 1340 curl_mime_name(curl_mimepart *part, const char *name) curl_mime_name() argument 1823 char *name = NULL; Curl_mime_prepare_headers() local 1939 curl_mime_name(curl_mimepart *part, const char *name) curl_mime_name() argument [all...] |
/third_party/libbpf/src/ |
H A D | btf_dump.c | 53 /* whether unique non-duplicate name was already assigned */ 91 /* per-type optional cached unique name, must be freed, if present */ 108 /* maps struct/union/enum name to a number of name occurrences */ 112 * name occurrences 243 /* any set cached name is owned by us and should be freed */ in btf_dump__free() 865 const char *name; in btf_dump_emit_bit_padding() member 896 pad_type = pads[i].name; in btf_dump_emit_bit_padding() 942 pad_type = pads[i].name; in btf_dump_emit_bit_padding() 1043 const char *name in btf_dump_emit_missing_aliases() local 1068 const char *name; btf_dump_emit_enum32_val() local 1093 const char *name; btf_dump_emit_enum64_val() local 1178 const char *name = btf_dump_type_name(d, id); btf_dump_emit_fwd_def() local 1189 const char *name = btf_dump_ident_name(d, id); btf_dump_emit_typedef_def() local 1408 btf_dump_emit_name(const struct btf_dump *d, const char *name, bool last_was_ptr) btf_dump_emit_name() argument 1431 const char *name; btf_dump_emit_type_chain() local [all...] |
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_print.c | 48 /** map from nir_variable -> printable name */ 332 fprintf(fp, " = %s", nir_op_infos[instr->op].name); in print_alu_instr() 355 return var->name ? var->name : "unnamed"; in get_var_name() 363 char *name; in get_var_name() local 364 if (var->name == NULL) { in get_var_name() 365 name = ralloc_asprintf(state->syms, "@%u", state->index++); in get_var_name() 367 struct set_entry *set_entry = _mesa_set_search(state->syms, var->name); in get_var_name() 369 /* we have a collision with another name, append an @ + a unique in get_var_name() 371 name in get_var_name() 886 const char *name; print_alu_type() local [all...] |
/third_party/node/deps/v8/src/interpreter/ |
H A D | bytecode-array-builder.cc | 356 #define DEFINE_BYTECODE_OUTPUT(name, ...) \ 358 BytecodeNode BytecodeArrayBuilder::Create##name##Node( \ 360 return BytecodeNodeBuilder<Bytecode::k##name, __VA_ARGS__>::Make( \ 365 void BytecodeArrayBuilder::Output##name(Operands... operands) { \ 366 BytecodeNode node(Create##name##Node(operands...)); \ 371 void BytecodeArrayBuilder::Output##name(BytecodeLabel* label, \ 373 DCHECK(Bytecodes::IsForwardJump(Bytecode::k##name)); \ 374 BytecodeNode node(Create##name##Node(operands...)); \ 720 BytecodeArrayBuilder& BytecodeArrayBuilder::LoadGlobal(const AstRawString* name, in LoadGlobal() argument 723 size_t name_index = GetConstantPoolEntry(name); in LoadGlobal() 739 StoreGlobal( const AstRawString* name, int feedback_slot) StoreGlobal() argument 776 LoadLookupSlot( const AstRawString* name, TypeofMode typeof_mode) LoadLookupSlot() argument 790 LoadLookupContextSlot( const AstRawString* name, TypeofMode typeof_mode, int slot_index, int depth) LoadLookupContextSlot() argument 805 LoadLookupGlobalSlot( const AstRawString* name, TypeofMode typeof_mode, int feedback_slot, int depth) LoadLookupGlobalSlot() argument 820 StoreLookupSlot( const AstRawString* name, LanguageMode language_mode, LookupHoistingMode lookup_hoisting_mode) StoreLookupSlot() argument 830 LoadNamedProperty( Register object, const AstRawString* name, int feedback_slot) LoadNamedProperty() argument 837 LoadNamedPropertyFromSuper( Register object, const AstRawString* name, int feedback_slot) LoadNamedPropertyFromSuper() argument 870 DefineKeyedOwnPropertyInLiteral( Register object, Register name, DefineKeyedOwnPropertyInLiteralFlags flags, int feedback_slot) DefineKeyedOwnPropertyInLiteral() argument 893 SetNamedProperty( Register object, const AstRawString* name, int feedback_slot, LanguageMode language_mode) SetNamedProperty() argument 900 DefineNamedOwnProperty( Register object, const AstRawString* name, int feedback_slot) DefineNamedOwnProperty() argument 1310 ThrowReferenceErrorIfHole( const AstRawString* name) ThrowReferenceErrorIfHole() argument [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/mesh_shader/ |
H A D | vktMeshShaderBuiltinTestsEXT.cpp | 469 MeshShaderBuiltinCase (tcu::TestContext& testCtx, const std::string& name, bool taskNeeded) in MeshShaderBuiltinCase() argument 470 : vkt::TestCase (testCtx, name) in MeshShaderBuiltinCase() 665 PrimitiveIdCase (tcu::TestContext& testCtx, const std::string& name, bool glslFrag) in PrimitiveIdCase() argument 666 : MeshShaderBuiltinCase (testCtx, name, false/*taskNeeded*/) in PrimitiveIdCase() 818 LayerCase (tcu::TestContext& testCtx, const std::string& name, bool writeVal, bool shareVertices) in LayerCase() argument 819 : MeshShaderBuiltinCase (testCtx, name, false/*taskNeeded*/) in LayerCase() 953 ViewportIndexCase (tcu::TestContext& testCtx, const std::string& name, bool writeVal, bool shareVertices) in ViewportIndexCase() argument 954 : MeshShaderBuiltinCase (testCtx, name, false/*taskNeeded*/) in ViewportIndexCase() 1095 PositionCase (tcu::TestContext& testCtx, const std::string& name) in PositionCase() argument 1096 : MeshShaderBuiltinCase (testCtx, name, fals in PositionCase() 1183 PointSizeCase(tcu::TestContext& testCtx, const std::string& name) PointSizeCase() argument 1264 ClipDistanceCase(tcu::TestContext& testCtx, const std::string& name) ClipDistanceCase() argument 1371 CullDistanceCase(tcu::TestContext& testCtx, const std::string& name) CullDistanceCase() argument 1512 WorkGroupIdCase(tcu::TestContext& testCtx, const std::string& name, bool taskNeeded) WorkGroupIdCase() argument 1615 LocalInvocationCase(tcu::TestContext& testCtx, const std::string& name, bool taskNeeded, LocalInvocation variable) LocalInvocationCase() argument 1732 NumWorkgroupsCase(tcu::TestContext& testCtx, const std::string& name, const tcu::Maybe<tcu::UVec3>& taskGroups, const tcu::UVec3& meshGroups) NumWorkgroupsCase() argument 1892 GlobalInvocationIdCase(tcu::TestContext& testCtx, const std::string& name, bool taskNeeded) GlobalInvocationIdCase() argument 2000 DrawIndexCase(tcu::TestContext& testCtx, const std::string& name, bool taskNeeded) DrawIndexCase() argument 2103 ViewIndexCase(tcu::TestContext& testCtx, const std::string& name) ViewIndexCase() argument 2230 PrimitiveShadingRateCase(tcu::TestContext& testCtx, const std::string& name, FragmentSize topSize, FragmentSize bottomSize) PrimitiveShadingRateCase() argument 2360 CullPrimitivesCase(tcu::TestContext& testCtx, const std::string& name) CullPrimitivesCase() argument [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/mesh_shader/ |
H A D | vktMeshShaderBuiltinTestsEXT.cpp | 469 MeshShaderBuiltinCase (tcu::TestContext& testCtx, const std::string& name, const std::string& description, bool taskNeeded) in MeshShaderBuiltinCase() argument 470 : vkt::TestCase (testCtx, name, description) in MeshShaderBuiltinCase() 665 PrimitiveIdCase (tcu::TestContext& testCtx, const std::string& name, const std::string& description, bool glslFrag) in PrimitiveIdCase() argument 666 : MeshShaderBuiltinCase (testCtx, name, description, false/*taskNeeded*/) in PrimitiveIdCase() 818 LayerCase (tcu::TestContext& testCtx, const std::string& name, const std::string& description, bool writeVal, bool shareVertices) in LayerCase() argument 819 : MeshShaderBuiltinCase (testCtx, name, description, false/*taskNeeded*/) in LayerCase() 953 ViewportIndexCase (tcu::TestContext& testCtx, const std::string& name, const std::string& description, bool writeVal, bool shareVertices) in ViewportIndexCase() argument 954 : MeshShaderBuiltinCase (testCtx, name, description, false/*taskNeeded*/) in ViewportIndexCase() 1095 PositionCase (tcu::TestContext& testCtx, const std::string& name, const std::string& description) in PositionCase() argument 1096 : MeshShaderBuiltinCase (testCtx, name, descriptio in PositionCase() 1183 PointSizeCase(tcu::TestContext& testCtx, const std::string& name, const std::string& description) PointSizeCase() argument 1264 ClipDistanceCase(tcu::TestContext& testCtx, const std::string& name, const std::string& description) ClipDistanceCase() argument 1371 CullDistanceCase(tcu::TestContext& testCtx, const std::string& name, const std::string& description) CullDistanceCase() argument 1512 WorkGroupIdCase(tcu::TestContext& testCtx, const std::string& name, const std::string& description, bool taskNeeded) WorkGroupIdCase() argument 1615 LocalInvocationCase(tcu::TestContext& testCtx, const std::string& name, const std::string& description, bool taskNeeded, LocalInvocation variable) LocalInvocationCase() argument 1732 NumWorkgroupsCase(tcu::TestContext& testCtx, const std::string& name, const std::string& description, const tcu::Maybe<tcu::UVec3>& taskGroups, const tcu::UVec3& meshGroups) NumWorkgroupsCase() argument 1892 GlobalInvocationIdCase(tcu::TestContext& testCtx, const std::string& name, const std::string& description, bool taskNeeded) GlobalInvocationIdCase() argument 2000 DrawIndexCase(tcu::TestContext& testCtx, const std::string& name, const std::string& description, bool taskNeeded) DrawIndexCase() argument 2103 ViewIndexCase(tcu::TestContext& testCtx, const std::string& name, const std::string& description) ViewIndexCase() argument 2230 PrimitiveShadingRateCase(tcu::TestContext& testCtx, const std::string& name, const std::string& description, FragmentSize topSize, FragmentSize bottomSize) PrimitiveShadingRateCase() argument 2360 CullPrimitivesCase(tcu::TestContext& testCtx, const std::string& name, const std::string& description) CullPrimitivesCase() argument [all...] |
/third_party/vk-gl-cts/modules/gles3/functional/ |
H A D | es3fFboRenderTest.cpp | 121 std::ostringstream name; in getName() local 124 name << getTypeName(colorType) << "_" << getFormatName(colorFormat); in getName() 127 name << "_depth"; in getName() 129 name << "_stencil"; in getName() 132 name << "_" << getTypeName(depthStencilType) << "_" << getFormatName(depthStencilFormat); in getName() 134 return name.str(); in getName() 151 deUint32 createTex2D (deUint32 name, GLenum format, int width, int height); 152 deUint32 createRbo (deUint32 name, GLenum format, int width, int height); 153 void destroyBuffer (deUint32 name, GLenum type); 193 static bool isExtensionSupported (sglr::Context& context, const char* name) in isExtensionSupported() argument 335 createTex2D(deUint32 name, GLenum format, int width, int height) createTex2D() argument 356 createRbo(deUint32 name, GLenum format, int width, int height) createRbo() argument 367 destroyBuffer(deUint32 name, GLenum type) destroyBuffer() argument 377 createMetaballsTex2D(sglr::Context& context, deUint32 name, GLenum format, GLenum dataType, int width, int height) createMetaballsTex2D() argument 389 createQuadsTex2D(sglr::Context& context, deUint32 name, GLenum format, GLenum dataType, int width, int height) createQuadsTex2D() argument 416 FboRenderCase(Context& context, const char* name, const char* description, const FboConfig& config) FboRenderCase() argument [all...] |
/third_party/pulseaudio/src/pulsecore/ |
H A D | source.c | 79 void pa_source_new_data_set_name(pa_source_new_data *data, const char *name) { in pa_source_new_data_set_name() argument 82 pa_xfree(data->name); in pa_source_new_data_set_name() 83 data->name = pa_xstrdup(name); in pa_source_new_data_set_name() 143 pa_xfree(data->name); in pa_source_new_data_done() 171 const char *name; in pa_source_new() local 177 pa_assert(data->name); in pa_source_new() 182 if (!(name = pa_namereg_register(core, data->name, PA_NAMEREG_SOURCE, s, data->namereg_fail))) { in pa_source_new() 183 pa_log_debug("Failed to register name in pa_source_new() 2677 pa_source_set_port(pa_source *s, const char *name, bool save) pa_source_set_port() argument [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | srtenc.c | 173 static void srt_font_name_cb(void *priv, const char *name) in srt_font_name_cb() argument 175 srt_stack_push_pop(priv, 'f', !name); in srt_font_name_cb() 176 if (name) in srt_font_name_cb() 177 srt_print(priv, "<font face=\"%s\">", name); in srt_font_name_cb() 297 .p.name = "srt", 311 .p.name = "subrip", 325 .p.name = "text",
|
/third_party/ffmpeg/libavfilter/ |
H A D | af_silencedetect.c | 120 #define SILENCE_DETECT(name, type) \ 121 static void silencedetect_##name(SilenceDetectContext *s, AVFrame *insamples, \ 134 #define SILENCE_DETECT_PLANAR(name, type) \ 135 static void silencedetect_##name(SilenceDetectContext *s, AVFrame *insamples, \ 249 .name = "default", 258 .name = "default", 264 .name = "silencedetect",
|
H A D | af_aphaser.c | 88 #define PHASER_PLANAR(name, type) \ 89 static void phaser_## name ##p(AudioPhaserContext *s, \ 124 #define PHASER(name, type) \ 125 static void phaser_## name (AudioPhaserContext *s, \ 244 .name = "default", 252 .name = "default", 259 .name = "aphaser",
|
/third_party/ffmpeg/libavformat/ |
H A D | libsmbclient.c | 252 } while (skip_entry || !strcmp(dirent->name, ".") || in libsmbc_read_dir() 253 !strcmp(dirent->name, "..")); in libsmbc_read_dir() 255 entry->name = av_strdup(dirent->name); in libsmbc_read_dir() 256 if (!entry->name) { in libsmbc_read_dir() 261 url = av_append_path_component(h->filename, dirent->name); in libsmbc_read_dir() 369 .name = "smb",
|
/third_party/ffmpeg/libavutil/ |
H A D | channel_layout.h | 259 char name[16]; member 337 * map[i].name may be filled with a 0-terminated string, in which case 389 * Return a channel layout id that matches name, or 0 if no match is found. 391 * name can be one or several of the following notations, 393 * - the name of an usual channel layout (mono, stereo, 4.0, quad, 5.0, 395 * - the name of a single channel (FL, FR, FC, LFE, BL, BR, FLC, FRC, BC, 408 uint64_t av_get_channel_layout(const char *name); 411 * Return a channel layout and the number of channels based on the specified name. 416 * @param[in] name channel layout specification string 424 int av_get_extended_channel_layout(const char *name, uint64_ [all...] |
/third_party/curl/tests/ |
H A D | testcurl.pl | 40 # testcurl.pl [options] [curl-daily-name] > output 50 # --name=[name] Set name to report as 57 # --setup=[file name] File name to read setup from (deprecated) 60 # if [curl-daily-name] is omitted, a 'curl' git directory is assumed. 75 use vars qw($name $email $desc $confopts $runtestopts $setupfile $mktarball 106 elsif ($ARGV[0] =~ /--name=/) { 107 $name [all...] |