Searched refs:tabind (Results 1 – 10 of 10) sorted by relevance
/external/webrtc/webrtc/modules/audio_processing/ns/ |
D | nsx_core_neon.c | 140 int16_t log2, tabind, logval, tmp16, tmp16no1, tmp16no2; in WebRtcNsx_NoiseEstimationNeon() local 146 tabind = inst->stages - inst->normData; in WebRtcNsx_NoiseEstimationNeon() 147 assert(tabind < 9); in WebRtcNsx_NoiseEstimationNeon() 148 assert(tabind > -9); in WebRtcNsx_NoiseEstimationNeon() 149 if (tabind < 0) { in WebRtcNsx_NoiseEstimationNeon() 150 logval = -WebRtcNsx_kLogTable[-tabind]; in WebRtcNsx_NoiseEstimationNeon() 152 logval = WebRtcNsx_kLogTable[tabind]; in WebRtcNsx_NoiseEstimationNeon()
|
D | nsx_core.c | 340 int16_t log2, tabind, logval, tmp16, tmp16no1, tmp16no2; in NoiseEstimationC() local 346 tabind = inst->stages - inst->normData; in NoiseEstimationC() 347 assert(tabind < 9); in NoiseEstimationC() 348 assert(tabind > -9); in NoiseEstimationC() 349 if (tabind < 0) { in NoiseEstimationC() 350 logval = -WebRtcNsx_kLogTable[-tabind]; in NoiseEstimationC() 352 logval = WebRtcNsx_kLogTable[tabind]; in NoiseEstimationC()
|
/external/jemalloc_new/test/unit/ |
D | ckh.c | 155 size_t tabind; in TEST_BEGIN() local 159 for (tabind = 0; !ckh_iter(&ckh, &tabind, &q, &r);) { in TEST_BEGIN()
|
/external/jemalloc/test/unit/ |
D | ckh.c | 158 size_t tabind; in TEST_BEGIN() local 162 for (tabind = 0; !ckh_iter(&ckh, &tabind, &q, &r);) { in TEST_BEGIN()
|
/external/jemalloc/src/ |
D | ckh.c | 440 ckh_iter(ckh_t *ckh, size_t *tabind, void **key, void **data) in ckh_iter() argument 444 for (i = *tabind, ncells = (ZU(1) << (ckh->lg_curbuckets + in ckh_iter() 451 *tabind = i + 1; in ckh_iter()
|
D | prof.c | 1270 size_t tabind; in prof_tdata_merge_iter() local 1278 for (tabind = 0; !ckh_iter(&tdata->bt2tctx, &tabind, NULL, in prof_tdata_merge_iter() 1549 size_t tabind; in prof_dump() local 1572 for (tabind = 0; !ckh_iter(&bt2gctx, &tabind, NULL, &gctx.v);) in prof_dump()
|
/external/jemalloc_new/src/ |
D | ckh.c | 445 ckh_iter(ckh_t *ckh, size_t *tabind, void **key, void **data) { in ckh_iter() argument 448 for (i = *tabind, ncells = (ZU(1) << (ckh->lg_curbuckets + in ckh_iter() 457 *tabind = i + 1; in ckh_iter()
|
D | prof.c | 1277 size_t tabind; in prof_tdata_merge_iter() local 1285 for (tabind = 0; !ckh_iter(&tdata->bt2tctx, &tabind, NULL, in prof_tdata_merge_iter() 1556 size_t tabind; in prof_dump_prep() local 1569 for (tabind = 0; !ckh_iter(&bt2gctx, &tabind, NULL, &gctx.v);) { in prof_dump_prep()
|
/external/jemalloc_new/include/jemalloc/internal/ |
D | ckh.h | 83 bool ckh_iter(ckh_t *ckh, size_t *tabind, void **key, void **data);
|
/external/jemalloc/include/jemalloc/internal/ |
D | ckh.h | 71 bool ckh_iter(ckh_t *ckh, size_t *tabind, void **key, void **data);
|