HomeSort by relevance Sort by last modified time
    Searched refs:stages (Results 1 - 25 of 105) sorted by null

1 2 3 4 5

  /external/chromium_org/third_party/webrtc/common_audio/signal_processing/
complex_bit_reverse.c 19 /* Indexes for the case of stages == 7. */
30 /* Indexes for the case of stages == 8. */
49 void WebRtcSpl_ComplexBitReverse(int16_t* __restrict complex_data, int stages) {
50 /* For any specific value of stages, we know exactly the indexes that are
52 * stages are 7 and 8, so we use tables to save unnecessary iterations and
55 if (stages == 7 || stages == 8) {
60 if (stages == 8) {
81 int n = 1 << stages;
101 * This is similar to the loop in the stages == 7 or 8 cases
    [all...]
complex_bit_reverse_mips.c 64 void WebRtcSpl_ComplexBitReverse(int16_t frfi[], int stages) {
71 if (stages == 8) {
123 } else if (stages == 7) {
complex_fft_mips.c 22 int WebRtcSpl_ComplexFFT(int16_t frfi[], int stages, int mode) {
40 n = 1 << stages;
148 int WebRtcSpl_ComplexIFFT(int16_t frfi[], int stages, int mode) {
158 n = 1 << stages;
complex_bit_reverse_arm.S 33 mov r1, r3, asl r1 @ n = 1 << stages;
92 index_7: @ Indexes for stages == 7.
102 index_8: @ Indexes for stages == 8.
complex_fft.c 29 int WebRtcSpl_ComplexFFT(int16_t frfi[], int stages, int mode)
36 * and should not be changed depending on the input parameter 'stages'
38 n = 1 << stages;
44 depending on the input parameter 'stages' */
59 * parameter 'stages'. It will result in 0 <= j < N_SINE_WAVE/2
101 * parameter 'stages'. It will result in 0 <= j < N_SINE_WAVE/2
162 int WebRtcSpl_ComplexIFFT(int16_t frfi[], int stages, int mode)
170 * and should not be changed depending on the input parameter 'stages'
172 n = 1 << stages;
180 depending on the input parameter 'stages' */
    [all...]
  /external/webrtc/src/common_audio/signal_processing/
complex_bit_reverse.c 20 void WebRtcSpl_ComplexBitReverse(WebRtc_Word16 frfi[], int stages)
25 n = 1 << stages;
complex_fft.c 159 int WebRtcSpl_ComplexFFT(WebRtc_Word16 frfi[], int stages, int mode)
166 * and should not be changed depending on the input parameter 'stages'
168 n = 1 << stages;
174 depending on the input parameter 'stages' */
189 * parameter 'stages'. It will result in 0 <= j < N_SINE_WAVE/2
231 * parameter 'stages'. It will result in 0 <= j < N_SINE_WAVE/2
287 int WebRtcSpl_ComplexIFFT(WebRtc_Word16 frfi[], int stages, int mode)
295 * and should not be changed depending on the input parameter 'stages'
297 n = 1 << stages;
305 depending on the input parameter 'stages' */
    [all...]
  /external/skia/tests/
GLProgramsTest.cpp 29 const GrEffectStage* stages[],
79 const GrBackendEffectFactory& factory = (*stages[s]->getEffect())->getFactory();
80 GrDrawEffect drawEffect(*stages[s], useLocalCoords);
82 if ((*stages[s]->getEffect())->willReadDstColor()) {
85 if ((*stages[s]->getEffect())->willReadFragmentPosition()) {
88 if ((*stages[s]->getEffect())->hasVertexCode()) {
164 SkAutoSTMalloc<8, const GrEffectStage*> stages(numStages);
201 stages[s] = stage;
209 stages.get(),
216 stages,
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/tnl/
t_pipeline.c 39 const struct tnl_pipeline_stage **stages )
48 for (i = 0 ; i < MAX_PIPELINE_STAGES && stages[i] ; i++) {
49 struct tnl_pipeline_stage *s = &tnl->pipeline.stages[i];
50 memcpy(s, stages[i], sizeof(*s));
64 struct tnl_pipeline_stage *s = &tnl->pipeline.stages[i];
133 struct tnl_pipeline_stage *s = &tnl->pipeline.stages[i];
162 struct tnl_pipeline_stage *s = &tnl->pipeline.stages[i];
176 * tampering with the internals of these stages in the way that
177 * drivers did in Mesa 3.4. These stages are basically black boxes,
182 * - removing redundant stages (making sure that the software rasterize
    [all...]
t_pipeline.h 41 const struct tnl_pipeline_stage **stages );
  /external/mesa3d/src/mesa/tnl/
t_pipeline.c 39 const struct tnl_pipeline_stage **stages )
48 for (i = 0 ; i < MAX_PIPELINE_STAGES && stages[i] ; i++) {
49 struct tnl_pipeline_stage *s = &tnl->pipeline.stages[i];
50 memcpy(s, stages[i], sizeof(*s));
64 struct tnl_pipeline_stage *s = &tnl->pipeline.stages[i];
133 struct tnl_pipeline_stage *s = &tnl->pipeline.stages[i];
162 struct tnl_pipeline_stage *s = &tnl->pipeline.stages[i];
176 * tampering with the internals of these stages in the way that
177 * drivers did in Mesa 3.4. These stages are basically black boxes,
182 * - removing redundant stages (making sure that the software rasterize
    [all...]
t_pipeline.h 41 const struct tnl_pipeline_stage **stages );
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-map-private.hh 113 assert (stage <= stages[table_index].len);
114 unsigned int start = stage ? stages[table_index][stage - 1].last_lookup : 0;
115 unsigned int end = stage < stages[table_index].len ? stages[table_index][stage].last_lookup : lookups[table_index].len;
132 stages[table_index].finish ();
152 hb_prealloced_array_t<stage_map_t, 4> stages[2]; /* GSUB/GPOS */
204 stages[table_index].finish ();
242 hb_prealloced_array_t<stage_info_t, 8> stages[2]; /* GSUB/GPOS */ variable
hb-ot-map.cc 121 stage_info_t *s = stages[table_index].push ();
294 if (stage_index < stages[table_index].len && stages[table_index][stage_index].index == stage) {
295 hb_ot_map_t::stage_map_t *stage_map = m.stages[table_index].push ();
298 stage_map->pause_func = stages[table_index][stage_index].pause_func;
  /external/harfbuzz_ng/src/
hb-ot-map-private.hh 113 assert (stage <= stages[table_index].len);
114 unsigned int start = stage ? stages[table_index][stage - 1].last_lookup : 0;
115 unsigned int end = stage < stages[table_index].len ? stages[table_index][stage].last_lookup : lookups[table_index].len;
132 stages[table_index].finish ();
152 hb_prealloced_array_t<stage_map_t, 4> stages[2]; /* GSUB/GPOS */
204 stages[table_index].finish ();
242 hb_prealloced_array_t<stage_info_t, 8> stages[2]; /* GSUB/GPOS */ variable
hb-ot-map.cc 121 stage_info_t *s = stages[table_index].push ();
294 if (stage_index < stages[table_index].len && stages[table_index][stage_index].index == stage) {
295 hb_ot_map_t::stage_map_t *stage_map = m.stages[table_index].push ();
298 stage_map->pause_func = stages[table_index][stage_index].pause_func;
  /external/chromium_org/third_party/skia/tests/
GLProgramsTest.cpp 40 const GrFragmentStage* stages[],
87 const GrFragmentStage* stage = stages[s];
98 if (!GetProcessorKey(*stages[s], gpu->glCaps(), useLocalCoords, &b, &effectKeySize)) {
257 SkAutoSTMalloc<8, const GrFragmentStage*> stages(numStages);
318 stages[s] = stage;
327 stages.get(),
338 stages,
339 stages + numColorStages));
341 SkDELETE(stages[s]);
  /external/chromium_org/third_party/webrtc/modules/audio_processing/ns/
nsx_core_neon_offsets.c 31 int offset_nsx_stages = offsetof(NsxInst_t, stages);
nsx_core_c.c 75 inst->stages + 10);
89 nShifts = 7 - inst->stages; // WIDTH_PR_MAP_SHIFT - inst->stages + 5;
150 normTmp = WEBRTC_SPL_MIN(20 - inst->stages,
153 tmpU32no1 = inst->featureSpecDiff << normTmp; // Q(normTmp-2*stages)
155 20 - inst->stages - normTmp);
157 // Q(20 - inst->stages)
nsx_core.c 347 tabind = inst->stages - inst->normData;
357 // magn is in Q(-stages), and the real lmagn values are:
358 // real_lmagn(i)=log(magn(i)*2^stages)=log(magn(i))+log(2^stages)
371 // + log(2^stages)
463 (int16_t)(inst->noiseSupFilter[i]), 14); // Q(normData-stages)
465 (int16_t)(inst->noiseSupFilter[i]), 14); // Q(normData-stages)
605 // Output in Q(minNorm-stages)
606 tmp32no1 += WEBRTC_SPL_LSHIFT_W32((int32_t)(inst->minNorm - inst->stages), 11);
621 // Shift fractional part to Q(minNorm-stages)
    [all...]
  /external/chromium_org/extensions/browser/api/declarative_webrequest/
webrequest_condition.h 37 // available in all request stages.
97 int stages() const { return applicable_request_stages_; } function in class:extensions::WebRequestCondition
webrequest_action.cc 543 if (stages() & apply_info->request_data.stage) {
557 WebRequestAction::WebRequestAction(int stages,
561 : stages_(stages),
587 CHECK(request_data.stage & stages());
621 CHECK(request_data.stage & stages());
653 CHECK(request_data.stage & stages());
683 CHECK(request_data.stage & stages());
777 CHECK(request_data.stage & stages());
829 CHECK(request_data.stage & stages());
868 CHECK(request_data.stage & stages());
    [all...]
  /external/tremolo/Tremolo/
res012.c 89 if(k+1>info->stages)info->stages=k+1;
134 for(s=0;s<info->stages;s++){
203 for(s=0;s<info->stages;s++){
  /external/webrtc/src/modules/audio_processing/ns/
nsx_core.c 483 tabind = inst->stages - inst->normData;
493 // magn is in Q(-stages), and the real lmagn values are:
494 // real_lmagn(i)=log(magn(i)*2^stages)=log(magn(i))+log(2^stages)
507 // + log(2^stages)
600 (WebRtc_Word16)(inst->noiseSupFilter[i]), 14); // Q(normData-stages)
602 (WebRtc_Word16)(inst->noiseSupFilter[i]), 14); // Q(normData-stages)
    [all...]
  /external/libvorbis/lib/
res0.c 45 int stages; member in struct:__anon8448
132 for(k=0;k<look->stages;k++)
286 int stages=ilog(info->secondstages[j]); local
287 if(stages){
288 if(stages>maxstage)maxstage=stages;
289 look->partbooks[j]=_ogg_calloc(stages,sizeof(*look->partbooks[j]));
290 for(k=0;k<stages;k++)
305 look->stages=maxstage;
576 for(s=0;s<look->stages;s++)
    [all...]

Completed in 903 milliseconds

1 2 3 4 5