/third_party/ffmpeg/libavcodec/x86/ |
H A D | celt_pvq_search.asm | 89 pxor m1, m1 ; max_idx 142 por m1, mm_const_int32_offsets ; max_idx offsets per individual lane (skipped in the inner loop) 143 movdqa m4, m1 ; needed for the aligned y[max_idx]+=1; processing 152 BLENDVPS xm3, xm5, xm0 ; max_idx = m0 ? max_idx[1x128] : max_idx[0x128] 162 BLENDVPS xm3, xm5, xm0 ; max_idx = m0 ? max_idx[3,2] : max_idx[1,0] 175 %{1}ps m7, m3 ; Sxy += X[max_idx] [all...] |
/third_party/spirv-tools/source/opt/ |
H A D | eliminate_dead_io_components_pass.cpp | 112 unsigned max_idx = FindMaxIndex(var, original_max); in Process() local 113 if (max_idx != original_max) { in Process() 114 ChangeArrayLength(var, max_idx + 1); in Process() 124 unsigned max_idx = FindMaxIndex(var, original_max, skip_first_index); in Process() local 125 if (max_idx != original_max) { in Process() 126 ChangeIOVarStructLength(var, max_idx + 1); in Process()
|
/third_party/musl/libc-test/src/functional/ |
H A D | test-iterate.c | 72 size_t min_idx, max_idx; in fill_allocations_info() local 80 max_idx = i; in fill_allocations_info() 89 allocations_info->size = allocs[max_idx] - allocs[min_idx] + allocs_sizes[max_idx]; in fill_allocations_info()
|
/device/soc/rockchip/common/sdk_linux/ipc/ |
H A D | util.c | 121 ids->max_idx = -1;
in ipc_init_ids() 223 int max_idx;
in ipc_idr_alloc() local 225 max_idx = max(ids->in_use * 0x3 / 0x2, ipc_min_cycle);
in ipc_idr_alloc() 226 max_idx = min(max_idx, ipc_mni);
in ipc_idr_alloc() 229 idx = idr_alloc_cyclic(&ids->ipcs_idr, NULL, 0, max_idx, GFP_NOWAIT);
in ipc_idr_alloc() 323 if (idx > ids->max_idx) {
in ipc_addid() 324 ids->max_idx = idx;
in ipc_addid() 473 if (unlikely(idx == ids->max_idx)) {
in ipc_rmid() 480 ids->max_idx in ipc_rmid() [all...] |
H A D | msg.c | 467 int max_idx; in msgctl_info() local 495 max_idx = ipc_get_maxidx(&msg_ids(ns)); in msgctl_info() 497 return (max_idx < 0) ? 0 : max_idx; in msgctl_info()
|
H A D | sem.c | 1343 int max_idx;
in semctl_info() local 1368 max_idx = ipc_get_maxidx(&sem_ids(ns));
in semctl_info() 1373 return (max_idx < 0) ? 0 : max_idx;
in semctl_info()
|
/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/ |
H A D | dhd_cdc.c | 763 if (start > ptr->max_idx) in dhd_get_hostreorder_pkts() 775 uint8 flow_id, max_idx, cur_idx, exp_idx; in dhd_process_pkt_reorder_info() local 835 buf_size += ((ptr->max_idx + 1) * sizeof(void *)); in dhd_process_pkt_reorder_info() 844 max_idx = reorder_info_buf[WLHOST_REORDERDATA_MAXIDX_OFFSET]; in dhd_process_pkt_reorder_info() 846 buf_size_alloc += ((max_idx + 1) * sizeof(void*)); in dhd_process_pkt_reorder_info() 850 __FUNCTION__, buf_size_alloc, flow_id, max_idx)); in dhd_process_pkt_reorder_info() 860 ptr->max_idx = max_idx; in dhd_process_pkt_reorder_info() 871 ptr->max_idx = reorder_info_buf[WLHOST_REORDERDATA_MAXIDX_OFFSET]; in dhd_process_pkt_reorder_info() 935 if (cur_idx == ptr->max_idx) { in dhd_process_pkt_reorder_info() [all...] |
H A D | dhd.h | 608 uint8 max_idx; member
|
H A D | dhd_linux.c | 12762 buf_size += ((ptr->max_idx + 1) * sizeof(void*)); in dhd_free() 12764 i, ptr->max_idx, buf_size)); in dhd_free() 12811 buf_size += ((ptr->max_idx + 1) * sizeof(void*)); in dhd_clear() 12813 i, ptr->max_idx, buf_size)); in dhd_clear()
|
/third_party/ltp/testcases/kernel/syscalls/ipc/shmctl/ |
H A D | shmctl01.c | 233 int max_idx, i; in get_shm_idx_from_id() local 235 max_idx = SAFE_SHMCTL(shm_id, SHM_INFO, (void *)&dummy); in get_shm_idx_from_id() 237 for (i = 0; i <= max_idx; i++) { in get_shm_idx_from_id()
|
/third_party/node/deps/openssl/openssl/crypto/modes/ |
H A D | ocb128.c | 345 size_t max_idx = 0, top = (size_t)all_num_blocks; in CRYPTO_ocb128_encrypt() local 352 max_idx++; in CRYPTO_ocb128_encrypt() 353 if (ocb_lookup_l(ctx, max_idx) == NULL) in CRYPTO_ocb128_encrypt() 437 size_t max_idx = 0, top = (size_t)all_num_blocks; in CRYPTO_ocb128_decrypt() local 444 max_idx++; in CRYPTO_ocb128_decrypt() 445 if (ocb_lookup_l(ctx, max_idx) == NULL) in CRYPTO_ocb128_decrypt()
|
/third_party/openssl/crypto/modes/ |
H A D | ocb128.c | 345 size_t max_idx = 0, top = (size_t)all_num_blocks; in CRYPTO_ocb128_encrypt() local 352 max_idx++; in CRYPTO_ocb128_encrypt() 353 if (ocb_lookup_l(ctx, max_idx) == NULL) in CRYPTO_ocb128_encrypt() 437 size_t max_idx = 0, top = (size_t)all_num_blocks; in CRYPTO_ocb128_decrypt() local 444 max_idx++; in CRYPTO_ocb128_decrypt() 445 if (ocb_lookup_l(ctx, max_idx) == NULL) in CRYPTO_ocb128_decrypt()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
H A D | BasicBlock.cpp | 330 unsigned max_idx = APN->getNumIncomingValues(); in removePredecessor() local 331 assert(max_idx != 0 && "PHI Node in block with 0 predecessors!?!?!"); in removePredecessor() 332 if (max_idx == 2) { in removePredecessor() 336 if (this == Other) max_idx = 3; in removePredecessor() 340 if (max_idx <= 2 && !KeepOneInputPHIs) { in removePredecessor() 347 if (max_idx == 2) { in removePredecessor()
|
/third_party/jerryscript/jerry-core/api/ |
H A D | jerry-snapshot.c | 1403 lit_utf8_size_t max_idx = node_idx; in jerry_save_literals_heap_max() local 1406 && jerry_save_literals_compare (literals[max_idx], literals[child_idx1])) in jerry_save_literals_heap_max() 1408 max_idx = child_idx1; in jerry_save_literals_heap_max() 1412 && jerry_save_literals_compare (literals[max_idx], literals[child_idx2])) in jerry_save_literals_heap_max() 1414 max_idx = child_idx2; in jerry_save_literals_heap_max() 1417 return max_idx; in jerry_save_literals_heap_max() 1430 lit_utf8_size_t max_idx = jerry_save_literals_heap_max (literals, in jerry_save_literals_down_heap() local 1435 if (max_idx == node_idx) in jerry_save_literals_down_heap() 1441 literals[node_idx] = literals[max_idx]; in jerry_save_literals_down_heap() 1442 literals[max_idx] in jerry_save_literals_down_heap() [all...] |
/third_party/elfutils/libdw/ |
H A D | dwarf_formstring.c | 162 size_t max_idx = (dbg->sectiondata[IDX_debug_str_offsets]->d_size in dwarf_formstring() 164 if (idx > max_idx) in dwarf_formstring()
|
H A D | dwarf_ranges.c | 436 size_t max_idx = (sec_size - offset_size - range_base_off) / offset_size; in initial_offset() 437 if (idx > max_idx) in initial_offset()
|
H A D | dwarf_getlocation.c | 793 size_t max_idx = (sec_size - offset_size - loc_base_off) / offset_size; in initial_offset() 794 if (idx > max_idx) in initial_offset()
|
/device/soc/rockchip/common/sdk_linux/drivers/mmc/core/ |
H A D | host.c | 492 int alias_id, min_idx, max_idx; in mmc_alloc_host() local 507 max_idx = 0; in mmc_alloc_host() 509 index = ida_simple_get(&mmc_host_ida, min_idx, max_idx, GFP_KERNEL); in mmc_alloc_host()
|
/third_party/ffmpeg/libavcodec/ |
H A D | opus_pvq.c | 386 int max_idx = 0, phase = FFSIGN(K); in ppp_pvq_search_c() local 402 max_idx = i; in ppp_pvq_search_c() 408 phase *= FFSIGN(X[max_idx]); in ppp_pvq_search_c() 409 xy_norm += 1*phase*X[max_idx]; in ppp_pvq_search_c() 410 y_norm += 2*phase*y[max_idx]; in ppp_pvq_search_c() 411 y[max_idx] += phase; in ppp_pvq_search_c()
|
H A D | aacdec_template.c | 1747 int max_idx = cpe->ch[0].ics.num_window_groups * cpe->ch[0].ics.max_sfb; in decode_mid_side_stereo() local 1749 for (idx = 0; idx < max_idx; idx++) in decode_mid_side_stereo() 1752 memset(cpe->ms_mask, 1, max_idx * sizeof(cpe->ms_mask[0])); in decode_mid_side_stereo()
|
/third_party/mesa3d/src/freedreno/ir2/ |
H A D | disasm-a2xx.c | 624 int idx, max_idx; in disasm_a2xx() local 629 max_idx = 2 * cf->exec.address; in disasm_a2xx() 634 for (idx = 0; idx < max_idx; idx++) { in disasm_a2xx()
|
/third_party/mesa3d/src/gallium/drivers/zink/ |
H A D | zink_program.c | 703 unsigned max_idx = ARRAY_SIZE(prog->pipelines); in zink_destroy_gfx_program() local 709 max_idx = 4; in zink_destroy_gfx_program() 711 max_idx = 3; in zink_destroy_gfx_program() 712 max_idx++; in zink_destroy_gfx_program() 715 for (int i = 0; i < max_idx; ++i) { in zink_destroy_gfx_program()
|