Searched refs:divx (Results 1 - 5 of 5) sorted by relevance
/third_party/libsnd/src/ALAC/ |
H A D | ag_enc.c | 103 uint32_t divx, mod, de ; in dyn_code() local 109 divx = n / m ; in dyn_code() 111 if (divx >= MAX_PREFIX_16) in dyn_code() 120 numBits = divx + k + 1 - de ; in dyn_code() 121 value = (((1 << divx) - 1) << (numBits - divx)) + mod + 1 - de ; in dyn_code() 139 uint32_t divx, mod, de ; in dyn_code_32bit() local 144 divx = n / m ; in dyn_code_32bit() 146 if (divx < MAX_PREFIX_32) in dyn_code_32bit() 148 mod = n - (m * divx) ; in dyn_code_32bit() [all...] |
/third_party/skia/src/core/ |
H A D | SkMatrixPriv.h | 150 static bool PostIDiv(SkMatrix* matrix, int divx, int divy) { in PostIDiv() argument 151 return matrix->postIDiv(divx, divy); in PostIDiv()
|
H A D | SkMatrix.cpp | 389 bool SkMatrix::postIDiv(int divx, int divy) { in postIDiv() argument 390 if (divx == 0 || divy == 0) { in postIDiv() 394 const float invX = 1.f / divx; in postIDiv()
|
/third_party/ffmpeg/tests/fate/ |
H A D | demux.mak | 61 fate-lmlm4-demux: CMD = framecrc -i $(TARGET_SAMPLES)/lmlm4/LMLM4_CIFat30fps.divx -t 3 -c:a copy -c:v copy
|
/third_party/skia/include/core/ |
H A D | SkMatrix.h | 1983 // legacy method -- still needed? why not just postScale(1/divx, ...)? 1984 bool postIDiv(int divx, int divy);
|
Completed in 12 milliseconds