/external/sonivox/arm-wt-22k/host_src/ |
D | eas_wave.c | 151 wFile->wh.nRiffTag = riffTag; in WaveFileCreate() 152 wFile->wh.nRiffSize = sizeof(WAVE_HEADER) - 8; in WaveFileCreate() 153 wFile->wh.nWaveTag = waveTag; in WaveFileCreate() 154 wFile->wh.nFmtTag = fmtTag; in WaveFileCreate() 155 wFile->wh.nFmtSize = sizeof(FMT_CHUNK); in WaveFileCreate() 158 wFile->wh.fc.wFormatTag = 1; in WaveFileCreate() 159 wFile->wh.fc.nChannels = (EAS_U16) nChannels; in WaveFileCreate() 160 wFile->wh.fc.nSamplesPerSec = (EAS_U32) nSamplesPerSec; in WaveFileCreate() 161 wFile->wh.fc.wBitsPerSample = (EAS_U16) wBitsPerSample; in WaveFileCreate() 162 wFile->wh.fc.nBlockAlign = (EAS_U16) (nChannels * (EAS_U16) (wBitsPerSample / 8)); in WaveFileCreate() [all …]
|
D | eas_wave.h | 60 WAVE_HEADER wh; member
|
/external/tcpdump/ |
D | print-enc.c | 82 #define ENC_PRINT_TYPE(wh, xf, nam) \ argument 83 if ((wh) & (xf)) { \ 84 ND_PRINT((ndo, "%s%s", nam, (wh) == (xf) ? "): " : ",")); \ 85 (wh) &= ~(xf); \
|
/external/libaom/libaom/aom_dsp/x86/ |
D | intrapred_ssse3.c | 632 static INLINE void smooth_pred_4xh(const __m128i *pixel, const __m128i *wh, in smooth_pred_4xh() argument 643 const __m128i wg_wg = _mm_shuffle_epi8(wh[0], d); in smooth_pred_4xh() 644 const __m128i sc_sc = _mm_shuffle_epi8(wh[1], d); in smooth_pred_4xh() 670 __m128i wh[4], ww[2]; in aom_smooth_predictor_4x4_ssse3() local 671 load_weight_w4(sm_weight_arrays, 4, wh, ww); in aom_smooth_predictor_4x4_ssse3() 673 smooth_pred_4xh(pixels, wh, ww, 4, dst, stride, 0); in aom_smooth_predictor_4x4_ssse3() 681 __m128i wh[4], ww[2]; in aom_smooth_predictor_4x8_ssse3() local 682 load_weight_w4(sm_weight_arrays, 8, wh, ww); in aom_smooth_predictor_4x8_ssse3() 684 smooth_pred_4xh(pixels, wh, ww, 8, dst, stride, 0); in aom_smooth_predictor_4x8_ssse3() 693 __m128i wh[4], ww[2]; in aom_smooth_predictor_4x16_ssse3() local [all …]
|
/external/linux-kselftest/tools/testing/selftests/powerpc/ptrace/ |
D | ptrace-hwbreak.c | 219 int wh, range; in launch_watchpoints() local 248 wh = set_hwbreakpoint_addr((void *)data, 0); in launch_watchpoints() 253 del_hwbreakpoint_addr(wh); in launch_watchpoints() 259 wh = set_hwbreakpoint_addr((void *)data, range); in launch_watchpoints() 264 del_hwbreakpoint_addr(wh); in launch_watchpoints()
|
/external/libchrome/mojo/public/cpp/system/tests/ |
D | core_unittest.cc | 115 std::vector<Handle> wh; in TEST() local 116 wh.push_back(h.get()); in TEST() 120 MojoResult rv = WaitMany(wh.data(), sigs.data(), wh.size(), &result_index); in TEST() 169 std::vector<Handle> wh; in TEST() local 170 wh.push_back(h0.get()); in TEST() 171 wh.push_back(h1.get()); in TEST() 178 MojoResult rv = WaitMany(wh.data(), sigs.data(), wh.size(), &result_index, in TEST()
|
/external/skia/src/gpu/effects/ |
D | GrRectBlurEffect.fp | 126 float2 wh = smallDims - float2(center, center); 127 half hcoord = half(((abs(translatedPos.x - 0.5 * width) - 0.5 * wh.x)) / profileSize); 129 half vcoord = half(((abs(translatedPos.y - 0.5 * height) - 0.5 * wh.y)) / profileSize); 138 half2 wh = smallDims - half2(center, center); 139 half hcoord = ((half(abs(translatedPos.x - 0.5 * width)) - 0.5 * wh.x)) / profileSize; 141 half vcoord = ((half(abs(translatedPos.y - 0.5 * height)) - 0.5 * wh.y)) / profileSize;
|
D | GrCircleBlurFragmentProcessor.cpp | 345 SkScalar wh = testData->fRandom->nextRangeScalar(100.f, 1000.f); in TestCreate() local 347 SkRect circle = SkRect::MakeWH(wh, wh); in TestCreate()
|
D | GrCircleBlurFragmentProcessor.fp | 288 SkScalar wh = testData->fRandom->nextRangeScalar(100.f, 1000.f); 290 SkRect circle = SkRect::MakeWH(wh, wh);
|
/external/skqp/src/gpu/effects/ |
D | GrRectBlurEffect.fp | 125 float2 wh = smallDims - float2(center, center); 126 half hcoord = ((abs(translatedPos.x - 0.5 * width) - 0.5 * wh.x)) / profileSize; 128 half vcoord = ((abs(translatedPos.y - 0.5 * height) - 0.5 * wh.y)) / profileSize; 137 half2 wh = smallDims - float2(center, center); 138 half hcoord = ((abs(translatedPos.x - 0.5 * width) - 0.5 * wh.x)) / profileSize; 140 half vcoord = ((abs(translatedPos.y - 0.5 * height) - 0.5 * wh.y)) / profileSize;
|
D | GrCircleBlurFragmentProcessor.cpp | 346 SkScalar wh = testData->fRandom->nextRangeScalar(100.f, 1000.f); in TestCreate() local 348 SkRect circle = SkRect::MakeWH(wh, wh); in TestCreate()
|
D | GrCircleBlurFragmentProcessor.fp | 288 SkScalar wh = testData->fRandom->nextRangeScalar(100.f, 1000.f); 290 SkRect circle = SkRect::MakeWH(wh, wh);
|
/external/mesa3d/src/gallium/drivers/radeon/ |
D | radeon_video.c | 146 unsigned wh; in si_vid_join_surfaces() local 153 wh = surfaces[i]->u.legacy.bankw * surfaces[i]->u.legacy.bankh; in si_vid_join_surfaces() 154 if (wh < best_wh) { in si_vid_join_surfaces() 155 best_wh = wh; in si_vid_join_surfaces()
|
/external/mesa3d/src/gallium/drivers/r600/ |
D | radeon_video.c | 154 unsigned wh; in rvid_join_surfaces() local 160 wh = surfaces[i]->u.legacy.bankw * surfaces[i]->u.legacy.bankh; in rvid_join_surfaces() 161 if (wh < best_wh) { in rvid_join_surfaces() 162 best_wh = wh; in rvid_join_surfaces()
|
/external/skia/src/utils/ |
D | SkMultiPictureDocument.cpp | 153 PagerCanvas(SkISize wh, SkDocumentPage* dst, int count) in PagerCanvas() 154 : SkNWayCanvas(wh.width(), wh.height()), fDst(dst), fCount(count) { in PagerCanvas()
|
/external/skqp/src/utils/ |
D | SkMultiPictureDocument.cpp | 153 PagerCanvas(SkISize wh, SkDocumentPage* dst, int count) in PagerCanvas() 154 : SkNWayCanvas(wh.width(), wh.height()), fDst(dst), fCount(count) { in PagerCanvas()
|
/external/python/cpython2/Demo/threads/ |
D | sync.py | 530 wh.acquire(); j = randint(0,i); wh.release() 568 global TID, tid, io, wh, randint, alive 575 wh = thread.allocate_lock() # for calls to random
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/Hexagon/ |
D | cmpy-round.ll | 26 %v3 = call i32 @llvm.hexagon.M4.cmpyi.wh(i64 -2147483648, i32 -2147483648) 38 declare i32 @llvm.hexagon.M4.cmpyi.wh(i64, i32) #1
|
/external/icu/icu4c/source/data/locales/ |
D | mi.txt | 5 ExemplarCharacters{"[a ā e ē h i ī k m n {ng} o ō p r t u ū w {wh}]"} 406 "Paengawhāwhā", 450 "Paengawhāwhā",
|
/external/honggfuzz/examples/apache-httpd/corpus_http2/ |
D | 147fdd1e4afbb2aef6799a7120a805ed.00000ff4.honggfuzz.cov | 19 ��TW�3�HV{xx-Bb�G�;��ZW]��6P��?��K��0�С�%O��u�,�r҅�Ht�@7���cQ��;k�L�j���!�GҐ�C�e���wh;��… 21 ��TW�3�HV{xx-Bb�G�;��ZW]��6P��?��K��0�С�%O��u�,�r҅�Ht�@7���cQ��;k�L�j���!�GҐ�C�e���wh;��…
|
D | 903c638d0db72a65d578537ceb3d4d42.00002728.honggfuzz.cov | 11 \-̻ ��J�X���k��;ZKo����}�Lb�g:~�f���j��g�����!Q�^i�[i�s\����wh�'�N�u��g�6Ȇ[����ż������X… 26 \-̻ ��J�X���k��;ZKo����}�Lb�g:~�f���j��g�����!Q�^i�[i�s\����wh�'�N�u��g�6Ȇ[����ż������X…
|
/external/honggfuzz/examples/apache-httpd/corpus_http1/ |
D | 147fdd1e4afbb2aef6799a7120a805ed.00000ff4.honggfuzz.cov | 19 ��TW�3�HV{xx-Bb�G�;��ZW]��6P��?��K��0�С�%O��u�,�r҅�Ht�@7���cQ��;k�L�j���!�GҐ�C�e���wh;��… 21 ��TW�3�HV{xx-Bb�G�;��ZW]��6P��?��K��0�С�%O��u�,�r҅�Ht�@7���cQ��;k�L�j���!�GҐ�C�e���wh;��…
|
/external/webrtc/webrtc/modules/audio_coding/codecs/g722/ |
D | g722_decode.c | 201 static const int wh[3] = {0, -214, 798}; in WebRtc_g722_decode() local 351 wd1 += wh[wd2]; in WebRtc_g722_decode()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/Hexagon/intrinsics/ |
D | xtype_complex.ll | 195 declare i32 @llvm.hexagon.M4.cmpyi.wh(i64, i32) 197 %z = call i32 @llvm.hexagon.M4.cmpyi.wh(i64 %a, i32 %b) 209 declare i32 @llvm.hexagon.M4.cmpyr.wh(i64, i32) 211 %z = call i32 @llvm.hexagon.M4.cmpyr.wh(i64 %a, i32 %b)
|
/external/llvm/test/CodeGen/Hexagon/intrinsics/ |
D | xtype_complex.ll | 195 declare i32 @llvm.hexagon.M4.cmpyi.wh(i64, i32) 197 %z = call i32 @llvm.hexagon.M4.cmpyi.wh(i64 %a, i32 %b) 209 declare i32 @llvm.hexagon.M4.cmpyr.wh(i64, i32) 211 %z = call i32 @llvm.hexagon.M4.cmpyr.wh(i64 %a, i32 %b)
|