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

1 2

  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arc/
sexw.d 7 0x[0-9a-f]+ 202f 0046 sex[wh]+ r0,r1
8 0x[0-9a-f]+ 232f 3706 sex[wh]+ fp,sp
9 0x[0-9a-f]+ 206f 0006 sex[wh]+ r0,0
10 0x[0-9a-f]+ 212f 0f86 ffff ffff sex[wh]+ r1,0xffffffff
11 0x[0-9a-f]+ 262f 7086 sex[wh]+ 0,r2
12 0x[0-9a-f]+ 242f 0f86 0000 00ff sex[wh]+ r4,0xff
13 0x[0-9a-f]+ 262f 0f86 ffff ff00 sex[wh]+ r6,0xffffff00
14 0x[0-9a-f]+ 202f 1f86 0000 0100 sex[wh]+ r8,0x100
15 0x[0-9a-f]+ 212f 1f86 ffff feff sex[wh]+ r9,0xfffffeff
16 0x[0-9a-f]+ 232f 1f86 4242 4242 sex[wh]+ r11,0x4242424
    [all...]
  /external/sonivox/arm-wt-22k/host_src/
eas_wave.c 151 wFile->wh.nRiffTag = riffTag;
152 wFile->wh.nRiffSize = sizeof(WAVE_HEADER) - 8;
153 wFile->wh.nWaveTag = waveTag;
154 wFile->wh.nFmtTag = fmtTag;
155 wFile->wh.nFmtSize = sizeof(FMT_CHUNK);
158 wFile->wh.fc.wFormatTag = 1;
159 wFile->wh.fc.nChannels = (EAS_U16) nChannels;
160 wFile->wh.fc.nSamplesPerSec = (EAS_U32) nSamplesPerSec;
161 wFile->wh.fc.wBitsPerSample = (EAS_U16) wBitsPerSample;
162 wFile->wh.fc.nBlockAlign = (EAS_U16) (nChannels * (EAS_U16) (wBitsPerSample / 8))
    [all...]
eas_wave.h 60 WAVE_HEADER wh; member in struct:__anon35107
  /external/tcpdump/
