Home
last modified time | relevance | path

Searched refs:tmp_pos (Results 1 – 9 of 9) sorted by relevance

/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/cpu/
Ddepthtospace_cpu_kernel.cc59 size_t tmp_pos = i; in Launch() local
61 output_pos_array[j] = tmp_pos / output_strides[j]; in Launch()
62 tmp_pos %= output_strides[j]; in Launch()
64 output_pos_array.back() = tmp_pos; in Launch()
Dspacetodepth_cpu_kernel.cc70 size_t tmp_pos = i; in Launch() local
72 input_pos_array[j] = tmp_pos / input_strides[j]; in Launch()
73 tmp_pos %= input_strides[j]; in Launch()
75 input_pos_array.back() = tmp_pos; in Launch()
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/gpu/cuda_impl/
Dtile_impl.cu28 size_t tmp_pos = pos; in Tile() local
30 pos_array[0] = tmp_pos / pos_size; in Tile()
32 tmp_pos -= pos_array[i - 1] * pos_size; in Tile()
34 pos_array[i] = tmp_pos / pos_size; in Tile()
Dbce_with_logits_loss_impl.cu34 size_t tmp_pos = pos; in FillAndBroadcast() local
36 dst_index_array[0] = tmp_pos / pos_size; in FillAndBroadcast()
38 tmp_pos -= dst_index_array[i - 1] * pos_size; in FillAndBroadcast()
40 dst_index_array[i] = tmp_pos / pos_size; in FillAndBroadcast()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/
Dfils_hlp.c580 u8 *tmp, *tmp_pos; in fils_process_hlp() local
624 tmp_pos = tmp; in fils_process_hlp()
625 os_memcpy(tmp_pos, pos + 3, pos[1] - 1); in fils_process_hlp()
626 tmp_pos += pos[1] - 1; in fils_process_hlp()
632 os_memcpy(tmp_pos, pos + 2, pos[1]); in fils_process_hlp()
633 tmp_pos += pos[1]; in fils_process_hlp()
637 if (fils_process_hlp_req(hapd, sta, tmp, tmp_pos - tmp) > 0) in fils_process_hlp()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/
Dfils_hlp.c580 u8 *tmp, *tmp_pos; in fils_process_hlp() local
624 tmp_pos = tmp; in fils_process_hlp()
625 os_memcpy(tmp_pos, pos + 3, pos[1] - 1); in fils_process_hlp()
626 tmp_pos += pos[1] - 1; in fils_process_hlp()
632 os_memcpy(tmp_pos, pos + 2, pos[1]); in fils_process_hlp()
633 tmp_pos += pos[1]; in fils_process_hlp()
637 if (fils_process_hlp_req(hapd, sta, tmp, tmp_pos - tmp) > 0) in fils_process_hlp()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/rsn_supp/
Dwpa.c4220 u8 *tmp, *tmp_pos; in fils_process_hlp_container() local
4245 tmp_pos = tmp; in fils_process_hlp_container()
4246 os_memcpy(tmp_pos, pos + 3, pos[1] - 1); in fils_process_hlp_container()
4247 tmp_pos += pos[1] - 1; in fils_process_hlp_container()
4253 os_memcpy(tmp_pos, pos + 2, pos[1]); in fils_process_hlp_container()
4254 tmp_pos += pos[1]; in fils_process_hlp_container()
4258 fils_process_hlp_resp(sm, tmp, tmp_pos - tmp); in fils_process_hlp_container()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/rsn_supp/
Dwpa.c4723 u8 *tmp, *tmp_pos; in fils_process_hlp_container() local
4748 tmp_pos = tmp; in fils_process_hlp_container()
4749 os_memcpy(tmp_pos, pos + 3, pos[1] - 1); in fils_process_hlp_container()
4750 tmp_pos += pos[1] - 1; in fils_process_hlp_container()
4756 os_memcpy(tmp_pos, pos + 2, pos[1]); in fils_process_hlp_container()
4757 tmp_pos += pos[1]; in fils_process_hlp_container()
4761 fils_process_hlp_resp(sm, tmp, tmp_pos - tmp); in fils_process_hlp_container()
/third_party/ffmpeg/libavformat/
Dutils.c2231 int64_t tmp_pos = pos_max + 1; in ff_find_last_ts() local
2233 &tmp_pos, INT64_MAX, read_timestamp); in ff_find_last_ts()
2236 av_assert0(tmp_pos > pos_max); in ff_find_last_ts()
2238 pos_max = tmp_pos; in ff_find_last_ts()
2239 if (tmp_pos >= filesize) in ff_find_last_ts()