/third_party/mesa3d/src/gallium/drivers/radeonsi/ |
D | si_debug.c | 899 static void si_print_annotated_shader(struct si_shader *shader, struct ac_wave_info *waves, in si_print_annotated_shader() argument 913 if (start_addr <= waves[i].pc && waves[i].pc <= end_addr) in si_print_annotated_shader() 920 waves = &waves[i]; in si_print_annotated_shader() 963 while (num_waves && inst->addr == waves->pc) { in si_print_annotated_shader() 967 waves->se, waves->sh, waves->cu, waves->simd, waves->wave, waves->exec); in si_print_annotated_shader() 970 fprintf(f, "INST32=%08X" COLOR_RESET "\n", waves->inst_dw0); in si_print_annotated_shader() 972 fprintf(f, "INST64=%08X %08X" COLOR_RESET "\n", waves->inst_dw0, waves->inst_dw1); in si_print_annotated_shader() 975 waves->matched = true; in si_print_annotated_shader() 976 waves = &waves[1]; in si_print_annotated_shader() 989 struct ac_wave_info waves[AC_MAX_WAVES_PER_CHIP]; in si_dump_annotated_shaders() local [all …]
|
/third_party/mesa3d/src/amd/vulkan/ |
D | radv_debug.c | 301 struct ac_wave_info *waves, unsigned num_waves, FILE *f) in radv_dump_annotated_shader() argument 314 if (start_addr <= waves[i].pc && waves[i].pc <= end_addr) in radv_dump_annotated_shader() 322 waves = &waves[i]; in radv_dump_annotated_shader() 344 while (num_waves && start_addr + inst->offset == waves->pc) { in radv_dump_annotated_shader() 348 waves->se, waves->sh, waves->cu, waves->simd, waves->wave, waves->exec); in radv_dump_annotated_shader() 351 fprintf(f, "INST32=%08X" COLOR_RESET "\n", waves->inst_dw0); in radv_dump_annotated_shader() 353 fprintf(f, "INST64=%08X %08X" COLOR_RESET "\n", waves->inst_dw0, waves->inst_dw1); in radv_dump_annotated_shader() 356 waves->matched = true; in radv_dump_annotated_shader() 357 waves = &waves[1]; in radv_dump_annotated_shader() 370 struct ac_wave_info waves[AC_MAX_WAVES_PER_CHIP]; in radv_dump_annotated_shaders() local [all …]
|
D | radv_device.c | 3635 uint32_t size_per_wave, uint32_t waves, in radv_emit_graphics_scratch() argument 3648 S_0286E8_WAVES(waves) | S_0286E8_WAVESIZE(round_up_u32(size_per_wave, 1024))); in radv_emit_graphics_scratch() 3653 uint32_t size_per_wave, uint32_t waves, in radv_emit_compute_scratch() argument 3670 S_00B860_WAVES(waves) | S_00B860_WAVESIZE(round_up_u32(size_per_wave, 1024))); in radv_emit_compute_scratch()
|
/third_party/skia/third_party/externals/spirv-cross/shaders/comp/ |
D | generate_height.comp | 67 // Pick out positive and negative travelling waves. 80 … // The sqrt(G * k_len) factor represents how fast ocean waves at different frequencies propagate. 89 vec2 res = a + b; // Sum up forward and backwards travelling waves.
|
/third_party/mindspore/mindspore/_extends/graph_kernel/model/ |
D | graph_parallel.py | 73 waves = (total_block + self.MAX_BLOCK - 1) // self.MAX_BLOCK 74 self.block_weight = total_weight // total_block * waves 102 waves = (block_x + self.MAX_BLOCK - 1) // self.MAX_BLOCK 106 dtype_size * thread_x * thread_y) * waves
|
/third_party/ffmpeg/libavcodec/ |
D | atrac3plus.c | 1427 iwav = &ctx->waves_info->waves[dst[sb].start_index]; in decode_tones_frequency() 1452 iwav = &ctx->waves_info->waves[ref[sb].start_index]; in decode_tones_frequency() 1453 owav = &ctx->waves_info->waves[dst[sb].start_index]; in decode_tones_frequency() 1488 wsrc = &ctx->waves_info->waves[dst[sb].start_index]; in decode_tones_amplitude() 1489 wref = &ctx->waves_info->waves[ref[sb].start_index]; in decode_tones_amplitude() 1518 ctx->waves_info->waves[dst[sb].start_index + i].amp_sf = get_bits(gb, 6); in decode_tones_amplitude() 1520 ctx->waves_info->waves[dst[sb].start_index].amp_sf = get_bits(gb, 6); in decode_tones_amplitude() 1529 ctx->waves_info->waves[dst[sb].start_index + i].amp_sf = in decode_tones_amplitude() 1533 ctx->waves_info->waves[dst[sb].start_index].amp_sf = in decode_tones_amplitude() 1547 ctx->waves_info->waves[refwaves[dst[sb].start_index + i]].amp_sf : 34; in decode_tones_amplitude() [all …]
|
D | atrac3plus.h | 129 Atrac3pWaveParam waves[48]; member
|
D | atrac3plusdsp.c | 135 Atrac3pWaveParam *wave_param = &synth_param->waves[waves_info->start_index]; in waves_synth()
|
/third_party/mesa3d/src/amd/compiler/ |
D | aco_live_var_analysis.cpp | 327 get_addr_sgpr_from_waves(Program* program, uint16_t waves) in get_addr_sgpr_from_waves() argument 330 uint16_t sgprs = std::min(program->dev.physical_sgprs / waves, 128); in get_addr_sgpr_from_waves() 337 get_addr_vgpr_from_waves(Program* program, uint16_t waves) in get_addr_vgpr_from_waves() argument 339 uint16_t vgprs = program->dev.physical_vgprs / waves & ~(program->dev.vgpr_alloc_granule - 1); in get_addr_vgpr_from_waves()
|
D | README-ISA.md | 168 It can even launch PS waves before NGG (or VS) ends.
|
D | README.md | 17 In case of GCN / RDNA the parallelism is achieved by executing the shader on several waves, and eac…
|
/third_party/mesa3d/src/amd/common/ |
D | ac_debug.h | 73 struct ac_wave_info waves[AC_MAX_WAVES_PER_CHIP]);
|
D | ac_debug.c | 801 struct ac_wave_info waves[AC_MAX_WAVES_PER_CHIP]) in ac_get_wave_info() 825 w = &waves[num_waves]; in ac_get_wave_info() 837 qsort(waves, num_waves, sizeof(struct ac_wave_info), compare_wave); in ac_get_wave_info()
|
/third_party/mesa3d/src/freedreno/computerator/examples/ |
D | test-regfile.sh | 25 ; busy loop to make sure it actually uses all possible waves
|
/third_party/gstreamer/gstplugins_bad/gst/audiovisualizers/ |
D | README | 60 - drawing: waves (style, color), space (style,color) 72 - we use the wave, filtered waves, balance and fft so far
|
/third_party/skia/third_party/externals/oboe/samples/MegaDrone/ |
D | README.md | 3 Ever wondered what 100 square waves sound like when played together? Well now you can find out!
|
/third_party/ffmpeg/doc/ |
D | ffplay.texi | 91 @item 1, waves 92 show audio waves
|
/third_party/mesa3d/docs/relnotes/ |
D | 21.2.2.rst | 250 - radv: fix determining the maximum number of waves that can use scratch
|
D | 21.0.0.rst | 2084 - radeonsi: adjust tess SGPRs to allow fully occupied 3 HS waves of triangles 2161 - radeonsi: only mask 1 CU for GS/VS waves on gfx10.3 2997 - radv: only mask 1 CU for GS/VS waves on GFX10.3
|
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/resources/ |
D | Transliterator_Kanji_English.txt | 2764 波>'[waves]'; 2817 涛>'[large waves]'; 2879 湃>'[sound of waves]'; 2997 濤>'[large waves]'; 3007 瀁>'[waves]'; 3023 瀲>'[waves]';
|
/third_party/boost/libs/math/doc/sf/ |
D | jacobi_elliptic.qbk | 121 these are sine waves, while as /k/ tends to 1 they become hyperbolic functions:
|
/third_party/flutter/flutter/packages/flutter/lib/src/cupertino/ |
D | icons.dart | 585 /// * [volume_mute], which is similar, but has no sound waves. 613 /// * [volume_mute], which is similar, but has no sound waves.
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | IntrinsicsAMDGPU.td | 1398 // bar_val is the total number of waves that will wait on this 1409 // bar_val is the total number of waves that will wait on this
|
/third_party/icu/icu4j/main/shared/data/ |
D | Transliterator_Han_Latin_Definition.txt | 2730 奔騰 < \(of\-waves\)\-to\-surge\-forward; 4355 淜 < roar\-of\-dashing\-waves; 8004 湃 < sound\-of\-waves; 10489 涛 < large\-waves; 11386 波瀾 < great\-waves; 19083 波 < waves; 26467 奔騰 > \(of\-waves\)\-to\-surge\-forward; 29344 波瀾 > great\-waves; 29345 波濤 > great\-waves; 38962 淜 > roar\-of\-dashing\-waves; [all …]
|
/third_party/skia/third_party/externals/brotli/tests/testdata/ |
D | plrabn12.txt | 254 From off the tossing of these fiery waves; 376 Hath vexed the Red-Sea coast, whose waves o'erthrew 1455 Whose waves of torrent fire inflame with rage. 3450 His constant lamp, and waves his purple wings, 5751 And surging waves, as mountains, to assault 8349 And scourged with many a stroke the indignant waves. 9876 Rode tilting o'er the waves; all dwellings else 9971 Of Paradise by might of waves be moved 10261 On their embattled ranks the waves return, 10641 In signal of remove, waves fiercely round:
|