Home
last modified time | relevance | path

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

/external/mesa3d/src/intel/perf/
Dgen_perf.py70 def emit_fadd(tmp_id, args): argument
71 c("double tmp{0} = {1} + {2};".format(tmp_id, args[1], args[0]))
72 return tmp_id + 1
75 def emit_fdiv(tmp_id, args): argument
76 c("double tmp{0} = {1};".format(tmp_id, args[1]))
77 c("double tmp{0} = {1};".format(tmp_id + 1, args[0]))
78 c("double tmp{0} = tmp{1} ? tmp{2} / tmp{1} : 0;".format(tmp_id + 2, tmp_id + 1, tmp_id))
79 return tmp_id + 3
81 def emit_fmax(tmp_id, args): argument
82 c("double tmp{0} = {1};".format(tmp_id, args[1]))
[all …]
/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/angle/third_party/spirv-tools/src/source/opt/
Dbasic_block.cpp142 uint32_t tmp_id = br->GetOperand(0).words[0]; in ForEachSuccessorLabel() local
143 f(&tmp_id); in ForEachSuccessorLabel()
144 if (tmp_id != br->GetOperand(0).words[0]) br->SetOperand(0, {tmp_id}); in ForEachSuccessorLabel()
/external/deqp-deps/SPIRV-Tools/source/opt/
Dbasic_block.cpp142 uint32_t tmp_id = br->GetOperand(0).words[0]; in ForEachSuccessorLabel() local
143 f(&tmp_id); in ForEachSuccessorLabel()
144 if (tmp_id != br->GetOperand(0).words[0]) br->SetOperand(0, {tmp_id}); in ForEachSuccessorLabel()
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dbasic_block.cpp142 uint32_t tmp_id = br->GetOperand(0).words[0]; in ForEachSuccessorLabel() local
143 f(&tmp_id); in ForEachSuccessorLabel()
144 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()