Home
last modified time | relevance | path

Searched refs:load_bytes (Results 1 – 4 of 4) sorted by relevance

/external/bcc/src/lua/bpf/
Dbuiltins.lua308 local function load_bytes(e, dst, off, var) function
444 builtins.load_bytes = load_bytes
452 builtins[load_bytes] = function (e, dst, off, var, len) return load_bytes(e, dst, off, var, len) end
/external/python/pybind11/include/pybind11/
Dcast.h1183 return load_bytes(load_src);
1186 return load_bytes(load_src);
1245 bool load_bytes(enable_if_t<sizeof(C) == 1, handle> src) {
1260 bool load_bytes(enable_if_t<sizeof(C) != 1, handle>) { return false; }
/external/bcc/src/lua/
DREADME.md140 * `load_bytes(off, var)` - helper for direct packet access with `skb_load_bytes()`
/external/mesa3d/src/amd/llvm/
Dac_nir_to_llvm.c1929 int load_bytes = num_elems * elem_size_bytes; in visit_load_buffer() local
1935 if (load_bytes == 1) { in visit_load_buffer()
1938 } else if (load_bytes == 2) { in visit_load_buffer()
1942 int num_channels = util_next_power_of_two(load_bytes) / 4; in visit_load_buffer()
1951 ret = ac_trim_vector(&ctx->ac, ret, load_bytes); in visit_load_buffer()
2123 unsigned load_bytes = instr->dest.ssa.bit_size / 8; in visit_load_ubo_buffer() local
2126 LLVMValueRef immoffset = LLVMConstInt(ctx->ac.i32, load_bytes * i, 0); in visit_load_ubo_buffer()
2128 if (load_bytes == 1) { in visit_load_ubo_buffer()
2132 assert(load_bytes == 2); in visit_load_ubo_buffer()