Home
last modified time | relevance | path

Searched refs:stages (Results 1 – 25 of 224) sorted by relevance

123456789

/external/skqp/src/jumper/
Dbuild_stages.py15 stages = 'src/jumper/SkJumper_stages.cpp' variable
23 stages = sys.argv[4] if len(sys.argv) > 4 else stages variable
39 ['-c', stages] +
42 ['-c', stages] +
45 ['-c', stages] +
48 ['-c', stages] +
66 ['-c', stages] +
69 ['-c', stages] +
81 ['-c', stages] +
84 ['-c', stages] +
[all …]
/external/skia/src/jumper/
Dbuild_stages.py15 stages = 'src/jumper/SkJumper_stages.cpp' variable
23 stages = sys.argv[4] if len(sys.argv) > 4 else stages variable
39 ['-c', stages] +
42 ['-c', stages] +
45 ['-c', stages] +
48 ['-c', stages] +
66 ['-c', stages] +
69 ['-c', stages] +
81 ['-c', stages] +
84 ['-c', stages] +
[all …]
/external/adhd/scripts/audio_tuning/
Dconf2ini2.py94 stages = []
96 stages.append(print_drc)
98 stages.append(print_eq)
100 if is_true(d, 'global.enable_swap') and len(stages) >= 2:
101 stages[0], stages[1] = stages[1], stages[0]
103 for i in range(len(stages)):
106 dst = 'dst' if i == len(stages) - 1 else intermediate_name(i + 1)
107 stages[i](d, src, dst)
/external/skqp/src/core/
DSkRasterPipeline.cpp38 auto stages = fAlloc->makeArrayDefault<StageList>(src.fNumStages); in extend() local
43 stages[n] = *st; in extend()
44 stages[n].prev = &stages[n-1]; in extend()
47 stages[0] = *st; in extend()
48 stages[0].prev = fStages; in extend()
50 fStages = &stages[src.fNumStages - 1]; in extend()
57 std::vector<const char*> stages; in dump() local
65 stages.push_back(name); in dump()
67 std::reverse(stages.begin(), stages.end()); in dump()
68 for (const char* name : stages) { in dump()
/external/skia/src/core/
DSkRasterPipeline.cpp38 auto stages = fAlloc->makeArrayDefault<StageList>(src.fNumStages); in extend() local
43 stages[n] = *st; in extend()
44 stages[n].prev = &stages[n-1]; in extend()
47 stages[0] = *st; in extend()
48 stages[0].prev = fStages; in extend()
50 fStages = &stages[src.fNumStages - 1]; in extend()
57 std::vector<const char*> stages; in dump() local
65 stages.push_back(name); in dump()
67 std::reverse(stages.begin(), stages.end()); in dump()
68 for (const char* name : stages) { in dump()
/external/mesa3d/src/gallium/drivers/ilo/core/
Dilo_state_urb.c624 } stages[4]; in urb_set_gen7_3dstate_urb() local
630 stages[0].alloc_8kb = conf->vs_urb_alloc_8kb; in urb_set_gen7_3dstate_urb()
631 stages[1].alloc_8kb = conf->hs_urb_alloc_8kb; in urb_set_gen7_3dstate_urb()
632 stages[2].alloc_8kb = conf->ds_urb_alloc_8kb; in urb_set_gen7_3dstate_urb()
633 stages[3].alloc_8kb = conf->gs_urb_alloc_8kb; in urb_set_gen7_3dstate_urb()
635 stages[0].entry_rows = conf->vs_entry_rows; in urb_set_gen7_3dstate_urb()
636 stages[1].entry_rows = conf->hs_entry_rows; in urb_set_gen7_3dstate_urb()
637 stages[2].entry_rows = conf->ds_entry_rows; in urb_set_gen7_3dstate_urb()
638 stages[3].entry_rows = conf->gs_entry_rows; in urb_set_gen7_3dstate_urb()
640 stages[0].entry_count = conf->vs_entry_count; in urb_set_gen7_3dstate_urb()
[all …]
/external/webrtc/webrtc/common_audio/signal_processing/
Dcomplex_bit_reverse.c49 void WebRtcSpl_ComplexBitReverse(int16_t* __restrict complex_data, int stages) { in WebRtcSpl_ComplexBitReverse() argument
55 if (stages == 7 || stages == 8) { in WebRtcSpl_ComplexBitReverse()
60 if (stages == 8) { in WebRtcSpl_ComplexBitReverse()
81 int n = 1 << stages; in WebRtcSpl_ComplexBitReverse()
Dcomplex_fft_mips.c22 int WebRtcSpl_ComplexFFT(int16_t frfi[], int stages, int mode) { in WebRtcSpl_ComplexFFT() argument
40 n = 1 << stages; in WebRtcSpl_ComplexFFT()
151 int WebRtcSpl_ComplexIFFT(int16_t frfi[], int stages, int mode) { in WebRtcSpl_ComplexIFFT() argument
161 n = 1 << stages; in WebRtcSpl_ComplexIFFT()
Dcomplex_bit_reverse_mips.c64 void WebRtcSpl_ComplexBitReverse(int16_t frfi[], int stages) { in WebRtcSpl_ComplexBitReverse() argument
71 if (stages == 8) { in WebRtcSpl_ComplexBitReverse()
123 } else if (stages == 7) { in WebRtcSpl_ComplexBitReverse()
Dcomplex_fft.c29 int WebRtcSpl_ComplexFFT(int16_t frfi[], int stages, int mode) in WebRtcSpl_ComplexFFT() argument
38 n = 1 << stages; in WebRtcSpl_ComplexFFT()
158 int WebRtcSpl_ComplexIFFT(int16_t frfi[], int stages, int mode) in WebRtcSpl_ComplexIFFT() argument
169 n = 1 << stages; in WebRtcSpl_ComplexIFFT()
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
DRungeKuttaIntegrator.java106 final int stages = c.length + 1; in integrate() local
110 final double[][] yDotK = new double[stages][]; in integrate()
111 for (int i = 0; i < stages; ++i) { in integrate()
124 interpolator = new DummyStepInterpolator(yTmp, yDotK[stages - 1], forward); in integrate()
146 for (int k = 1; k < stages; ++k) { in integrate()
163 for (int l = 1; l < stages; ++l) { in integrate()
172 System.arraycopy(yDotK[stages - 1], 0, yDotTmp, 0, y0.length); in integrate()
DEmbeddedRungeKuttaIntegrator.java203 final int stages = c.length + 1; in integrate() local
207 final double[][] yDotK = new double[stages][y0.length]; in integrate()
218 interpolator = new DummyStepInterpolator(yTmp, yDotK[stages - 1], forward); in integrate()
265 for (int k = 1; k < stages; ++k) { in integrate()
282 for (int l = 1; l < stages; ++l) { in integrate()
303 System.arraycopy(yDotK[stages - 1], 0, yDotTmp, 0, y0.length); in integrate()
/external/harfbuzz_ng/src/
Dhb-ot-map-private.hh119 assert (stage <= stages[table_index].len); in get_stage_lookups()
120 unsigned int start = stage ? stages[table_index][stage - 1].last_lookup : 0; in get_stage_lookups()
121 …unsigned int end = stage < stages[table_index].len ? stages[table_index][stage].last_lookup : lo… in get_stage_lookups()
138 stages[table_index].finish (); in finish()
152 hb_prealloced_array_t<stage_map_t, 4> stages[2]; /* GSUB/GPOS */ member
194 stages[table_index].finish (); in finish()
246 hb_prealloced_array_t<stage_info_t, 8> stages[2]; /* GSUB/GPOS */ member
Dhb-ot-map.cc127 stage_info_t *s = stages[table_index].push (); in add_pause()
326 … if (stage_index < stages[table_index].len && stages[table_index][stage_index].index == stage) { in compile()
327 hb_ot_map_t::stage_map_t *stage_map = m.stages[table_index].push (); in compile()
330 stage_map->pause_func = stages[table_index][stage_index].pause_func; in compile()
/external/mesa3d/src/mesa/tnl/
Dt_pipeline.c39 const struct tnl_pipeline_stage **stages ) in _tnl_install_pipeline() argument
48 for (i = 0 ; i < MAX_PIPELINE_STAGES && stages[i] ; i++) { in _tnl_install_pipeline()
49 struct tnl_pipeline_stage *s = &tnl->pipeline.stages[i]; in _tnl_install_pipeline()
50 memcpy(s, stages[i], sizeof(*s)); in _tnl_install_pipeline()
64 struct tnl_pipeline_stage *s = &tnl->pipeline.stages[i]; in _tnl_destroy_pipeline()
211 struct tnl_pipeline_stage *s = &tnl->pipeline.stages[i]; in _tnl_run_pipeline()
240 struct tnl_pipeline_stage *s = &tnl->pipeline.stages[i]; in _tnl_run_pipeline()
/external/swiftshader/third_party/LLVM/lib/Target/MBlaze/
DMBlazeSchedule3.td18 // The instruction takes one cycle to execute in each of the stages. The
32 // pipeline stages except the execute stage, which takes three cycles. The
45 // stages except the execute stage, which takes 34 cycles. The two
58 // The instruction takes one cycle to execute in each of the pipeline stages
71 // one cycle to execute in each of the pipeline stages. The source operand is
80 // instruction takes one cycle to execute in each of the pipeline stages. The
91 // the pipeline stages. The source operand is read during the decode stage
101 // instruction takes one cycle to execute in each of the pipeline stages
113 // the pipeline stages except the execute stage, which takes six cycles. The
126 // each of the pipeline stages except the execute stage, which takes 30
[all …]
DMBlazeSchedule5.td18 // The instruction takes one cycle to execute in each of the stages. The
34 // pipeline stages. The two source operands are read during the decode stage
48 // stages except the memory access stage, which takes 31 cycles. The two
63 // The instruction takes one cycle to execute in each of the pipeline stages.
77 // one cycle to execute in each of the pipeline stages. The source operand is
88 // instruction takes one cycle to execute in each of the pipeline stages. The
101 // the pipeline stages. The source operand is read during the decode stage
113 // instruction takes one cycle to execute in each of the pipeline stages
127 // the pipeline stages except the memory access stage, which takes two
142 // each of the pipeline stages except the memory access stage, which takes 26
[all …]
/external/tensorflow/tensorflow/contrib/mpi_collectives/
Dmpi_allreduce_test.py58 stages = 13
69 for i in range(stages):
78 for i in range(stages):
88 for i in range(stages):
117 for i in range(stages):
/external/mesa3d/src/mesa/main/
Dpipelineobj.c225 _mesa_UseProgramStages(GLuint pipeline, GLbitfield stages, GLuint program) in _mesa_UseProgramStages() argument
235 pipeline, stages, program); in _mesa_UseProgramStages()
261 if (stages != GL_ALL_SHADER_BITS && (stages & ~any_valid_stages) != 0) { in _mesa_UseProgramStages()
327 if ((stages & GL_VERTEX_SHADER_BIT) != 0) in _mesa_UseProgramStages()
330 if ((stages & GL_FRAGMENT_SHADER_BIT) != 0) in _mesa_UseProgramStages()
333 if ((stages & GL_GEOMETRY_SHADER_BIT) != 0) in _mesa_UseProgramStages()
336 if ((stages & GL_TESS_CONTROL_SHADER_BIT) != 0) in _mesa_UseProgramStages()
339 if ((stages & GL_TESS_EVALUATION_SHADER_BIT) != 0) in _mesa_UseProgramStages()
342 if ((stages & GL_COMPUTE_SHADER_BIT) != 0) in _mesa_UseProgramStages()
/external/webrtc/webrtc/modules/audio_processing/ns/
Dnsx_core.c346 tabind = inst->stages - inst->normData; in NoiseEstimationC()
604 tmp32no1 += (inst->minNorm - inst->stages) << 11; in WebRtcNsx_CalcParametricNoiseEstimate()
647 inst->stages = 7; in WebRtcNsx_InitCore()
655 inst->stages = 8; in WebRtcNsx_InitCore()
667 inst->real_fft = WebRtcSpl_CreateRealFFT(inst->stages); in WebRtcNsx_InitCore()
859 histIndex = ((inst->featureSpecDiff * 5) >> inst->stages) / in WebRtcNsx_FeatureParameterExtraction()
899 tmp32 = (int32_t)((tmpU32 << (9 + inst->stages)) / numHistLrt / in WebRtcNsx_FeatureParameterExtraction()
1064 logCurSpectralFlatness += ((int32_t)(inst->stages - 1) << (inst->stages + 7)); // Q(8+stages-1) in WebRtcNsx_ComputeSpectralFlatness()
1065 logCurSpectralFlatness -= (tmp32 << (inst->stages - 1)); in WebRtcNsx_ComputeSpectralFlatness()
1066 logCurSpectralFlatness <<= (10 - inst->stages); // Q17 in WebRtcNsx_ComputeSpectralFlatness()
[all …]
Dnsx_core_c.c75 (inst->stages + 11); in WebRtcNsx_SpeechNoiseProb()
89 nShifts = 7 - inst->stages; // WIDTH_PR_MAP_SHIFT - inst->stages + 5; in WebRtcNsx_SpeechNoiseProb()
150 normTmp = WEBRTC_SPL_MIN(20 - inst->stages, in WebRtcNsx_SpeechNoiseProb()
154 tmpU32no2 = inst->timeAvgMagnEnergy >> (20 - inst->stages - normTmp); in WebRtcNsx_SpeechNoiseProb()
/external/deqp/doc/testspecs/GLES31/
Dfunctional.separate_shader.txt27 + Replacement of pipeline stages
30 + Interface compatibility between shader stages
31 + glProgramUniform on the pipeline's stages
60 returns the correct programs for vertex and shader stages.
67 and then possibly replace either or both of the stages with a new
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineTimestampTests.cpp168 TimestampTestParam (const VkPipelineStageFlagBits* stages,
182 TimestampTestParam::TimestampTestParam(const VkPipelineStageFlagBits* stages, in TimestampTestParam() argument
189 m_stageVec.push_back(stages[ndx]); in TimestampTestParam()
238 TransferTimestampTestParam (const VkPipelineStageFlagBits* stages,
250 TransferTimestampTestParam::TransferTimestampTestParam(const VkPipelineStageFlagBits* stages, in TransferTimestampTestParam() argument
254 : TimestampTestParam(stages, stageCount, inRenderPass) in TransferTimestampTestParam()
632 const StageFlagVector& stages,
670 const StageFlagVector& stages, in TimestampTestInstance() argument
673 , m_stages (stages) in TimestampTestInstance()
941 const StageFlagVector stages,
[all …]
/external/libopus/celt/
Dkiss_fft.c359 int stages=0; in kf_factor() local
382 facbuf[2*stages] = p; in kf_factor()
383 if (p==2 && stages > 1) in kf_factor()
385 facbuf[2*stages] = 4; in kf_factor()
388 stages++; in kf_factor()
394 for (i=0;i<stages/2;i++) in kf_factor()
398 facbuf[2*i] = facbuf[2*(stages-i-1)]; in kf_factor()
399 facbuf[2*(stages-i-1)] = tmp; in kf_factor()
401 for (i=0;i<stages;i++) in kf_factor()
/external/gemmlowp/doc/
Doutput.md21 the bias-addition and activation function are just additional stages in the
29 The output pipeline is specified as a `std::tuple` of "output stages", each of
32 All available output stages are defined in

123456789