/kernel/linux/linux-5.10/fs/fuse/ |
H A D | xattr.c | 18 FUSE_ARGS(args); in fuse_setxattr() 28 args.opcode = FUSE_SETXATTR; in fuse_setxattr() 29 args.nodeid = get_node_id(inode); in fuse_setxattr() 30 args.in_numargs = 3; in fuse_setxattr() 31 args.in_args[0].size = sizeof(inarg); in fuse_setxattr() 32 args.in_args[0].value = &inarg; in fuse_setxattr() 33 args.in_args[1].size = strlen(name) + 1; in fuse_setxattr() 34 args.in_args[1].value = name; in fuse_setxattr() 35 args.in_args[2].size = size; in fuse_setxattr() 36 args in fuse_setxattr() [all...] |
/kernel/linux/linux-5.10/drivers/gpu/drm/ |
H A D | drm_dumb_buffers.c | 59 struct drm_mode_create_dumb *args, in drm_mode_create_dumb() 66 if (!args->width || !args->height || !args->bpp) in drm_mode_create_dumb() 70 if (args->bpp > U32_MAX - 8) in drm_mode_create_dumb() 72 cpp = DIV_ROUND_UP(args->bpp, 8); in drm_mode_create_dumb() 73 if (cpp > U32_MAX / args->width) in drm_mode_create_dumb() 75 stride = cpp * args->width; in drm_mode_create_dumb() 76 if (args->height > U32_MAX / stride) in drm_mode_create_dumb() 80 size = args in drm_mode_create_dumb() 58 drm_mode_create_dumb(struct drm_device *dev, struct drm_mode_create_dumb *args, struct drm_file *file_priv) drm_mode_create_dumb() argument 120 struct drm_mode_map_dumb *args = data; drm_mode_mmap_dumb_ioctl() local 149 struct drm_mode_destroy_dumb *args = data; drm_mode_destroy_dumb_ioctl() local [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/ |
H A D | drm_dumb_buffers.c | 61 struct drm_mode_create_dumb *args, in drm_mode_create_dumb() 68 if (!args->width || !args->height || !args->bpp) in drm_mode_create_dumb() 72 if (args->bpp > U32_MAX - 8) in drm_mode_create_dumb() 74 cpp = DIV_ROUND_UP(args->bpp, 8); in drm_mode_create_dumb() 75 if (cpp > U32_MAX / args->width) in drm_mode_create_dumb() 77 stride = cpp * args->width; in drm_mode_create_dumb() 78 if (args->height > U32_MAX / stride) in drm_mode_create_dumb() 82 size = args in drm_mode_create_dumb() 60 drm_mode_create_dumb(struct drm_device *dev, struct drm_mode_create_dumb *args, struct drm_file *file_priv) drm_mode_create_dumb() argument 122 struct drm_mode_map_dumb *args = data; drm_mode_mmap_dumb_ioctl() local 148 struct drm_mode_destroy_dumb *args = data; drm_mode_destroy_dumb_ioctl() local [all...] |
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/amdgpu/ |
H A D | amdgpu_gem.c | 209 union drm_amdgpu_gem_create *args = data; in amdgpu_gem_create_ioctl() local 210 uint64_t flags = args->in.domain_flags; in amdgpu_gem_create_ioctl() 211 uint64_t size = args->in.bo_size; in amdgpu_gem_create_ioctl() 229 if (args->in.domains & ~AMDGPU_GEM_DOMAIN_MASK) in amdgpu_gem_create_ioctl() 238 if (args->in.domains & (AMDGPU_GEM_DOMAIN_GDS | in amdgpu_gem_create_ioctl() 259 initial_domain = (u32)(0xffffffff & args->in.domains); in amdgpu_gem_create_ioctl() 260 r = amdgpu_gem_object_create(adev, size, args->in.alignment, in amdgpu_gem_create_ioctl() 275 size, initial_domain, args->in.alignment, r); in amdgpu_gem_create_ioctl() 297 memset(args, 0, sizeof(*args)); in amdgpu_gem_create_ioctl() 307 struct drm_amdgpu_gem_userptr *args = data; amdgpu_gem_userptr_ioctl() local 405 union drm_amdgpu_gem_mmap *args = data; amdgpu_gem_mmap_ioctl() local 442 union drm_amdgpu_gem_wait_idle *args = data; amdgpu_gem_wait_idle_ioctl() local 475 struct drm_amdgpu_gem_metadata *args = data; amdgpu_gem_metadata_ioctl() local 591 struct drm_amdgpu_gem_va *args = data; amdgpu_gem_va_ioctl() local 728 struct drm_amdgpu_gem_op *args = data; amdgpu_gem_op_ioctl() local 800 amdgpu_mode_dumb_create(struct drm_file *file_priv, struct drm_device *dev, struct drm_mode_create_dumb *args) amdgpu_mode_dumb_create() argument [all...] |
/third_party/vulkan-loader/scripts/ |
H A D | loader_genvk.py | 47 # args is an parsed argument object; see below for the fields that are used. 48 def makeGenOpts(args): 53 apiname = args.api 56 if args.defaultExtensions is not None: 57 defaultExtensions = args.defaultExtensions 62 extensions = args.extension 65 removeExtensions = args.removeExtensions 68 emitExtensions = args.emitExtensions 71 features = args.feature 74 protect = args 354 args = parser.parse_args() global() variable [all...] |
/third_party/vk-gl-cts/framework/qphelper/ |
H A D | gen_release_info.py | 78 args = parser.parse_args() 80 if (args.releaseName == None) != (args.releaseId == None): 85 if (args.releaseName != None) == args.git: 90 return args 100 args = parseArgs() variable 102 if args.git: 103 gitDir = args.gitDir if args [all...] |
H A D | qpDebugOut.c | 44 static void printFmt (MessageType type, const char* fmt, va_list args); 60 va_list args; in qpPrintf() local 61 va_start(args, format); in qpPrintf() 62 printFmt(MESSAGETYPE_INFO, format, args); in qpPrintf() 63 va_end(args); in qpPrintf() 68 va_list args; in qpPrintErrorf() local 69 va_start(args, format); in qpPrintErrorf() 70 printFmt(MESSAGETYPE_NONFATAL_ERROR, format, args); in qpPrintErrorf() 71 va_end(args); in qpPrintErrorf() 74 void qpPrintv (const char* format, va_list args) in qpPrintv() argument 79 qpPrintErrorv(const char* format, va_list args) qpPrintErrorv() argument 86 va_list args; qpDief() local 94 qpDiev(const char* format, va_list args) qpDiev() argument 123 printFmt(MessageType type, const char* format, va_list args) printFmt() argument 160 printFmt(MessageType type, const char* format, va_list args) printFmt() argument [all...] |
/third_party/libwebsockets/lib/jose/jws/ |
H A D | jose.c | 161 struct jose_cb_args *args = (struct jose_cb_args *)ctx->user; in lws_jws_jose_cb() local 171 if (args->is_jwe && !strncmp(ctx->path, "epk.", 4)) { in lws_jws_jose_cb() 172 memcpy(args->jwk_jctx.path, ctx->path + 4, in lws_jws_jose_cb() 174 memcpy(args->jwk_jctx.buf, ctx->buf, ctx->npos); in lws_jws_jose_cb() 175 args->jwk_jctx.npos = ctx->npos; in lws_jws_jose_cb() 178 args->jwk_jctx.path_match = 0; in lws_jws_jose_cb() 179 lejp_check_path_match(&args->jwk_jctx); in lws_jws_jose_cb() 181 if (args->jwk_jctx.path_match) in lws_jws_jose_cb() 182 args->jwk_jctx.pst[args in lws_jws_jose_cb() 412 struct jose_cb_args args; lws_jose_parse() local [all...] |
/third_party/python/Modules/clinic/ |
H A D | binascii.c.h | 49 binascii_b2a_uu(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) in binascii_b2a_uu() argument 59 args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 1, 1, 0, argsbuf); in binascii_b2a_uu() 60 if (!args) { in binascii_b2a_uu() 63 if (PyObject_GetBuffer(args[0], &data, PyBUF_SIMPLE) != 0) { in binascii_b2a_uu() 67 _PyArg_BadArgument("b2a_uu", "argument 1", "contiguous buffer", args[0]); in binascii_b2a_uu() 73 backtick = _PyLong_AsInt(args[1]); in binascii_b2a_uu() 106 binascii_a2b_base64(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) in binascii_a2b_base64() argument 116 args = _PyArg_UnpackKeywords(args, narg in binascii_a2b_base64() 154 binascii_b2a_base64(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) binascii_b2a_base64() argument 207 binascii_crc_hqx(PyObject *module, PyObject *const *args, Py_ssize_t nargs) binascii_crc_hqx() argument 251 binascii_crc32(PyObject *module, PyObject *const *args, Py_ssize_t nargs) binascii_crc32() argument 322 binascii_b2a_hex(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) binascii_b2a_hex() argument 392 binascii_hexlify(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) binascii_hexlify() argument 519 binascii_a2b_qp(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) binascii_a2b_qp() argument 572 binascii_b2a_qp(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) binascii_b2a_qp() argument [all...] |
H A D | _pickle.c.h | 106 _pickle_Pickler___init__(PyObject *self, PyObject *args, PyObject *kwargs) in _pickle_Pickler___init__() argument 113 Py_ssize_t nargs = PyTuple_GET_SIZE(args); in _pickle_Pickler___init__() 120 fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 1, 4, 0, argsbuf); in _pickle_Pickler___init__() 249 _pickle_Unpickler_find_class(UnpicklerObject *self, PyObject *const *args, Py_ssize_t nargs) in _pickle_Unpickler_find_class() argument 258 module_name = args[0]; in _pickle_Unpickler_find_class() 259 global_name = args[1]; in _pickle_Unpickler_find_class() 326 _pickle_Unpickler___init__(PyObject *self, PyObject *args, PyObject *kwargs) in _pickle_Unpickler___init__() argument 333 Py_ssize_t nargs = PyTuple_GET_SIZE(args); in _pickle_Unpickler___init__() 341 fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 1, 1, 0, argsbuf); in _pickle_Unpickler___init__() 497 _pickle_dump(PyObject *module, PyObject *const *args, Py_ssize_ argument 578 _pickle_dumps(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) _pickle_dumps() argument 663 _pickle_load(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) _pickle_load() argument 766 _pickle_loads(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) _pickle_loads() argument [all...] |
H A D | mathmodule.c.h | 121 math_ldexp(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in math_ldexp() argument 130 if (PyFloat_CheckExact(args[0])) { in math_ldexp() 131 x = PyFloat_AS_DOUBLE(args[0]); in math_ldexp() 135 x = PyFloat_AsDouble(args[0]); in math_ldexp() 140 i = args[1]; in math_ldexp() 197 math_log(PyObject *module, PyObject *args) in math_log() argument 204 switch (PyTuple_GET_SIZE(args)) { in math_log() 206 if (!PyArg_ParseTuple(args, "O:log", &x)) { in math_log() 211 if (!PyArg_ParseTuple(args, "OO:log", &x, &base)) { in math_log() 259 math_fmod(PyObject *module, PyObject *const *args, Py_ssize_ argument 313 math_dist(PyObject *module, PyObject *const *args, Py_ssize_t nargs) math_dist() argument 343 math_pow(PyObject *module, PyObject *const *args, Py_ssize_t nargs) math_pow() argument 578 math_isclose(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) math_isclose() argument 673 math_prod(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) math_prod() argument 721 math_perm(PyObject *module, PyObject *const *args, Py_ssize_t nargs) math_perm() argument 765 math_comb(PyObject *module, PyObject *const *args, Py_ssize_t nargs) math_comb() argument 795 math_nextafter(PyObject *module, PyObject *const *args, Py_ssize_t nargs) math_nextafter() argument [all...] |
H A D | _bisectmodule.c.h | 15 "Optional args lo (default 0) and hi (default len(a)) bound the\n" 26 _bisect_bisect_right(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) in _bisect_bisect_right() argument 40 args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 2, 4, 0, argsbuf); in _bisect_bisect_right() 41 if (!args) { in _bisect_bisect_right() 44 a = args[0]; in _bisect_bisect_right() 45 x = args[1]; in _bisect_bisect_right() 49 if (args[2]) { in _bisect_bisect_right() 52 PyObject *iobj = _PyNumber_Index(args[2]); in _bisect_bisect_right() 66 if (args[ in _bisect_bisect_right() 109 _bisect_insort_right(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) _bisect_insort_right() argument 189 _bisect_bisect_left(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) _bisect_bisect_left() argument 272 _bisect_insort_left(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) _bisect_insort_left() argument [all...] |
/third_party/node/src/ |
H A D | node_buffer.cc | 524 void CreateFromString(const FunctionCallbackInfo<Value>& args) { in CreateFromString() argument 525 CHECK(args[0]->IsString()); in CreateFromString() 526 CHECK(args[1]->IsInt32()); in CreateFromString() 528 enum encoding enc = static_cast<enum encoding>(args[1].As<Int32>()->Value()); in CreateFromString() 530 if (New(args.GetIsolate(), args[0].As<String>(), enc).ToLocal(&buf)) in CreateFromString() 531 args.GetReturnValue().Set(buf); in CreateFromString() 536 void StringSlice(const FunctionCallbackInfo<Value>& args) { in StringSlice() argument 537 Environment* env = Environment::GetCurrent(args); in StringSlice() 540 THROW_AND_RETURN_UNLESS_BUFFER(env, args in StringSlice() 571 DecodeUTF8(const FunctionCallbackInfo<Value>& args) DecodeUTF8() argument 625 Copy(const FunctionCallbackInfo<Value> &args) Copy() argument 663 Fill(const FunctionCallbackInfo<Value>& args) Fill() argument 757 StringWrite(const FunctionCallbackInfo<Value>& args) StringWrite() argument 789 ByteLengthUtf8(const FunctionCallbackInfo<Value> &args) ByteLengthUtf8() argument 814 CompareOffset(const FunctionCallbackInfo<Value> &args) CompareOffset() argument 858 Compare(const FunctionCallbackInfo<Value> &args) Compare() argument 911 IndexOfString(const FunctionCallbackInfo<Value>& args) IndexOfString() argument 1029 IndexOfBuffer(const FunctionCallbackInfo<Value>& args) IndexOfBuffer() argument 1037 THROW_AND_RETURN_UNLESS_BUFFER(Environment::GetCurrent(args), args[0]); IndexOfBuffer() local 1038 THROW_AND_RETURN_UNLESS_BUFFER(Environment::GetCurrent(args), args[1]); IndexOfBuffer() local 1102 IndexOfNumber(const FunctionCallbackInfo<Value>& args) IndexOfNumber() argument 1107 THROW_AND_RETURN_UNLESS_BUFFER(Environment::GetCurrent(args), args[0]); IndexOfNumber() local 1134 Swap16(const FunctionCallbackInfo<Value>& args) Swap16() argument 1143 Swap32(const FunctionCallbackInfo<Value>& args) Swap32() argument 1152 Swap64(const FunctionCallbackInfo<Value>& args) Swap64() argument 1163 EncodeUtf8String(const FunctionCallbackInfo<Value>& args) EncodeUtf8String() argument 1194 EncodeInto(const FunctionCallbackInfo<Value>& args) EncodeInto() argument 1226 IsUtf8(const FunctionCallbackInfo<Value>& args) IsUtf8() argument 1241 IsAscii(const FunctionCallbackInfo<Value>& args) IsAscii() argument 1256 SetBufferPrototype(const FunctionCallbackInfo<Value>& args) SetBufferPrototype() argument 1264 GetZeroFillToggle(const FunctionCallbackInfo<Value>& args) GetZeroFillToggle() argument 1293 DetachArrayBuffer(const FunctionCallbackInfo<Value>& args) DetachArrayBuffer() argument 1326 CopyArrayBuffer(const FunctionCallbackInfo<Value>& args) CopyArrayBuffer() argument [all...] |
/kernel/linux/linux-5.10/drivers/media/usb/dvb-usb/ |
H A D | dvb-usb-common.h | 18 #define deb_info(args...) dprintk(dvb_usb_debug,0x001,args) 19 #define deb_xfer(args...) dprintk(dvb_usb_debug,0x002,args) 20 #define deb_pll(args...) dprintk(dvb_usb_debug,0x004,args) 21 #define deb_ts(args...) dprintk(dvb_usb_debug,0x008,args) 22 #define deb_err(args...) dprintk(dvb_usb_debug,0x010,args) [all...] |
/kernel/linux/linux-6.6/drivers/media/usb/dvb-usb/ |
H A D | dvb-usb-common.h | 18 #define deb_info(args...) dprintk(dvb_usb_debug,0x001,args) 19 #define deb_xfer(args...) dprintk(dvb_usb_debug,0x002,args) 20 #define deb_pll(args...) dprintk(dvb_usb_debug,0x004,args) 21 #define deb_ts(args...) dprintk(dvb_usb_debug,0x008,args) 22 #define deb_err(args...) dprintk(dvb_usb_debug,0x010,args) [all...] |
/third_party/node/deps/v8/src/d8/ |
H A D | d8-posix.cc | 213 static bool GetTimeouts(const v8::FunctionCallbackInfo<v8::Value>& args, in GetTimeouts() argument 215 if (args.Length() > 3) { in GetTimeouts() 216 if (args[3]->IsNumber()) { in GetTimeouts() 217 *total_timeout = args[3] in GetTimeouts() 218 ->Int32Value(args.GetIsolate()->GetCurrentContext()) in GetTimeouts() 221 args.GetIsolate()->ThrowError("system: Argument 4 must be a number"); in GetTimeouts() 225 if (args.Length() > 2) { in GetTimeouts() 226 if (args[2]->IsNumber()) { in GetTimeouts() 227 *read_timeout = args[2] in GetTimeouts() 228 ->Int32Value(args in GetTimeouts() 414 System(const v8::FunctionCallbackInfo<v8::Value>& args) System() argument 489 ChangeDirectory(const v8::FunctionCallbackInfo<v8::Value>& args) ChangeDirectory() argument 506 SetUMask(const v8::FunctionCallbackInfo<v8::Value>& args) SetUMask() argument 563 MakeDirectory(const v8::FunctionCallbackInfo<v8::Value>& args) MakeDirectory() argument 587 RemoveDirectory(const v8::FunctionCallbackInfo<v8::Value>& args) RemoveDirectory() argument 601 SetEnvironment(const v8::FunctionCallbackInfo<v8::Value>& args) SetEnvironment() argument 621 UnsetEnvironment(const v8::FunctionCallbackInfo<v8::Value>& args) UnsetEnvironment() argument [all...] |
/foundation/arkui/ace_engine_lite/frameworks/src/core/components/ |
H A D | canvas_component.h | 73 const jerry_value_t args[], 78 const jerry_value_t args[], 83 const jerry_value_t args[], 88 const jerry_value_t args[], 93 const jerry_value_t args[], 98 const jerry_value_t args[], 103 const jerry_value_t args[], 108 const jerry_value_t args[], 113 const jerry_value_t args[], 118 const jerry_value_t args[], [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/nouveau/ |
H A D | nouveau_chan.c | 149 struct nv_dma_v0 args = {}; in nouveau_channel_prep() local 208 args.target = NV_DMA_V0_TARGET_VM; in nouveau_channel_prep() 209 args.access = NV_DMA_V0_ACCESS_VM; in nouveau_channel_prep() 210 args.start = 0; in nouveau_channel_prep() 211 args.limit = chan->vmm->vmm.limit - 1; in nouveau_channel_prep() 219 args.target = NV_DMA_V0_TARGET_PCI; in nouveau_channel_prep() 220 args.access = NV_DMA_V0_ACCESS_RDWR; in nouveau_channel_prep() 221 args.start = nvxx_device(device)->func-> in nouveau_channel_prep() 223 args.limit = args in nouveau_channel_prep() 281 } args; nouveau_channel_ctor() local 368 struct nv_dma_v0 args = {}; nouveau_channel_init() local 379 } args; nouveau_channel_init() local 537 } args = { nouveau_channels_init() local [all...] |
/test/xts/acts/commonlibrary/thirdparty/musl/entry/src/main/cpp/ |
H A D | complexndk.cpp | 33 napi_value args[2] = {nullptr, nullptr};
in CReal() local 34 napi_get_cb_info(env, info, &argc, args, nullptr, nullptr);
in CReal() 36 napi_get_value_double(env, args[INDEX0], &firstParam);
in CReal() 37 napi_get_value_double(env, args[INDEX1], &secondParam);
in CReal() 48 napi_value args[2] = {nullptr, nullptr};
in CRealF() local 49 napi_get_cb_info(env, info, &argc, args, nullptr, nullptr);
in CRealF() 51 napi_get_value_double(env, args[INDEX0], &firstParam);
in CRealF() 52 napi_get_value_double(env, args[INDEX1], &secondParam);
in CRealF() 66 napi_value args[2] = {nullptr, nullptr};
in CRealL() local 67 napi_get_cb_info(env, info, &argc, args, nullpt in CRealL() 81 napi_value args[2] = {nullptr, nullptr}; Conj() local 106 napi_value args[2] = {nullptr, nullptr}; ConjF() local 134 napi_value args[2] = {nullptr, nullptr}; ConjL() local 159 napi_value args[4] = {nullptr, nullptr, nullptr, nullptr}; CPow() local 186 napi_value args[4] = {nullptr, nullptr, nullptr, nullptr}; CPowF() local 215 napi_value args[4] = {nullptr, nullptr, nullptr, nullptr}; CPowL() local 242 napi_value args[2] = {nullptr, nullptr}; CProj() local 267 napi_value args[2] = {nullptr, nullptr}; CProjF() local 295 napi_value args[2] = {nullptr, nullptr}; CProjL() local 320 napi_value args[2] = {nullptr, nullptr}; CSin() local 345 napi_value args[2] = {nullptr, nullptr}; CSinF() local 370 napi_value args[2] = {nullptr, nullptr}; CSinL() local 395 napi_value args[2] = {nullptr, nullptr}; CSinH() local 420 napi_value args[2] = {nullptr, nullptr}; CSinHf() local 445 napi_value args[2] = {nullptr, nullptr}; CSinHl() local 470 napi_value args[2] = {nullptr, nullptr}; CSqrt() local 495 napi_value args[2] = {nullptr, nullptr}; CSqrtF() local 520 napi_value args[2] = {nullptr, nullptr}; CSqrtL() local 545 napi_value args[2] = {nullptr, nullptr}; CTan() local 570 napi_value args[2] = {nullptr, nullptr}; CTanF() local 595 napi_value args[2] = {nullptr, nullptr}; CTanL() local 620 napi_value args[2] = {nullptr, nullptr}; CTanH() local 645 napi_value args[2] = {nullptr, nullptr}; CTanHf() local 670 napi_value args[2] = {nullptr, nullptr}; CTanHl() local 695 napi_value args[2] = {nullptr, nullptr}; Cabs() local 710 napi_value args[2] = {nullptr, nullptr}; Cabsf() local 725 napi_value args[2] = {nullptr, nullptr}; Cabsl() local 740 napi_value args[2] = {nullptr}; Cacos() local 766 napi_value args[2] = {nullptr}; Cacosl() local 792 napi_value args[2] = {nullptr}; Cacosf() local 818 napi_value args[2] = {nullptr}; Cacosh() local 844 napi_value args[2] = {nullptr}; Cacoshf() local 870 napi_value args[2] = {nullptr}; Cacoshl() local 896 napi_value args[2] = {nullptr}; Carg() local 915 napi_value args[2] = {nullptr}; Cargl() local 934 napi_value args[2] = {nullptr}; Cargf() local 953 napi_value args[2] = {nullptr}; Casin() local 979 napi_value args[2] = {nullptr}; Casinl() local 1005 napi_value args[2] = {nullptr}; Casinf() local 1031 napi_value args[2] = {nullptr}; Casinh() local 1057 napi_value args[2] = {nullptr}; Casinhf() local 1083 napi_value args[2] = {nullptr}; Casinhl() local 1109 napi_value args[2] = {nullptr}; Catan() local 1135 napi_value args[2] = {nullptr}; Catanl() local 1161 napi_value args[2] = {nullptr}; Catanf() local 1187 napi_value args[2] = {nullptr}; Catanh() local 1213 napi_value args[2] = {nullptr}; Catanhf() local 1239 napi_value args[2] = {nullptr}; Catanhl() local 1265 napi_value args[2] = {nullptr}; Ccos() local 1291 napi_value args[2] = {nullptr}; Ccosl() local 1317 napi_value args[2] = {nullptr}; Ccosf() local 1343 napi_value args[2] = {nullptr}; Ccosh() local 1369 napi_value args[2] = {nullptr}; Ccoshf() local 1395 napi_value args[2] = {nullptr}; Ccoshl() local 1421 napi_value args[2] = {nullptr}; Cexp() local 1447 napi_value args[2] = {nullptr}; Cexpl() local 1473 napi_value args[2] = {nullptr}; Cexpf() local 1499 napi_value args[2] = {nullptr}; Clog() local 1525 napi_value args[2] = {nullptr}; Clogf() local 1551 napi_value args[2] = {nullptr}; Clogl() local 1577 napi_value args[2] = {nullptr}; Cimag() local 1592 napi_value args[2] = {nullptr}; Cimagf() local 1607 napi_value args[2] = {nullptr}; Cimagl() local [all...] |
/kernel/linux/linux-5.10/drivers/media/test-drivers/vidtv/ |
H A D | vidtv_psi.c | 165 static u32 vidtv_psi_ts_psi_write_into(struct psi_write_args *args) in vidtv_psi_ts_psi_write_into() argument 169 .bitfield = cpu_to_be16((args->new_psi_section << 14) | args->pid), in vidtv_psi_ts_psi_write_into() 174 u32 nbytes_past_boundary = (args->dest_offset % TS_PACKET_LEN); in vidtv_psi_ts_psi_write_into() 176 u32 remaining_len = args->len; in vidtv_psi_ts_psi_write_into() 181 if (!args->crc && !args->is_crc) in vidtv_psi_ts_psi_write_into() 184 if (args->crc) in vidtv_psi_ts_psi_write_into() 185 *args->crc = dvb_crc32(*args in vidtv_psi_ts_psi_write_into() 257 table_section_crc32_write_into(struct crc32_write_args *args) table_section_crc32_write_into() argument 672 vidtv_psi_desc_write_into(struct desc_write_args *args) vidtv_psi_desc_write_into() argument 792 vidtv_psi_table_header_write_into(struct header_write_args *args) vidtv_psi_table_header_write_into() argument 999 vidtv_psi_pat_write_into(struct vidtv_psi_pat_write_args *args) vidtv_psi_pat_write_into() argument 1197 vidtv_psi_pmt_write_into(struct vidtv_psi_pmt_write_args *args) vidtv_psi_pmt_write_into() argument 1345 vidtv_psi_sdt_write_into(struct vidtv_psi_sdt_write_args *args) vidtv_psi_sdt_write_into() argument 1686 vidtv_psi_nit_write_into(struct vidtv_psi_nit_write_args *args) vidtv_psi_nit_write_into() argument 1896 vidtv_psi_eit_write_into(struct vidtv_psi_eit_write_args *args) vidtv_psi_eit_write_into() argument [all...] |
/kernel/linux/linux-6.6/drivers/media/test-drivers/vidtv/ |
H A D | vidtv_psi.c | 158 static u32 vidtv_psi_ts_psi_write_into(struct psi_write_args *args) in vidtv_psi_ts_psi_write_into() argument 162 .bitfield = cpu_to_be16((args->new_psi_section << 14) | args->pid), in vidtv_psi_ts_psi_write_into() 167 u32 nbytes_past_boundary = (args->dest_offset % TS_PACKET_LEN); in vidtv_psi_ts_psi_write_into() 169 u32 remaining_len = args->len; in vidtv_psi_ts_psi_write_into() 174 if (!args->crc && !args->is_crc) in vidtv_psi_ts_psi_write_into() 177 if (args->crc) in vidtv_psi_ts_psi_write_into() 178 *args->crc = dvb_crc32(*args in vidtv_psi_ts_psi_write_into() 250 table_section_crc32_write_into(struct crc32_write_args *args) table_section_crc32_write_into() argument 664 vidtv_psi_desc_write_into(struct desc_write_args *args) vidtv_psi_desc_write_into() argument 784 vidtv_psi_table_header_write_into(struct header_write_args *args) vidtv_psi_table_header_write_into() argument 991 vidtv_psi_pat_write_into(struct vidtv_psi_pat_write_args *args) vidtv_psi_pat_write_into() argument 1189 vidtv_psi_pmt_write_into(struct vidtv_psi_pmt_write_args *args) vidtv_psi_pmt_write_into() argument 1337 vidtv_psi_sdt_write_into(struct vidtv_psi_sdt_write_args *args) vidtv_psi_sdt_write_into() argument 1678 vidtv_psi_nit_write_into(struct vidtv_psi_nit_write_args *args) vidtv_psi_nit_write_into() argument 1888 vidtv_psi_eit_write_into(struct vidtv_psi_eit_write_args *args) vidtv_psi_eit_write_into() argument [all...] |
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/ |
H A D | js_xcomponent.h | 148 static void JsOnLoad(const JSCallbackInfo& args); 149 static void JsOnDestroy(const JSCallbackInfo& args); 150 static void JsOnAppear(const JSCallbackInfo& args); 151 static void JsOnDisAppear(const JSCallbackInfo& args); 152 static void JsOnAttach(const JSCallbackInfo& args); 153 static void JsOnDetach(const JSCallbackInfo& args); 155 static void JsOnTouch(const JSCallbackInfo& args); 156 static void JsOnClick(const JSCallbackInfo& args); 157 static void JsOnKeyEvent(const JSCallbackInfo& args); 158 static void JsOnMouse(const JSCallbackInfo& args); [all...] |
/kernel/linux/linux-5.10/drivers/net/wireless/ath/wil6210/ |
H A D | debug.c | 13 va_list args; in __wil_err() local 15 va_start(args, fmt); in __wil_err() 17 vaf.va = &args; in __wil_err() 20 va_end(args); in __wil_err() 26 va_list args; in __wil_err_ratelimited() local 31 va_start(args, fmt); in __wil_err_ratelimited() 33 vaf.va = &args; in __wil_err_ratelimited() 36 va_end(args); in __wil_err_ratelimited() 42 va_list args; in wil_dbg_ratelimited() local 47 va_start(args, fm in wil_dbg_ratelimited() 58 va_list args; __wil_info() local 71 va_list args; wil_dbg_trace() local [all...] |
/kernel/linux/linux-6.6/drivers/net/wireless/ath/wil6210/ |
H A D | debug.c | 13 va_list args; in __wil_err() local 15 va_start(args, fmt); in __wil_err() 17 vaf.va = &args; in __wil_err() 20 va_end(args); in __wil_err() 26 va_list args; in __wil_err_ratelimited() local 31 va_start(args, fmt); in __wil_err_ratelimited() 33 vaf.va = &args; in __wil_err_ratelimited() 36 va_end(args); in __wil_err_ratelimited() 42 va_list args; in wil_dbg_ratelimited() local 47 va_start(args, fm in wil_dbg_ratelimited() 58 va_list args; __wil_info() local 71 va_list args; wil_dbg_trace() local [all...] |
/third_party/node/deps/v8/tools/clusterfuzz/foozzie/ |
H A D | v8_mock_archs.js | 23 construct: function(target, args) { 24 if (args[0] && typeof args[0] != "object") { 26 args[0] = min(maxLength, Number(args[0])); 27 } else if (args[0] instanceof ArrayBuffer && args.length > 1) { 29 const buffer = args[0]; 30 args[1] = Number(args[ [all...] |