/aosp_15_r20/external/mesa3d/src/compiler/nir/ |
H A D | nir_lower_printf.c | 161 unsigned arg_size; in nir_printf_fmt() local 163 case 'c': arg_size = 1; break; in nir_printf_fmt() 164 case 'd': arg_size = 4; break; in nir_printf_fmt() 165 case 'e': arg_size = 4; break; in nir_printf_fmt() 166 case 'E': arg_size = 4; break; in nir_printf_fmt() 167 case 'f': arg_size = 4; break; in nir_printf_fmt() 168 case 'F': arg_size = 4; break; in nir_printf_fmt() 169 case 'G': arg_size = 4; break; in nir_printf_fmt() 170 case 'a': arg_size = 4; break; in nir_printf_fmt() 171 case 'A': arg_size = 4; break; in nir_printf_fmt() [all …]
|
/aosp_15_r20/bionic/libc/bionic/ |
H A D | android_mallopt.cpp | 59 extern "C" bool android_mallopt(int opcode, void* arg, size_t arg_size) { in android_mallopt() argument 62 if (arg == nullptr || arg_size != sizeof(bool)) { in android_mallopt() 70 if (arg == nullptr || arg_size != sizeof(android_mallopt_gwp_asan_options_t)) { in android_mallopt() 78 if (arg == nullptr || arg_size != sizeof(bool)) { in android_mallopt() 86 return LimitEnable(arg, arg_size); in android_mallopt() 94 if (arg != nullptr || arg_size != 0) { in android_mallopt() 102 if (arg != nullptr || arg_size != 0) { in android_mallopt() 112 if (arg == nullptr || arg_size != sizeof(bool)) { in android_mallopt() 123 if (arg == nullptr || arg_size != sizeof(FILE*)) { in android_mallopt() 130 if (arg == nullptr || arg_size != sizeof(android_mallopt_leak_info_t)) { in android_mallopt() [all …]
|
/aosp_15_r20/external/bcc/src/cc/usdt/ |
H A D | usdt_args.cc | 33 const int s = arg_size() * 8; in ctype() 43 const int s = arg_size(); in ctype_name() 178 optional<int> *arg_size) { in parse_size() argument 181 new_pos = parse_number(pos, arg_size); in parse_size() 185 abs_arg_size = abs(arg_size->value()); in parse_size() 230 optional<int> arg_size; in parse() local 233 if (parse_size(cur_pos, new_pos, &arg_size) == false) in parse() 235 dest->arg_size_ = arg_size; in parse() 293 optional<int> *arg_size) { in parse_size() argument 296 new_pos = parse_number(pos, arg_size); in parse_size() [all …]
|
/aosp_15_r20/packages/modules/Bluetooth/tools/rootcanal/model/setup/ |
D | test_channel_transport.cc | 77 uint8_t arg_size = 0; in OnCommandReady() local 78 bytes_read = socket->Recv(&arg_size, 1); in OnCommandReady() 83 arg.resize(arg_size); in OnCommandReady() 84 bytes_read = socket->Recv(arg.data(), arg_size); in OnCommandReady() 85 if (bytes_read != arg_size) { in OnCommandReady() 86 INFO("Unexpected (arg) bytes_read: {} != {}, {}", bytes_read, arg_size, strerror(errno)); in OnCommandReady()
|
/aosp_15_r20/external/bcc/tests/cc/ |
H A D | test_usdt_args.cc | 25 static void verify_register(USDT::ArgumentParser &parser, int arg_size, in verify_register() argument 29 REQUIRE(arg.arg_size() == arg_size); in verify_register() 35 static void verify_register(USDT::ArgumentParser &parser, int arg_size, in verify_register() argument 43 REQUIRE(arg.arg_size() == arg_size); in verify_register()
|
/aosp_15_r20/external/cronet/base/trace_event/ |
H A D | trace_event_impl.cc | 164 for (size_t i = 0; i < arg_size(); ++i) { in EstimateTraceMemoryOverhead() 203 arg_size() > 0 && arg_name(0) && !argument_filter_predicate.is_null() && in AppendAsJSON() 212 for (size_t i = 0; i < arg_size() && arg_name(i); ++i) { in AppendAsJSON() 322 if (arg_size() > 0 && arg_name(0)) { in AppendPrettyPrinted() 324 for (size_t i = 0; i < arg_size() && arg_name(i); ++i) { in AppendPrettyPrinted()
|
/aosp_15_r20/external/mesa3d/src/gallium/frontends/rusticl/api/ |
H A D | kernel.rs | 343 arg_size: usize, in set_kernel_arg() 357 if arg_size == 0 { in set_kernel_arg() 366 if arg_size != std::mem::size_of::<cl_mem>() { in set_kernel_arg() 372 if arg_size != std::mem::size_of::<cl_sampler>() { in set_kernel_arg() 378 if size as usize != arg_size { in set_kernel_arg() 410 slice::from_raw_parts(arg_value.cast(), arg_size).to_vec(), in set_kernel_arg() 420 KernelArgType::MemLocal => KernelArgValue::LocalMem(arg_size), in set_kernel_arg()
|
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/IR/ |
H A D | AutoUpgrade.cpp | 540 if (Name.startswith("xop.vfrcz.ss") && F->arg_size() == 2) { in UpgradeX86IntrinsicFunction() 546 if (Name.startswith("xop.vfrcz.sd") && F->arg_size() == 2) { in UpgradeX86IntrinsicFunction() 726 if (F->arg_size() != 2) in UpgradeIntrinsicFunction1() 828 if (Name.startswith("ctlz.") && F->arg_size() == 1) { in UpgradeIntrinsicFunction1() 834 if (Name.startswith("cttz.") && F->arg_size() == 1) { in UpgradeIntrinsicFunction1() 843 if (Name == "dbg.value" && F->arg_size() == 4) { in UpgradeIntrinsicFunction1() 1009 if (Name.startswith("memcpy.") && F->arg_size() == 5) { in UpgradeIntrinsicFunction1() 1017 if (Name.startswith("memmove.") && F->arg_size() == 5) { in UpgradeIntrinsicFunction1() 1025 if (Name.startswith("memset.") && F->arg_size() == 5) { in UpgradeIntrinsicFunction1() 1049 if (IID != Intrinsic::not_intrinsic && F->arg_size() == 1) { in UpgradeIntrinsicFunction1() [all …]
|
H A D | AbstractCallSite.cpp | 49 if (CBCalleeIdx < CB.arg_size()) in getCallbackUses() 123 unsigned NumCallOperands = CB->arg_size(); in AbstractCallSite() 151 for (unsigned u = Callee->arg_size(); u < NumCallOperands; u++) in AbstractCallSite()
|
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/IR/ |
H A D | InstrTypes.h | 1349 unsigned arg_size() const { return arg_end() - arg_begin(); } 1352 assert(i < arg_size() && "Out of bounds!"); 1357 assert(i < arg_size() && "Out of bounds!"); 1363 assert(i < arg_size() && "Out of bounds!"); 1367 assert(i < arg_size() && "Out of bounds!"); 1537 assert(ArgNo < arg_size() && "Out of bounds"); 1543 assert(ArgNo < arg_size() && "Out of bounds"); 1579 assert(ArgNo < arg_size() && "Out of bounds"); 1585 assert(ArgNo < arg_size() && "Out of bounds"); 1642 assert(ArgNo < arg_size() && "Out of bounds"); [all …]
|
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/TableGen/ |
H A D | SetTheory.cpp | 49 if (Expr->arg_size() < 2) in apply() 65 if (Expr->arg_size() != 2) in apply() 84 if (Expr->arg_size() != 2) in apply() 180 if (Expr->arg_size() > 4) in apply() 183 else if (Expr->arg_size() == 4) { in apply()
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/llvm/IR/ |
D | InstrTypes.h | 1424 unsigned arg_size() const { return arg_end() - arg_begin(); } 1427 assert(i < arg_size() && "Out of bounds!"); 1432 assert(i < arg_size() && "Out of bounds!"); 1438 assert(i < arg_size() && "Out of bounds!"); 1442 assert(i < arg_size() && "Out of bounds!"); 1611 assert(ArgNo < arg_size() && "Out of bounds"); 1617 assert(ArgNo < arg_size() && "Out of bounds"); 1658 assert(ArgNo < arg_size() && "Out of bounds"); 1664 assert(ArgNo < arg_size() && "Out of bounds"); 1721 assert(ArgNo < arg_size() && "Out of bounds"); [all …]
|
/aosp_15_r20/external/llvm/lib/TableGen/ |
H A D | SetTheory.cpp | 40 if (Expr->arg_size() < 2) in apply() 56 if (Expr->arg_size() != 2) in apply() 75 if (Expr->arg_size() != 2) in apply() 171 if (Expr->arg_size() > 4) in apply() 174 else if (Expr->arg_size() == 4) { in apply()
|
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/TableGen/ |
H A D | SetTheory.cpp | 50 if (Expr->arg_size() < 2) in apply() 66 if (Expr->arg_size() != 2) in apply() 85 if (Expr->arg_size() != 2) in apply() 181 if (Expr->arg_size() > 4) in apply() 184 else if (Expr->arg_size() == 4) { in apply()
|
/aosp_15_r20/external/linux-kselftest/tools/testing/selftests/drivers/s390x/uvdevice/ |
H A D | test_uvdevice.c | 30 uint32_t arg_size; in FIXTURE_VARIANT() local 35 .arg_size = sizeof(struct uvio_attest), in FIXTURE_VARIANT_ADD() 43 self->uvio_ioctl.argument_len = variant->arg_size; in FIXTURE_SETUP() 106 self->uvio_ioctl.argument_len = variant->arg_size; in TEST_F()
|
/aosp_15_r20/external/swiftshader/third_party/SPIRV-Tools/source/fuzz/ |
H A D | transformation_permute_function_parameters.cpp | 59 auto arg_size = function_type->NumInOperands() - 1; in IsApplicable() local 62 if (static_cast<uint32_t>(permutation.size()) != arg_size) { in IsApplicable() 76 !fuzzerutil::IsPermutationOfRange(permutation, 0, arg_size - 1)) { in IsApplicable()
|
/aosp_15_r20/external/deqp-deps/SPIRV-Tools/source/fuzz/ |
D | transformation_permute_function_parameters.cpp | 59 auto arg_size = function_type->NumInOperands() - 1; in IsApplicable() local 62 if (static_cast<uint32_t>(permutation.size()) != arg_size) { in IsApplicable() 76 !fuzzerutil::IsPermutationOfRange(permutation, 0, arg_size - 1)) { in IsApplicable()
|
/aosp_15_r20/external/angle/third_party/spirv-tools/src/source/fuzz/ |
H A D | transformation_permute_function_parameters.cpp | 59 auto arg_size = function_type->NumInOperands() - 1; in IsApplicable() local 62 if (static_cast<uint32_t>(permutation.size()) != arg_size) { in IsApplicable() 76 !fuzzerutil::IsPermutationOfRange(permutation, 0, arg_size - 1)) { in IsApplicable()
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/llvm/IR/ |
D | InstrTypes.h | 1646 unsigned arg_size() const { return arg_end() - arg_begin(); } 1649 assert(i < arg_size() && "Out of bounds!"); 1654 assert(i < arg_size() && "Out of bounds!"); 1660 assert(i < arg_size() && "Out of bounds!"); 1664 assert(i < arg_size() && "Out of bounds!"); 1833 assert(ArgNo < arg_size() && "Out of bounds"); 1839 assert(ArgNo < arg_size() && "Out of bounds"); 1880 assert(ArgNo < arg_size() && "Out of bounds"); 1886 assert(ArgNo < arg_size() && "Out of bounds"); 1955 assert(ArgNo < arg_size() && "Out of bounds"); [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/llvm/IR/ |
D | InstrTypes.h | 1646 unsigned arg_size() const { return arg_end() - arg_begin(); } 1649 assert(i < arg_size() && "Out of bounds!"); 1654 assert(i < arg_size() && "Out of bounds!"); 1660 assert(i < arg_size() && "Out of bounds!"); 1664 assert(i < arg_size() && "Out of bounds!"); 1833 assert(ArgNo < arg_size() && "Out of bounds"); 1839 assert(ArgNo < arg_size() && "Out of bounds"); 1880 assert(ArgNo < arg_size() && "Out of bounds"); 1886 assert(ArgNo < arg_size() && "Out of bounds"); 1955 assert(ArgNo < arg_size() && "Out of bounds"); [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/llvm/IR/ |
D | InstrTypes.h | 1685 unsigned arg_size() const { return arg_end() - arg_begin(); } 1688 assert(i < arg_size() && "Out of bounds!"); 1693 assert(i < arg_size() && "Out of bounds!"); 1699 assert(i < arg_size() && "Out of bounds!"); 1703 assert(i < arg_size() && "Out of bounds!"); 1872 assert(ArgNo < arg_size() && "Out of bounds"); 1878 assert(ArgNo < arg_size() && "Out of bounds"); 1919 assert(ArgNo < arg_size() && "Out of bounds"); 1925 assert(ArgNo < arg_size() && "Out of bounds"); 1999 assert(ArgNo < arg_size() && "Out of bounds"); [all …]
|
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUPrintfRuntimeBinding.cpp | 173 unsigned NumOps = CI->arg_size(); in lowerPrintfForGpu() 211 Sizes << CI->arg_size() - 1; in lowerPrintfForGpu() 214 ArgCount < CI->arg_size() && ArgCount <= OpConvSpecifiers.size(); in lowerPrintfForGpu() 367 ArgCount < CI->arg_size() && ArgCount <= OpConvSpecifiers.size(); in lowerPrintfForGpu() 451 if (I + 1 == E && ArgCount + 1 == CI->arg_size()) in lowerPrintfForGpu()
|
/aosp_15_r20/external/llvm/include/llvm/IR/ |
H A D | Statepoint.h | 158 size_t arg_size() const { return getNumCallArgs(); } in arg_size() function 160 assert(CallArgsBeginPos <= (int)getCallSite().arg_size()); in arg_begin() 164 auto I = arg_begin() + arg_size(); in arg_end() 170 assert(Index < arg_size() && "out of bounds!"); in getArgument()
|
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
H A D | Statepoint.h | 169 size_t arg_size() const { return getNumCallArgs(); } in arg_size() function 171 assert(CallArgsBeginPos <= (int)getCall()->arg_size()); in arg_begin() 175 auto I = arg_begin() + arg_size(); in arg_end() 181 assert(Index < arg_size() && "out of bounds!"); in getArgument()
|
/aosp_15_r20/external/arm-trusted-firmware/drivers/st/mmc/ |
H A D | stm32_sdmmc2.c | 474 uint32_t arg_size; in stm32_sdmmc2_prepare() local 479 arg_size = MMC_BLOCK_SIZE; in stm32_sdmmc2_prepare() 481 arg_size = size; in stm32_sdmmc2_prepare() 500 cmd.cmd_arg = arg_size; in stm32_sdmmc2_prepare() 522 data_ctrl |= __builtin_ctz(arg_size) << SDMMC_DCTRLR_DBLOCKSIZE_SHIFT; in stm32_sdmmc2_prepare()
|