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

1 2

  /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:__anon24091
  /external/tcpdump/
print-enc.c 81 #define ENC_PRINT_TYPE(wh, xf, nam) \
82 if ((wh) & (xf)) { \
83 ND_PRINT((ndo, "%s%s", nam, (wh) == (xf) ? "): " : ",")); \
84 (wh) &= ~(xf); \
  /external/skia/tools/
sk_tool_utils.cpp 363 int wh = *filterSize = 2*halfFilterSize + 1; local
365 float* temp = new float[wh*wh];
368 for (int yOff = 0; yOff < wh; ++yOff) {
369 for (int xOff = 0; xOff < wh; ++xOff) {
370 temp[yOff*wh+xOff] = gaussian2d_value(xOff-halfFilterSize, yOff-halfFilterSize, sigma);
372 filterTot += temp[yOff*wh+xOff];
377 for (int yOff = 0; yOff < wh; ++yOff) {
378 for (int xOff = 0; xOff < wh; ++xOff) {
379 temp[yOff*wh+xOff] /= filterTot
434 int wh; local
    [all...]
  /external/opencv3/modules/java/src/
videoio+VideoCapture.java 201 String[] wh = str.split("x"); local
202 sizes.add(new org.opencv.core.Size(Double.parseDouble(wh[0]), Double.parseDouble(wh[1])));