print-enc.c 82 #define ENC_PRINT_TYPE(wh, xf, nam) \
83 if ((wh) & (xf)) { \
84 ND_PRINT((ndo, "%s%s", nam, (wh) == (xf) ? "): " : ",")); \
85 (wh) &= ~(xf); \
  /external/skia/tools/
sk_tool_utils.cpp 176 int wh = *filterSize = 2*halfFilterSize + 1; local
178 float* temp = new float[wh*wh];
181 for (int yOff = 0; yOff < wh; ++yOff) {
182 for (int xOff = 0; xOff < wh; ++xOff) {
183 temp[yOff*wh+xOff] = gaussian2d_value(xOff-halfFilterSize, yOff-halfFilterSize, sigma);
185 filterTot += temp[yOff*wh+xOff];
190 for (int yOff = 0; yOff < wh; ++yOff) {
191 for (int xOff = 0; xOff < wh; ++xOff) {
192 temp[yOff*wh+xOff] /= filterTot
247 int wh; local
    [all...]
  /external/skia/src/gpu/effects/
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/skqp/src/gpu/effects/
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/skqp/tools/
sk_tool_utils.cpp 236 int wh = *filterSize = 2*halfFilterSize + 1; local
238 float* temp = new float[wh*wh];
241 for (int yOff = 0; yOff < wh; ++yOff) {
242 for (int xOff = 0; xOff < wh; ++xOff) {
243 temp[yOff*wh+xOff] = gaussian2d_value(xOff-halfFilterSize, yOff-halfFilterSize, sigma);
245 filterTot += temp[yOff*wh+xOff];
250 for (int yOff = 0; yOff < wh; ++yOff) {
251 for (int xOff = 0; xOff < wh; ++xOff) {
252 temp[yOff*wh+xOff] /= filterTot
307 int wh; local
    [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
radeon_video.c 151 unsigned wh; local
157 wh = surfaces[i]->bankw * surfaces[i]->bankh;
158 if (wh < best_wh) {
159 best_wh = wh;
  /hardware/qcom/display/msm8226/liboverlay/
overlayUtils.cpp 414 void normalizeCrop(uint32_t& xy, uint32_t& wh) {
417 if(wh & 1)
418 even_floor(wh);
420 wh -= 2;
422 even_floor(wh);
  /hardware/qcom/display/msm8960/liboverlay/
overlayMdp.cpp 34 static void normalizeCrop(uint32_t& xy, uint32_t& wh) {
37 if(wh & 1)
38 utils::even_floor(wh);
40 wh -= 2;
42 utils::even_floor(wh);
  /hardware/qcom/display/msm8994/liboverlay/
overlayUtils.cpp 407 void normalizeCrop(uint32_t& xy, uint32_t& wh) {
410 if(wh & 1)
411 even_floor(wh);
413 wh -= 2;
415 even_floor(wh);
  /external/libmojo/mojo/public/cpp/system/tests/
core_unittest.cc 113 std::vector<Handle> wh; local
114 wh.push_back(h.get());
118 WaitMany(wh, sigs, MOJO_DEADLINE_INDEFINITE, nullptr);
125 wait_many_result = WaitMany(wh, sigs, MOJO_DEADLINE_INDEFINITE, NULL);
197 std::vector<Handle> wh; local
198 wh.push_back(h0.get());
199 wh.push_back(h1.get());
204 WaitManyResult wait_many_result = WaitMany(wh, sigs, 1000, &states);
  /external/skia/src/utils/
SkMultiPictureDocument.cpp 151 PagerCanvas(SkISize wh, SkDocumentPage* dst, int count)
152 : SkNWayCanvas(wh.width(), wh.height()), fDst(dst), fCount(count) {
  /external/skqp/src/utils/
SkMultiPictureDocument.cpp 151 PagerCanvas(SkISize wh, SkDocumentPage* dst, int count)
152 : SkNWayCanvas(wh.width(), wh.height()), fDst(dst), fCount(count) {
  /hardware/qcom/display/msm8084/liboverlay/
overlayUtils.cpp 483 void normalizeCrop(uint32_t& xy, uint32_t& wh) {
486 if(wh & 1)
487 even_floor(wh);
489 wh -= 2;
491 even_floor(wh);
  /external/skia/src/effects/
GrCircleBlurFragmentProcessor.fp 289 SkScalar wh = testData->fRandom->nextRangeScalar(100.f, 1000.f);
291 SkRect circle = SkRect::MakeWH(wh, wh);
GrCircleBlurFragmentProcessor.cpp 344 SkScalar wh = testData->fRandom->nextRangeScalar(100.f, 1000.f); local
346 SkRect circle = SkRect::MakeWH(wh, wh);
  /external/skqp/src/effects/
GrCircleBlurFragmentProcessor.fp 289 SkScalar wh = testData->fRandom->nextRangeScalar(100.f, 1000.f);
291 SkRect circle = SkRect::MakeWH(wh, wh);
GrCircleBlurFragmentProcessor.cpp 344 SkScalar wh = testData->fRandom->nextRangeScalar(100.f, 1000.f); local
346 SkRect circle = SkRect::MakeWH(wh, wh);
  /external/python/cpython2/Demo/threads/
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
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
aufs_type.h 58 #define AUFS_WH_PFX ".wh."
101 #define AUFS_BRRATTR_WH "wh"
144 uint8_t wh; member in struct:au_rdu_ent
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/info/
HistogramView.java 92 float wh = h / max; local
116 float l = histogram[i] * wh;
  /prebuilts/go/darwin-x86/src/math/rand/
zipf.go 8 // http://eeyore.wu-wien.ac.at/papers/96-04-04.wh-der.ps.gz
  /prebuilts/go/linux-x86/src/math/rand/
zipf.go 8 // http://eeyore.wu-wien.ac.at/papers/96-04-04.wh-der.ps.gz

Completed in 507 milliseconds

1 2