/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/skia/tools/ |
D | sk_tool_utils.cpp | 176 int wh = *filterSize = 2*halfFilterSize + 1; in create_2d_kernel() local 178 float* temp = new float[wh*wh]; in create_2d_kernel() 181 for (int yOff = 0; yOff < wh; ++yOff) { in create_2d_kernel() 182 for (int xOff = 0; xOff < wh; ++xOff) { in create_2d_kernel() 183 temp[yOff*wh+xOff] = gaussian2d_value(xOff-halfFilterSize, yOff-halfFilterSize, sigma); in create_2d_kernel() 185 filterTot += temp[yOff*wh+xOff]; in create_2d_kernel() 190 for (int yOff = 0; yOff < wh; ++yOff) { in create_2d_kernel() 191 for (int xOff = 0; xOff < wh; ++xOff) { in create_2d_kernel() 192 temp[yOff*wh+xOff] /= filterTot; in create_2d_kernel() 199 static SkPMColor blur_pixel(const SkBitmap& bm, int x, int y, float* kernel, int wh) { in blur_pixel() argument [all …]
|
/external/skqp/tools/ |
D | sk_tool_utils.cpp | 236 int wh = *filterSize = 2*halfFilterSize + 1; in create_2d_kernel() local 238 float* temp = new float[wh*wh]; in create_2d_kernel() 241 for (int yOff = 0; yOff < wh; ++yOff) { in create_2d_kernel() 242 for (int xOff = 0; xOff < wh; ++xOff) { in create_2d_kernel() 243 temp[yOff*wh+xOff] = gaussian2d_value(xOff-halfFilterSize, yOff-halfFilterSize, sigma); in create_2d_kernel() 245 filterTot += temp[yOff*wh+xOff]; in create_2d_kernel() 250 for (int yOff = 0; yOff < wh; ++yOff) { in create_2d_kernel() 251 for (int xOff = 0; xOff < wh; ++xOff) { in create_2d_kernel() 252 temp[yOff*wh+xOff] /= filterTot; in create_2d_kernel() 259 static SkPMColor blur_pixel(const SkBitmap& bm, int x, int y, float* kernel, int wh) { in blur_pixel() argument [all …]
|
/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/skqp/src/gpu/effects/ |
D | GrRectBlurEffect.fp | 106 float2 wh = smallDims - float2(center, center); 107 half hcoord = ((abs(translatedPos.x - 0.5 * width) - 0.5 * wh.x)) / profileSize; 109 half vcoord = ((abs(translatedPos.y - 0.5 * height) - 0.5 * wh.y)) / profileSize; 118 half2 wh = smallDims - float2(center, center); 119 half hcoord = ((abs(translatedPos.x - 0.5 * width) - 0.5 * wh.x)) / profileSize; 121 half vcoord = ((abs(translatedPos.y - 0.5 * height) - 0.5 * wh.y)) / profileSize;
|
/external/skia/src/gpu/effects/ |
D | GrRectBlurEffect.fp | 114 float2 wh = smallDims - float2(center, center); 115 half hcoord = ((abs(translatedPos.x - 0.5 * width) - 0.5 * wh.x)) / profileSize; 117 half vcoord = ((abs(translatedPos.y - 0.5 * height) - 0.5 * wh.y)) / profileSize; 126 half2 wh = smallDims - float2(center, center); 127 half hcoord = ((abs(translatedPos.x - 0.5 * width) - 0.5 * wh.x)) / profileSize; 129 half vcoord = ((abs(translatedPos.y - 0.5 * height) - 0.5 * wh.y)) / profileSize;
|
/external/libmojo/mojo/public/cpp/system/tests/ |
D | core_unittest.cc | 113 std::vector<Handle> wh; in TEST() local 114 wh.push_back(h.get()); in TEST() 118 WaitMany(wh, sigs, MOJO_DEADLINE_INDEFINITE, nullptr); in TEST() 125 wait_many_result = WaitMany(wh, sigs, MOJO_DEADLINE_INDEFINITE, NULL); in TEST() 197 std::vector<Handle> wh; in TEST() local 198 wh.push_back(h0.get()); in TEST() 199 wh.push_back(h1.get()); in TEST() 204 WaitManyResult wait_many_result = WaitMany(wh, sigs, 1000, &states); in TEST()
|
/external/mesa3d/src/gallium/drivers/radeon/ |
D | radeon_video.c | 151 unsigned wh; in rvid_join_surfaces() local 157 wh = surfaces[i]->bankw * surfaces[i]->bankh; in rvid_join_surfaces() 158 if (wh < best_wh) { in rvid_join_surfaces() 159 best_wh = wh; in rvid_join_surfaces()
|
/external/skia/src/utils/ |
D | SkMultiPictureDocument.cpp | 151 PagerCanvas(SkISize wh, SkDocumentPage* dst, int count) in PagerCanvas() 152 : SkNWayCanvas(wh.width(), wh.height()), fDst(dst), fCount(count) { in PagerCanvas()
|
/external/skqp/src/utils/ |
D | SkMultiPictureDocument.cpp | 151 PagerCanvas(SkISize wh, SkDocumentPage* dst, int count) in PagerCanvas() 152 : 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/skqp/src/effects/ |
D | GrCircleBlurFragmentProcessor.cpp | 344 SkScalar wh = testData->fRandom->nextRangeScalar(100.f, 1000.f); in TestCreate() local 346 SkRect circle = SkRect::MakeWH(wh, wh); in TestCreate()
|
D | GrCircleBlurFragmentProcessor.fp | 289 SkScalar wh = testData->fRandom->nextRangeScalar(100.f, 1000.f); 291 SkRect circle = SkRect::MakeWH(wh, wh);
|
/external/skia/src/effects/ |
D | GrCircleBlurFragmentProcessor.cpp | 344 SkScalar wh = testData->fRandom->nextRangeScalar(100.f, 1000.f); in TestCreate() local 346 SkRect circle = SkRect::MakeWH(wh, wh); in TestCreate()
|
D | GrCircleBlurFragmentProcessor.fp | 289 SkScalar wh = testData->fRandom->nextRangeScalar(100.f, 1000.f); 291 SkRect circle = SkRect::MakeWH(wh, 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…
|
D | 158204b3bb1a90e7b53857626a1e5e3e.00001d56.honggfuzz.cov | 40 &�܀���6���P�rG �E&yK�����mz�:,S��ǽ���KR ��wh��[��Vj�=�� ��A5�҆����R��5�U�ڵEpԉ�s4.�*R��… 51 &�܀���6���P�rG �E&yK�����mz�:,S��ǽ���KR ��wh��[��Vj�=�� ��A5�҆����R��5�U�ڵEpԉ�s4.�*R��…
|
D | 862ab1a999eaa532dd5e8a1b0e277735.00001175.honggfuzz.cov | 8 �l���{�}���a����6�wh
|
/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;��…
|
D | e9545fe1c395c9f9dc517f01ea8fb331.00001dca.honggfuzz.cov | 41 …���k��Qe�ߢ�uyW�F7�E�*D�3~����Y�����ٴk7�팤��#<�����>���z���4Z4�R�WǕ�wh�nx�G��UO�n�"=�"�h… 58 …@��$F�q�uyW�F7�E�*D�3~����Y�����ٴk7�팤��#<�����>���z���4Z4�R�WǕ�wh�nx�G��UO�n�"=�"�h…
|
/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()
|
D | g722_encode.c | 262 static const int wh[3] = {0, -214, 798}; in WebRtc_g722_encode() local 398 s->band[1].nb = wd + wh[ih2]; in WebRtc_g722_encode()
|
/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)
|