Searched refs:tmp_id (Results 1 – 6 of 6) sorted by relevance
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_oa.py | 75 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/ |
D | kernel_rgb_pipe.cl | 28 …int tmp_id = (SHARED_PIXEL_Y_OFFSET + ly * WORK_ITEM_Y_SIZE) * SHARED_PIXEL_X_SIZE + SHARED_PIXEL_… 29 …tmp_id)).x + (*(in + tmp_id - SHARED_PIXEL_X_SIZE - 1)).x + (*(in + tmp_id - SHARED_PIXEL_X_SIZE))… 31 …tmp_id)).y + (*(in + tmp_id - SHARED_PIXEL_X_SIZE - 1)).y + (*(in + tmp_id - SHARED_PIXEL_X_SIZE))… 33 …tmp_id)).z + (*(in + tmp_id - SHARED_PIXEL_X_SIZE - 1)).z + (*(in + tmp_id - SHARED_PIXEL_X_SIZE))…
|
/external/webrtc/webrtc/system_wrappers/source/ |
D | file_impl.cc | 113 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/ |
D | basic_block.cpp | 134 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/ |
D | basic_block.cpp | 134 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/ |
D | windows_winusb.c | 1000 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()
|