Home
last modified time | relevance | path

Searched refs:load_funcs (Results 1 – 6 of 6) sorted by relevance

/aosp_15_r20/external/bcc/tests/lua/
H A Dtest_clang.lua49 local fns = b:load_funcs('BPF_PROG_TYPE_KPROBE')
/aosp_15_r20/external/bcc/tests/python/
H A Dtest_clang.py155 fns = b.load_funcs(BPF.KPROBE)
1339 fns = b.load_funcs(BPF.KPROBE)
/aosp_15_r20/external/bcc/src/lua/bcc/
H A Dbpf.lua138 function Bpf:load_funcs(prog_type) function
/aosp_15_r20/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
H A DvktSpvAsmInstructionTests.cpp18867 string load_funcs[MATH16_TYPE_LAST]; in createFloat16ArithmeticFuncTest() local
18868 load_funcs[SCALAR] = loadScalarF16FromUint; in createFloat16ArithmeticFuncTest()
18869 load_funcs[VEC2] = loadV2F16FromUint; in createFloat16ArithmeticFuncTest()
18870 load_funcs[VEC3] = loadV3F16FromUints; in createFloat16ArithmeticFuncTest()
18871 load_funcs[VEC4] = loadV4F16FromUints; in createFloat16ArithmeticFuncTest()
18872 load_funcs[MAT2X2] = loadM2x2F16FromUints; in createFloat16ArithmeticFuncTest()
18873 load_funcs[MAT2X3] = loadM2x3F16FromUints; in createFloat16ArithmeticFuncTest()
18874 load_funcs[MAT2X4] = loadM2x4F16FromUints; in createFloat16ArithmeticFuncTest()
18875 load_funcs[MAT3X2] = loadM3x2F16FromUints; in createFloat16ArithmeticFuncTest()
18876 load_funcs[MAT3X3] = loadM3x3F16FromUints; in createFloat16ArithmeticFuncTest()
[all …]
/aosp_15_r20/external/vixl/test/aarch64/
H A Dtest-assembler-aarch64.cc10335 void AtomicMemoryWHelper(AtomicMemoryLoadSignature* load_funcs, in AtomicMemoryWHelper() argument
10361 (masm.*(load_funcs[0]))(w0, w10, MemOperand(x20)); in AtomicMemoryWHelper()
10362 (masm.*(load_funcs[1]))(w1, w11, MemOperand(x21)); in AtomicMemoryWHelper()
10363 (masm.*(load_funcs[2]))(w2, w12, MemOperand(x22)); in AtomicMemoryWHelper()
10364 (masm.*(load_funcs[3]))(w3, w13, MemOperand(x23)); in AtomicMemoryWHelper()
10402 void AtomicMemoryXHelper(AtomicMemoryLoadSignature* load_funcs, in AtomicMemoryXHelper() argument
10427 (masm.*(load_funcs[0]))(x0, x10, MemOperand(x20)); in AtomicMemoryXHelper()
10428 (masm.*(load_funcs[1]))(x1, x11, MemOperand(x21)); in AtomicMemoryXHelper()
10429 (masm.*(load_funcs[2]))(x2, x12, MemOperand(x22)); in AtomicMemoryXHelper()
10430 (masm.*(load_funcs[3]))(x3, x13, MemOperand(x23)); in AtomicMemoryXHelper()
/aosp_15_r20/external/bcc/src/python/bcc/
H A D__init__.py489 def load_funcs(self, prog_type=KPROBE): member in BPF