Home
last modified time | relevance | path

Searched +defs:val +defs:func (Results 1 – 25 of 1029) sorted by relevance

12345678910>>...42

/aosp_15_r20/external/libcxx/src/
H A Dstring.cpp45 void throw_from_string_out_of_range( const string& func ) in throw_from_string_out_of_range()
51 void throw_from_string_invalid_arg( const string& func ) in throw_from_string_invalid_arg()
61 as_integer_helper(const string& func, const S& str, size_t* idx, int base, F f) in as_integer_helper()
87 as_integer(const string& func, const string& s, size_t* idx, int base ) in as_integer()
99 as_integer(const string& func, const string& s, size_t* idx, int base ) in as_integer()
107 as_integer( const string& func, const string& s, size_t* idx, int base ) in as_integer()
115 as_integer( const string& func, const string& s, size_t* idx, int base ) in as_integer()
123 as_integer( const string& func, const string& s, size_t* idx, int base ) in as_integer()
132 as_integer( const string& func, const wstring& s, size_t* idx, int base ) in as_integer()
144 as_integer( const string& func, const wstring& s, size_t* idx, int base ) in as_integer()
[all …]
/aosp_15_r20/external/cronet/third_party/libc++/src/src/
H A Dstring.cpp58 inline void throw_from_string_out_of_range(const string& func) { in throw_from_string_out_of_range()
62 inline void throw_from_string_invalid_arg(const string& func) { in throw_from_string_invalid_arg()
69 inline V as_integer_helper(const string& func, const S& str, size_t* idx, int base, F f) { in as_integer_helper()
90 inline int as_integer(const string& func, const string& s, size_t* idx, int base) { in as_integer()
99 inline long as_integer(const string& func, const string& s, size_t* idx, int base) { in as_integer()
104 inline unsigned long as_integer(const string& func, const string& s, size_t* idx, int base) { in as_integer()
109 inline long long as_integer(const string& func, const string& s, size_t* idx, int base) { in as_integer()
114 inline unsigned long long as_integer(const string& func, const string& s, size_t* idx, int base) { in as_integer()
121 inline int as_integer(const string& func, const wstring& s, size_t* idx, int base) { in as_integer()
130 inline long as_integer(const string& func, const wstring& s, size_t* idx, int base) { in as_integer()
[all …]
/aosp_15_r20/external/deqp/modules/gles2/scripts/
H A Dgenutil.py160 def unary(func): return lambda val: val.applyUnary(func) argument
163 def binary(func): return lambda a, b: (b.expandVec(a)).applyBinary(func, a.expandVec(b)) argument
166 def frac(val): return val.applyUnary(lambda x: x - math.floor(x)) argument
169 def exp2(val): return val.applyUnary(lambda x: math.pow(2.0, x)) argument
172 def log2(val): return val.applyUnary(lambda x: math.log(x, 2.0)) argument
175 def rsq(val): return val.applyUnary(lambda x: 1.0 / math.sqrt(x)) argument
178 def sign(val): return val.applyUnary(glslSign) argument
219 def applyUnary(self, func): return Scalar(func(self.x)) argument
220 def applyBinary(self, func, other): return Scalar(func(self.x, other.x)) argument
224 def expandVec(self, val): return val argument
[all …]
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/
H A DNVPTXUtilities.cpp133 bool isTexture(const Value &val) { in isTexture()
144 bool isSurface(const Value &val) { in isSurface()
155 bool isSampler(const Value &val) { in isSampler()
166 const Function *func = arg->getParent(); in isSampler() local
176 bool isImageReadOnly(const Value &val) { in isImageReadOnly()
178 const Function *func = arg->getParent(); in isImageReadOnly() local
188 bool isImageWriteOnly(const Value &val) { in isImageWriteOnly()
190 const Function *func = arg->getParent(); in isImageWriteOnly() local
200 bool isImageReadWrite(const Value &val) { in isImageReadWrite()
202 const Function *func = arg->getParent(); in isImageReadWrite() local
[all …]
/aosp_15_r20/external/deqp/modules/gles31/scripts/
H A Dgenutil.py170 def unary(func): return lambda val: val.applyUnary(func) argument
173 def binary(func): return lambda a, b: (b.expandVec(a)).applyBinary(func, a.expandVec(b)) argument
176 def frac(val): return val.applyUnary(lambda x: x - math.floor(x)) argument
179 def exp2(val): return val.applyUnary(lambda x: math.pow(2.0, x)) argument
182 def log2(val): return val.applyUnary(lambda x: math.log(x, 2.0)) argument
185 def rsq(val): return val.applyUnary(lambda x: 1.0 / math.sqrt(x)) argument
188 def sign(val): return val.applyUnary(glslSign) argument
232 def applyUnary(self, func): return Scalar(func(self.x)) argument
233 def applyBinary(self, func, other): return Scalar(func(self.x, other.x)) argument
237 def expandVec(self, val): return val argument
[all …]
/aosp_15_r20/external/deqp/modules/gles3/scripts/
H A Dgenutil.py170 def unary(func): return lambda val: val.applyUnary(func) argument
173 def binary(func): return lambda a, b: (b.expandVec(a)).applyBinary(func, a.expandVec(b)) argument
176 def frac(val): return val.applyUnary(lambda x: x - math.floor(x)) argument
179 def exp2(val): return val.applyUnary(lambda x: math.pow(2.0, x)) argument
182 def log2(val): return val.applyUnary(lambda x: math.log(x, 2.0)) argument
185 def rsq(val): return val.applyUnary(lambda x: 1.0 / math.sqrt(x)) argument
188 def sign(val): return val.applyUnary(glslSign) argument
232 def applyUnary(self, func): return Scalar(func(self.x)) argument
233 def applyBinary(self, func, other): return Scalar(func(self.x, other.x)) argument
237 def expandVec(self, val): return val argument
[all …]
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Target/NVPTX/
H A DNVPTXUtilities.cpp144 bool isTexture(const Value &val) { in isTexture()
155 bool isSurface(const Value &val) { in isSurface()
166 bool isSampler(const Value &val) { in isSampler()
177 const Function *func = arg->getParent(); in isSampler() local
187 bool isImageReadOnly(const Value &val) { in isImageReadOnly()
189 const Function *func = arg->getParent(); in isImageReadOnly() local
199 bool isImageWriteOnly(const Value &val) { in isImageWriteOnly()
201 const Function *func = arg->getParent(); in isImageWriteOnly() local
211 bool isImageReadWrite(const Value &val) { in isImageReadWrite()
213 const Function *func = arg->getParent(); in isImageReadWrite() local
[all …]
/aosp_15_r20/external/llvm/lib/Target/NVPTX/
H A DNVPTXUtilities.cpp130 bool llvm::isTexture(const llvm::Value &val) { in isTexture()
143 bool llvm::isSurface(const llvm::Value &val) { in isSurface()
156 bool llvm::isSampler(const llvm::Value &val) { in isSampler()
167 const Function *func = arg->getParent(); in isSampler() local
179 bool llvm::isImageReadOnly(const llvm::Value &val) { in isImageReadOnly()
181 const Function *func = arg->getParent(); in isImageReadOnly() local
194 bool llvm::isImageWriteOnly(const llvm::Value &val) { in isImageWriteOnly()
196 const Function *func = arg->getParent(); in isImageWriteOnly() local
209 bool llvm::isImageReadWrite(const llvm::Value &val) { in isImageReadWrite()
211 const Function *func = arg->getParent(); in isImageReadWrite() local
[all …]
/aosp_15_r20/external/lzma/C/
H A DCpuArch.c56 #define x86_cpuid_MACRO_2(p, func, subFunc) { \ argument
66 #define x86_cpuid_MACRO_2(p, func, subFunc) { \ argument
75 #define x86_cpuid_MACRO_2(p, func, subFunc) { \ argument
82 #define x86_cpuid_MACRO(p, func) x86_cpuid_MACRO_2(p, func, 0) argument
84 void Z7_FASTCALL z7_x86_cpuid(UInt32 p[4], UInt32 func) in z7_x86_cpuid()
90 void Z7_FASTCALL z7_x86_cpuid_subFunc(UInt32 p[4], UInt32 func, UInt32 subFunc) in z7_x86_cpuid_subFunc()
147 void Z7_FASTCALL z7_x86_cpuid(UInt32 p[4], UInt32 func) in z7_x86_cpuid()
195 void __declspec(naked) Z7_FASTCALL z7_x86_cpuid(UInt32 p[4], UInt32 func) in z7_x86_cpuid()
215 void __declspec(naked) Z7_FASTCALL z7_x86_cpuid_subFunc(UInt32 p[4], UInt32 func, UInt32 subFunc) in z7_x86_cpuid_subFunc()
242 void Z7_FASTCALL z7_x86_cpuid_subFunc(UInt32 p[4], UInt32 func, UInt32 subFunc) in z7_x86_cpuid_subFunc()
[all …]
/aosp_15_r20/external/trace-cmd/lib/trace-cmd/
H A Dtrace-ftrace.c59 const char *func; in function_handler() local
89 unsigned long long val; in get_return_for_leaf() local
187 unsigned long long val; in print_graph_entry_leaf() local
188 const char *func; in print_graph_entry_leaf() local
234 unsigned long long val; in print_graph_nested() local
235 const char *func; in print_graph_nested() local
274 unsigned long long val, pid; in fgraph_ent_handler() local
309 unsigned long long val; in fgraph_ret_handler() local
310 const char *func; in fgraph_ret_handler() local
/aosp_15_r20/external/mesa3d/src/compiler/spirv/
H A Dvtn_cfg.c51 nir_function *func, in glsl_type_add_to_function_params()
96 function_parameter_decoration_cb(struct vtn_builder *b, struct vtn_value *val, in function_parameter_decoration_cb()
220 function_decoration_cb(struct vtn_builder *b, struct vtn_value *val, int member, in function_decoration_cb()
223 struct vtn_function *func = void_func; in function_decoration_cb() local
257 struct vtn_value *val = vtn_push_value(b, w[2], vtn_value_type_function); in vtn_cfg_handle_prepass_instruction() local
267 nir_function *func = in vtn_cfg_handle_prepass_instruction() local
343 struct vtn_value *val = vtn_untyped_value(b, w[2]); in vtn_cfg_handle_prepass_instruction() local
574 vtn_new_unstructured_block(struct vtn_builder *b, struct vtn_function *func) in vtn_new_unstructured_block()
584 struct vtn_function *func, in vtn_add_unstructured_block()
595 vtn_emit_cf_func_unstructured(struct vtn_builder *b, struct vtn_function *func, in vtn_emit_cf_func_unstructured()
[all …]
/aosp_15_r20/external/swiftshader/src/Reactor/
H A DLLVMReactor.cpp491 …auto func = llvm::Function::Create(functionType, llvm::GlobalValue::InternalLinkage, name, jit->mo… in createFunction() local
918 auto func = jit->module->getOrInsertFunction("__atomic_load", funcTy); in createLoad() local
975 auto func = jit->module->getOrInsertFunction("__msan_unpoison", funcTy); in createStore() local
1015 auto func = jit->module->getOrInsertFunction("__atomic_store", funcTy); in createStore() local
1050 …auto func = llvm::Intrinsic::getDeclaration(jit->module.get(), llvm::Intrinsic::masked_load, { elV… in createMaskedLoad() local
1054 void Nucleus::createMaskedStore(Value *ptr, Value *val, Value *mask, unsigned int alignment) in createMaskedStore()
1069 …auto func = llvm::Intrinsic::getDeclaration(jit->module.get(), llvm::Intrinsic::masked_store, { el… in createMaskedStore() local
1080 auto func = jit->module->getOrInsertFunction("__msan_unpoison", funcTy); in createMaskedStore() local
1126 …auto func = llvm::Intrinsic::getDeclaration(jit->module.get(), llvm::Intrinsic::masked_gather, { e… in createGather() local
1168 static void createScatter(llvm::Value *base, llvm::Value *val, llvm::Value *offsets, llvm::Value *m… in createScatter()
[all …]
/aosp_15_r20/external/bcc/libbpf-tools/
H A Dksnoop.c98 struct value *val) in type_to_value()
136 struct value *val, int lvl) in member_to_value()
212 static int get_func_btf(struct btf *btf, struct func *func) in get_func_btf()
255 static int predicate_to_value(char *predicate, struct value *val) in predicate_to_value()
306 static int trace_to_value(struct btf *btf, struct func *func, char *argname, in trace_to_value()
307 char *membername, char *predicate, struct value *val) in trace_to_value()
441 static char *value_to_str(struct btf *btf, struct value *val, char *str) in value_to_str()
455 static int get_func_ip_mod(struct func *func) in get_func_ip_mod()
513 struct func *func = &trace->func; in parse_trace() local
679 struct func *func = &traces[i].func; in cmd_info() local
[all …]
/aosp_15_r20/external/libtraceevent/src/
H A Devent-parse.c84 tep_event_handler_func func; member
97 tep_func_handler func; member
448 char *func; member
455 char *func; member
535 struct func_map *func; in __find_func() local
550 tep_func_resolver_t *func; member
565 tep_func_resolver_t *func, void *priv) in tep_set_function_resolver()
701 int tep_register_function(struct tep_handle *tep, char *func, in tep_register_function()
752 char *func; in tep_parse_kallsyms() local
2202 unsigned long long val, left, right; in consolidate_op_arg() local
[all …]
/aosp_15_r20/external/trace-cmd/tracecmd/
H A Dtrace-hist.c131 const char *func; member
241 static void push_stack_func(const char *func) in push_stack_func()
259 unsigned long long val; in process_function() local
261 const char *func; in process_function() local
316 unsigned long long val; in process_function_graph_entry() local
317 const char *func; in process_function_graph_entry() local
361 unsigned long long val; in process_function_graph_exit() local
416 unsigned long long val; in process_kernel_stack() local
465 const char *func; in process_kernel_stack() local
485 unsigned long long val; in process_sched_wakeup() local
[all …]
/aosp_15_r20/external/ComputeLibrary/arm_compute/core/
H A DError.h169 #define ARM_COMPUTE_CREATE_ERROR_LOC(error_code, func, file, line, msg) arm_compute::create_error_m… argument
181 #define ARM_COMPUTE_CREATE_ERROR_LOC_VAR(error_code, func, file, line, msg, ...) \ argument
263 #define ARM_COMPUTE_RETURN_ERROR_ON_LOC_MSG_VAR(cond, func, file, line, msg, ...) \ argument
283 #define ARM_COMPUTE_RETURN_ERROR_ON_LOC_MSG(cond, func, file, line, msg) \ argument
306 #define ARM_COMPUTE_RETURN_ERROR_ON_LOC(cond, func, file, line) \ argument
316 #define ARM_COMPUTE_THROW_ERROR(func, file, line, msg) … argument
331 #define ARM_COMPUTE_THROW_ERROR_VAR(func, file, line, msg, ...) … argument
363 #define ARM_COMPUTE_ERROR_LOC_VAR(func, file, line, msg, ...) ARM_COMPUTE_THROW_ERROR_VAR(func, fil… argument
372 #define ARM_COMPUTE_ERROR_LOC(func, file, line, msg) ARM_COMPUTE_THROW_ERROR(func, file, line, msg)… argument
438 #define ARM_COMPUTE_ERROR_ON_LOC_MSG(cond, func, file, line, ...) \ argument
[all …]
/aosp_15_r20/external/mesa3d/src/mesa/vbo/
H A Dvbo_util.h48 struct attr_bits_10 val; in conv_i10_to_i() local
55 struct attr_bits_2 val; in conv_i2_to_i() local
62 struct attr_bits_10 val; in conv_i10_to_norm_float() local
96 struct attr_bits_2 val; in conv_i2_to_norm_float() local
110 #define ERROR_IF_NOT_PACKED_TYPE(ctx, type, func) \ argument
122 #define ERROR_IF_NOT_PACKED_TYPE_EXT(ctx, type, func) \ argument
/aosp_15_r20/frameworks/native/libs/binder/
H A DDebug.cpp60 static inline char makehexdigit(uint32_t val) in makehexdigit()
65 static char* appendhexnum(uint32_t val, char* out) in appendhexnum()
150 void printTypeCode(uint32_t typeCode, debugPrintFunc func, void* cookie) in printTypeCode()
161 debugPrintFunc func, void* cookie) in printHexData()
238 const unsigned char val = *(pos+startIndex-index); in printHexData() local
255 const unsigned char val = *(pos+startIndex-index); in printHexData() local
273 const unsigned char val = pos[index]; in printHexData() local
/aosp_15_r20/system/libhwbinder/
H A DDebug.cpp61 static inline char makehexdigit(uint32_t val) in makehexdigit()
66 static char* appendhexnum(uint32_t val, char* out) in appendhexnum()
151 void printTypeCode(uint32_t typeCode, debugPrintFunc func, void* cookie) in printTypeCode()
162 debugPrintFunc func, void* cookie) in printHexData()
239 const unsigned char val = *(pos+startIndex-index); in printHexData() local
256 const unsigned char val = *(pos+startIndex-index); in printHexData() local
274 const unsigned char val = pos[index]; in printHexData() local
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/algorithms/
H A Dranges_robust_against_omitting_invoke.pass.cpp25 int val; member
32 Foo val; member
40 constexpr void test(Func&& func, Input& in, Args&&... args) { in test()
47 constexpr void test(Func&& func, Input& in1, Input& in2, Args&&... args) { in test()
54 constexpr void test_mid(Func&& func, Input& in, std::ranges::iterator_t<Input> mid, Args&&... args)… in test_mid()
H A Dranges_robust_against_nonbool.compile.pass.cpp29 auto projection = [](Value const& val) -> Value { return val; }; in __anondc5c3f090102()
31 void f(Iterator it, Range in, Iterator out, std::size_t n, Value const& val, std::initializer_list<… in f()
33 auto in_pred = [&](auto func, auto pred) { in f()
41 auto in_in_pred = [&](auto func, auto pred) { in f()
/aosp_15_r20/external/tensorflow/tensorflow/compiler/mlir/tensorflow/transforms/
H A Dfreeze_global_tensors.cc53 if (func::FuncOp func = in getPessimisticValueState() local
142 for (auto func : module.getOps<func::FuncOp>()) { in runOnOperation() local
143 for (BlockArgument val : func.getArguments()) { in runOnOperation() local
177 for (auto func : module.getOps<func::FuncOp>()) { in runOnOperation() local
182 for (BlockArgument val : func.getArguments()) { in runOnOperation() local
/aosp_15_r20/libnativehelper/tests/
H A DJniSafeRegisterNativeMethods_test.cpp24 std::string stringify_helper(const T& val) { in stringify_helper()
369 #define IS_VALID_JNI_FUNCTION_TYPE(native_kind, func) \ in TEST() argument
371 #define IS_VALID_NORMAL_JNI_FUNCTION_TYPE(func) IS_VALID_JNI_FUNCTION_TYPE(kNormalNative, func) in TEST() argument
372 #define IS_VALID_CRITICAL_JNI_FUNCTION_TYPE(func) IS_VALID_JNI_FUNCTION_TYPE(kCriticalNative, func) in TEST() argument
374 #define EXPECT_ILLEGAL_JNI_FUNCTION_TYPE(func) \ in TEST() argument
380 #define EXPECT_NORMAL_JNI_FUNCTION_TYPE(func) \ in TEST() argument
386 #define EXPECT_CRITICAL_JNI_FUNCTION_TYPE(func) \ in TEST() argument
699 #define EXPECT_MATCH_JNI_DESCRIPTOR_AGAINST_FUNCTION_IMPL(cond, native_kind, func, desc) \ argument
713 #define EXPECT_MATCH_JNI_DESCRIPTOR_AGAINST_FUNCTION(native_kind, func, desc) \ argument
716 #define EXPECT_NO_MATCH_JNI_DESCRIPTOR_AGAINST_FUNCTION(native_kind, func, desc) \ argument
[all …]
/aosp_15_r20/external/flatbuffers/tests/
H A Dtest_assert.cpp13 void TestFail(const char *expval, const char *val, const char *exp, in TestFail()
14 const char *file, int line, const char *func) { in TestFail()
27 void TestEqStr(const char *expval, const char *val, const char *exp, in TestEqStr()
28 const char *file, int line, const char *func) { in TestEqStr()
/aosp_15_r20/external/tensorflow/tensorflow/core/data/
H A Dcaptured_function.cc114 Status GetCapturedInput(const CapturedFunction* const func, int index, in GetCapturedInput()
128 const CapturedFunction* const func, in RunShortCircuit()
147 const CapturedFunction* const func, in RunShortCircuit()
170 const NameAttrList& func, in CreateShortCircuitInfo()
275 Status SetRetval(int index, const Tensor& val) override { in SetRetval()
315 Status GetArg(int index, const Tensor** val) override { in GetArg()
331 void ConsumeArg(int index, Tensor* val) override { in ConsumeArg()
359 Status GetArg(int index, const Tensor** val) override { in GetArg()
433 NameAttrList func; in Create() local
439 OpKernelConstruction* ctx, NameAttrList&& func, Params params, in Create()

12345678910>>...42