Searched refs:deref_offset (Results 1 – 11 of 11) sorted by relevance
/external/bcc/src/python/bcc/ |
D | usdt.py | 32 self.deref_offset = argument.deref_offset 61 sign = '+' if self.deref_offset >= 0 else '-' 63 sign, abs(self.deref_offset), index_offset) 68 sign = '+' if self.deref_offset >= 0 else '-' 70 sign, abs(self.deref_offset))
|
/external/mesa3d/src/compiler/glsl/ |
D | lower_buffer_access.cpp | 60 unsigned int deref_offset, in emit_access() argument 84 deref_offset + field_offset, in emit_access() 107 deref_offset + i * array_stride, in emit_access() 128 deref_offset + i * size_mul, in emit_access() 139 add(base_offset, new(mem_ctx) ir_constant(deref_offset)); in emit_access() 158 new(mem_ctx) ir_constant(deref_offset + i * matrix_stride)); in emit_access()
|
D | lower_buffer_access.h | 50 ir_variable *base_offset, unsigned int deref_offset,
|
D | lower_shared_reference.cpp | 380 ir_rvalue *deref_offset = in lower_shared_atomic_intrinsic() local 420 call_params.push_tail(deref_offset); in lower_shared_atomic_intrinsic()
|
D | lower_ubo_reference.cpp | 1002 ir_rvalue *deref_offset = in lower_ssbo_atomic_intrinsic() local 1048 call_params.push_tail(deref_offset); in lower_ssbo_atomic_intrinsic()
|
/external/bcc/tests/cc/ |
D | test_usdt_args.cc | 37 optional<int> deref_offset = nullopt, in verify_register() argument 48 REQUIRE(arg.deref_offset() == deref_offset); in verify_register()
|
/external/bcc/src/cc/includes/ |
D | bcc_usdt.h | 55 int deref_offset; member
|
D | usdt.h | 79 const optional<int> deref_offset() const { return deref_offset_; } in deref_offset() function
|
/external/bcc/src/cc/ |
D | bcc_usdt.h | 55 int deref_offset; member
|
D | usdt.h | 79 const optional<int> deref_offset() const { return deref_offset_; } in deref_offset() function
|
/external/bcc/src/cc/usdt/ |
D | usdt.cc | 523 if (arg.deref_offset()) { in bcc_usdt_get_argument() 525 argument->deref_offset = *(arg.deref_offset()); in bcc_usdt_get_argument()
|