Home
last modified time | relevance | path

Searched refs:args (Results 10276 - 10300 of 10533) sorted by relevance

1...<<411412413414415416417418419420>>...422

/third_party/node/deps/v8/tools/
H A Dll_prof.py880 options, args = parser.parse_args()
/third_party/node/deps/v8/src/heap/
H A Dfactory.h623 wasm::WasmValue* args, Handle<Map> map);
H A Dfactory.cc1689 wasm::WasmValue* args, in NewWasmStruct()
1700 args[i].Packed(type->field(i)).CopyTo(reinterpret_cast<byte*>(address)); in NewWasmStruct()
1703 TaggedField<Object>::store(result, offset, *args[i].to_ref()); in NewWasmStruct()
1688 NewWasmStruct(const wasm::StructType* type, wasm::WasmValue* args, Handle<Map> map) NewWasmStruct() argument
/third_party/opencl-headers/CL/
H A Dcl_icd.h621 void *args, size_t cb_args, cl_uint num_mem_objects, const cl_mem *mem_list,
/third_party/python/Lib/test/
H A Dtest_gc.py23 def __new__(cls, *args, **kwargs):
H A Dtest_ordered_dict.py37 OrderedDict([('a', 1), ('b', 2)], None) # too many args
45 # make sure no positional args conflict with possible kwdargs
69 OrderedDict().update([('a', 1), ('b', 2)], None) # too many args
475 def update(self, *args, **kwds):
H A Dtest_copy.py688 def state_setter(*args, **kwargs):
/third_party/python/Lib/logging/
H A Dhandlers.py640 # See issue #14436: If msg or args are objects, they may not be
641 # available on the receiving end. So we convert the msg % args
642 # to a string, save it as msg and zap the args.
645 d['args'] = None
1467 calling the handler's `format` method), and sets the `args`,
1477 # msg + args, as these might be unpickleable. We also zap the
1485 record.args = None
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/AsmParser/
H A DLLLexer.cpp775 KEYWORD(args); in LexIdentifier()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
H A DValueMapper.cpp946 for (Argument &A : F.args()) in remapFunction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
H A DAMDGPUAsmPrinter.cpp972 // dispatch registers are function args. in getSIProgramInfo()
974 for (auto &Arg : MF.getFunction().args()) { in getSIProgramInfo()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
H A DArgumentPromotion.cpp97 STATISTIC(NumArgumentsDead, "Number of dead pointer args eliminated");
897 for (Argument &I : F->args()) in promoteArguments()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
H A DDeadStoreElimination.cpp787 for (Argument &AI : BB.getParent()->args()) in handleEndBlock()
/third_party/protobuf/python/google/protobuf/internal/
H A Dpython_message.py483 if len(exc.args) == 1 and type(exc) is TypeError:
/third_party/rust/crates/clap/tests/builder/
H A Drequire.rs1031 .args(["g1", "g2"]) in require_eq_filtered_group()
/third_party/skia/third_party/externals/angle2/include/CL/
H A Dcl_icd.h621 void *args, size_t cb_args, cl_uint num_mem_objects, const cl_mem *mem_list,
/third_party/vk-gl-cts/framework/common/
H A DtcuCommandLine.cpp251 << Option<PipelineCompilerArgs> (DE_NULL, "deqp-pipeline-args", "Additional compiler parameters (Vulkan SC only)", "") in registerOptions()
1041 isOk = parse(parsedCmdLine->numArgs, parsedCmdLine->args); in parse()
/kernel/linux/linux-5.10/kernel/events/
H A Dcore.c10216 substring_t args[MAX_OPT_ARGS]; in perf_event_parse_addr_filter() local
10243 token = match_token(start, if_tokens, args); in perf_event_parse_addr_filter()
10265 *args[0].to = 0; in perf_event_parse_addr_filter()
10266 ret = kstrtoul(args[0].from, 0, &filter->offset); in perf_event_parse_addr_filter()
10271 *args[1].to = 0; in perf_event_parse_addr_filter()
10272 ret = kstrtoul(args[1].from, 0, &filter->size); in perf_event_parse_addr_filter()
10281 filename = match_strdup(&args[fpos]); in perf_event_parse_addr_filter()
/kernel/linux/linux-6.6/kernel/events/
H A Dcore.c10795 substring_t args[MAX_OPT_ARGS]; in perf_event_parse_addr_filter() local
10822 token = match_token(start, if_tokens, args); in perf_event_parse_addr_filter()
10844 *args[0].to = 0; in perf_event_parse_addr_filter()
10845 ret = kstrtoul(args[0].from, 0, &filter->offset); in perf_event_parse_addr_filter()
10850 *args[1].to = 0; in perf_event_parse_addr_filter()
10851 ret = kstrtoul(args[1].from, 0, &filter->size); in perf_event_parse_addr_filter()
10860 filename = match_strdup(&args[fpos]); in perf_event_parse_addr_filter()
/third_party/json/single_include/nlohmann/
H A Djson.hpp3206 inline constexpr std::array<T, sizeof...(Args)> make_array(Args&& ... args) in make_array() argument
3208 return std::array<T, sizeof...(Args)> {{static_cast<T>(std::forward<Args>(args))...}}; in make_array()
4277 inline OutStringType concat(Args && ... args) in concat() argument
4280 str.reserve(concat_length(std::forward<Args>(args)...)); in concat()
4281 concat_into(str, std::forward<Args>(args)...); in concat()
14715 json_ref(Args && ... args)
14716 : owned_value(std::forward<Args>(args)...)
19556 static T* create(Args&& ... args)
19566 AllocatorTraits::construct(alloc, obj.get(), std::forward<Args>(args)...);
22379 reference emplace_back(Args&& ... args)
[all...]
/third_party/node/src/
H A Djs_native_api_v8.cc1236 Reference::Reference(JSVM_Env env, v8::Local<v8::Value> value, Args&&... args) in Reference() argument
1237 : RefBase(env, std::forward<Args>(args)...), in Reference()
1711 v8::Local<v8::Value> args[] = { error, trace, sourceMapObject.ToLocalChecked() }; in PrepareStackTraceCallback() local
1712 return resultFunc->Call(moduleContext, v8::Undefined(isolate), node::arraysize(args), args); in PrepareStackTraceCallback()
3272 // and receives the actual count of args.
/third_party/python/Modules/
H A Dposixmodule.c1092 * PyArg_ParseTuple(args, "O&", path_converter, &path);
2294 statresult_new(PyTypeObject *type, PyObject *args, PyObject *kwds) in statresult_new() argument
2299 result = (PyStructSequence*)structseq_new(type, args, kwds); in statresult_new()
14356 ScandirIterator_close(ScandirIterator *self, PyObject *args) in ScandirIterator_close() argument
14363 ScandirIterator_enter(PyObject *self, PyObject *args) in ScandirIterator_enter() argument
14370 ScandirIterator_exit(ScandirIterator *self, PyObject *args) in ScandirIterator_exit() argument
/third_party/vk-gl-cts/modules/gles31/functional/
H A Des31fGeometryShaderTests.cpp122 std::map<std::string, std::string> args; in specializeShader() local
123 args["GLSL_VERSION_DECL"] = glu::getGLSLVersionDeclaration(glu::getContextTypeGLSLVersion(contextType)); in specializeShader()
124 args["GLSL_EXT_GEOMETRY_SHADER"] = supportsES32orGL45 ? "" : "#extension GL_EXT_geometry_shader : require\n"; in specializeShader()
125 args["GLSL_OES_TEXTURE_STORAGE_MULTISAMPLE"]= supportsES32orGL45 ? "" : "#extension GL_OES_texture_storage_multisample_2d_array : require\n"; in specializeShader()
127 return tcu::StringTemplate(shaderSource).specialize(args); in specializeShader()
/kernel/linux/linux-5.10/drivers/staging/rtl8723bs/os_dep/
H A Dioctl_linux.c4818 static int get_priv_size(__u16 args) in get_priv_size() argument
4820 int num = args & IW_PRIV_SIZE_MASK; in get_priv_size()
4821 int type = (args & IW_PRIV_TYPE_MASK) >> 12; in get_priv_size()
4936 /* Fetch args */ in rtw_ioctl_wext_private()
4946 /* Number of args to fetch */ in rtw_ioctl_wext_private()
4954 /* Fetch args */ in rtw_ioctl_wext_private()
4964 /* Number of args to fetch */ in rtw_ioctl_wext_private()
5000 } else { /* if args to set */ in rtw_ioctl_wext_private()
5008 /* First case : all SET args fit within wrq */ in rtw_ioctl_wext_private()
5016 /* Second case : no SET args, GE in rtw_ioctl_wext_private()
[all...]
/third_party/node/deps/v8/src/compiler/
H A Dpipeline.cc681 void Run(Args&&... args);
1278 void PipelineImpl::Run(Args&&... args) { in Run() argument
1286 phase.Run(this->data_, scope.zone(), std::forward<Args>(args)...); in Run()

Completed in 152 milliseconds

1...<<411412413414415416417418419420>>...422