Home
last modified time | relevance | path

Searched refs:tab1 (Results 1 - 18 of 18) sorted by relevance

/third_party/ffmpeg/libavcodec/tests/
H A Dfft.c200 static int check_diff(FFTSample *tab1, FFTSample *tab2, int n, double scale) in check_diff() argument
206 double e = fabs(tab1[i] - (tab2[i] / scale)) / RANGE; in check_diff()
209 i, tab1[i], tab2[i]); in check_diff()
375 FFTComplex *tab, *tab1, *tab_ref; in main() local
445 tab1 = av_malloc_array(fft_size, sizeof(FFTComplex)); in main()
449 if (!(tab && tab1 && tab_ref && tab2)) in main()
503 tab1[i].re = frandom(&prng); in main()
504 tab1[i].im = frandom(&prng); in main()
514 imdct_ref(&tab_ref->re, &tab1->re, fft_nbits); in main()
515 imdct_calc(m, tab2, &tab1 in main()
[all...]
/third_party/ffmpeg/libavcodec/
H A Ddxv.c500 uint8_t **tab0, uint8_t **tab1, in dxv_decompress_cgo()
543 tab1[0x9E3779B1 * (AV_RL32(dst + 2) & 0xFFFFFFu) >> 24] = dst + 2; in dxv_decompress_cgo()
549 tab1[0x9E3779B1 * (AV_RL32(dst + 2) & 0xFFFFFFu) >> 24] = dst + 2; in dxv_decompress_cgo()
552 tptr3 = tab1[bytestream2_get_byte(gb)]; in dxv_decompress_cgo()
563 tptr3 = tab1[bytestream2_get_byte(gb)]; in dxv_decompress_cgo()
572 tab1[0x9E3779B1 * (AV_RL32(dst + 2) & 0xFFFFFFu) >> 24] = dst + 2; in dxv_decompress_cgo()
575 tptr0 = tab1[bytestream2_get_byte(gb)]; in dxv_decompress_cgo()
578 tptr1 = tab1[bytestream2_get_byte(gb)]; in dxv_decompress_cgo()
597 tab1[0x9E3779B1 * (AV_RL32(dst + 2) & 0xFFFFFFu) >> 24] = dst + 2; in dxv_decompress_cgo()
606 tab1[ in dxv_decompress_cgo()
495 dxv_decompress_cgo(DXVContext *ctx, GetByteContext *gb, uint8_t *tex_data, int tex_size, uint8_t *op_data, int *oindex, int op_size, uint8_t **dstp, int *statep, uint8_t **tab0, uint8_t **tab1, int offset) dxv_decompress_cgo() argument
740 uint8_t *dst, *tab2[256] = { 0 }, *tab0[256] = { 0 }, *tab3[256] = { 0 }, *tab1[256] = { 0 }; dxv_decompress_cocg() local
[all...]
H A Dmpegaudiodec_template.c941 INTFLOAT *tab0, *tab1, v1, v2; in compute_stereo() local
957 tab1 = g1->sb_hybrid + 576; in compute_stereo()
970 tab1 -= len; in compute_stereo()
974 if (tab1[j] != 0) { in compute_stereo()
988 tab1[j] = MULLx(tmp0, v2, FRAC_BITS); in compute_stereo()
997 tmp1 = tab1[j]; in compute_stereo()
999 tab1[j] = MULLx(tmp0 - tmp1, ISQRT2, FRAC_BITS); in compute_stereo()
1013 tab1 -= len; in compute_stereo()
1017 if (tab1[j] != 0) { in compute_stereo()
1032 tab1[ in compute_stereo()
[all...]
H A Dacelp_vectors.c119 const uint8_t *tab1, in ff_acelp_fc_pulse_per_track()
131 fc_v[i + tab1[pulse_indexes & mask]] += in ff_acelp_fc_pulse_per_track()
117 ff_acelp_fc_pulse_per_track( int16_t* fc_v, const uint8_t *tab1, const uint8_t *tab2, int pulse_indexes, int pulse_signs, int pulse_count, int bits) ff_acelp_fc_pulse_per_track() argument
H A Dmace.c145 const int16_t *tab1; const int16_t *tab2; int stride; member
185 if (( chd->index += tabs[tab_idx].tab1[val]-(chd->index >> 5) ) < 0) in read_table()
H A Dacelp_vectors.h161 * @param tab1 table used for first pulse_count pulses
173 const uint8_t *tab1,
H A Dtwinvq.c183 const int16_t *tab0, *tab1; in dequant() local
204 tab1 = cb1 + tmp1 * cb_len; in dequant()
208 sign1 * tab1[j]; in dequant()
/third_party/lame/mpglib/
H A Dhuffman.h42 static const short tab1[] = variable
313 { /* 2 */ 0 , tab1 } ,
/third_party/lame/libmp3lame/
H A Dtables.h55 const type1_t *const tab1;
/third_party/astc-encoder/Source/
H A Dastcenc_decompress_symbolic.cpp102 vint4 tab1 = vint4::load(scb.weights + 16); in unpack_weights() local
107 vtable_prepare(tab0, tab1, tab2, tab3, tab0p, tab1p, tab2p, tab3p); in unpack_weights()
H A Dastcenc_ideal_endpoints_and_weights.cpp1110 vint4 tab1 = vint4::load(qat.quant_to_unquant + 16);
1112 vtable_prepare(tab0, tab1, tab0p, tab1p);
/third_party/skia/third_party/externals/imgui/
H A Dimgui_widgets.cpp7663 ImGuiTabItem* tab1 = TabBarFindTabByID(tab_bar, tab_bar->ReorderRequestTabId);
7664 if (tab1 == NULL || (tab1->Flags & ImGuiTabItemFlags_NoReorder))
7668 int tab2_order = tab_bar->GetTabOrder(tab1) + tab_bar->ReorderRequestOffset;
7677 if ((tab1->Flags & ImGuiTabItemFlags_SectionMask_) != (tab2->Flags & ImGuiTabItemFlags_SectionMask_))
7680 ImGuiTabItem item_tmp = *tab1;
7681 ImGuiTabItem* src_tab = (tab_bar->ReorderRequestOffset > 0) ? tab1 + 1 : tab2;
7682 ImGuiTabItem* dst_tab = (tab_bar->ReorderRequestOffset > 0) ? tab1 : tab2 + 1;
/third_party/mesa3d/src/imgui/
H A Dimgui_widgets.cpp5987 if (ImGuiTabItem* tab1 = TabBarFindTabByID(tab_bar, tab_bar->ReorderRequestTabId))
5990 int tab2_order = tab_bar->GetTabOrder(tab1) + tab_bar->ReorderRequestDir;
5994 ImGuiTabItem item_tmp = *tab1;
5995 *tab1 = *tab2;
5999 tab1 = tab2 = NULL;
/third_party/node/deps/v8/src/execution/arm64/
H A Dsimulator-logic-arm64.cc2147 const LogicVRegister* tab1, in Table()
2151 DCHECK_NOT_NULL(tab1); in Table()
2152 const LogicVRegister* tab[4] = {tab1, tab2, tab3, tab4}; in Table()
2144 Table(VectorFormat vform, LogicVRegister dst, const LogicVRegister& ind, bool zero_out_of_bounds, const LogicVRegister* tab1, const LogicVRegister* tab2, const LogicVRegister* tab3, const LogicVRegister* tab4) Table() argument
H A Dsimulator-arm64.h1797 const LogicVRegister* tab1,
/third_party/vixl/src/aarch64/
H A Dlogic-aarch64.cc3247 const LogicVRegister* tab1,
3251 VIXL_ASSERT(tab1 != NULL);
3262 uint64_t tab_size = tab1->UintArray(vform_tab, &table[0]);
H A Dsimulator-aarch64.h3977 const LogicVRegister* tab1,
/third_party/sqlite/src/
H A Dsqlite3.c141258 int tab1, tab2; global() local
[all...]

Completed in 232 milliseconds