Home
last modified time | relevance | path

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

/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_oa.py75 def emit_fadd(tmp_id, args): argument
76 c("double tmp{0} = {1} + {2};".format(tmp_id, args[1], args[0]))
77 return tmp_id + 1
80 def emit_fdiv(tmp_id, args): argument
81 c("double tmp{0} = {1};".format(tmp_id, args[1]))
82 c("double tmp{0} = {1};".format(tmp_id + 1, args[0]))
83 c("double tmp{0} = tmp{1} ? tmp{2} / tmp{1} : 0;".format(tmp_id + 2, tmp_id + 1, tmp_id))
84 return tmp_id + 3
86 def emit_fmax(tmp_id, args): argument
87 c("double tmp{0} = {1};".format(tmp_id, args[1]))
[all …]
/external/libxcam/cl_kernel/
Dkernel_rgb_pipe.cl28 …int tmp_id = (SHARED_PIXEL_Y_OFFSET + ly * WORK_ITEM_Y_SIZE) * SHARED_PIXEL_X_SIZE + SHARED_PIXEL_…
29tmp_id)).x + (*(in + tmp_id - SHARED_PIXEL_X_SIZE - 1)).x + (*(in + tmp_id - SHARED_PIXEL_X_SIZE))…
31tmp_id)).y + (*(in + tmp_id - SHARED_PIXEL_X_SIZE - 1)).y + (*(in + tmp_id - SHARED_PIXEL_X_SIZE))…
33tmp_id)).z + (*(in + tmp_id - SHARED_PIXEL_X_SIZE - 1)).z + (*(in + tmp_id - SHARED_PIXEL_X_SIZE))…
/external/webrtc/webrtc/system_wrappers/source/
Dfile_impl.cc113 FILE* tmp_id = NULL; in OpenFile() local
126 tmp_id = _wfopen(wide_file_name, L"rt"); in OpenFile()
128 tmp_id = _wfopen(wide_file_name, L"wt"); in OpenFile()
132 tmp_id = _wfopen(wide_file_name, L"rb"); in OpenFile()
134 tmp_id = _wfopen(wide_file_name, L"wb"); in OpenFile()
140 tmp_id = fopen(file_name_utf8, "rt"); in OpenFile()
142 tmp_id = fopen(file_name_utf8, "wt"); in OpenFile()
146 tmp_id = fopen(file_name_utf8, "rb"); in OpenFile()
148 tmp_id = fopen(file_name_utf8, "wb"); in OpenFile()
153 if (tmp_id != NULL) { in OpenFile()
[all …]
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dbasic_block.cpp134 uint32_t tmp_id = br->GetOperand(0).words[0]; in ForEachSuccessorLabel() local
135 f(&tmp_id); in ForEachSuccessorLabel()
136 if (tmp_id != br->GetOperand(0).words[0]) br->SetOperand(0, {tmp_id}); in ForEachSuccessorLabel()
/external/deqp-deps/SPIRV-Tools/source/opt/
Dbasic_block.cpp134 uint32_t tmp_id = br->GetOperand(0).words[0]; in ForEachSuccessorLabel() local
135 f(&tmp_id); in ForEachSuccessorLabel()
136 if (tmp_id != br->GetOperand(0).words[0]) br->SetOperand(0, {tmp_id}); in ForEachSuccessorLabel()
/external/libusb/libusb/os/
Dwindows_winusb.c1000 unsigned long tmp_id; in init_device() local
1018 tmp_id = get_ancestor_session_id(devinst, i); in init_device()
1019 if (tmp_id == 0) in init_device()
1022 tmp_dev = usbi_get_device_by_session_id(ctx, tmp_id); in init_device()