Home
last modified time | relevance | path

Searched refs:XSize (Results 1 – 2 of 2) sorted by relevance

/OK3568_Linux_fs/kernel/fs/jfs/
H A Dresize.c62 s64 XAddress, XSize, nblocks, xoff, xaddr, t64; in jfs_extendfs() local
303 XSize = newMapSize - mapSize; /* eXtension Size */ in jfs_extendfs()
314 nblocks = min(t64 - mapSize, XSize); in jfs_extendfs()
333 XSize -= nblocks; in jfs_extendfs()
415 if (XSize) in jfs_extendfs()
/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/algos/adehaze/
H A Drk_aiq_adehaze_algo_v10.cpp25 float LinearInterp(const float* pX, const float* pY, float posx, int XSize) { in LinearInterp() argument
29 if (posx >= pX[XSize - 1]) { in LinearInterp()
30 yOut = pY[XSize - 1]; in LinearInterp()
35 while ((posx >= pX[index]) && (index < XSize)) { in LinearInterp()
46 int LinearInterpEnable(const float* pX, const unsigned char* pY, float posx, int XSize) { in LinearInterpEnable() argument
50 if (posx >= pX[XSize - 1]) { in LinearInterpEnable()
51 out = (float)pY[XSize - 1]; in LinearInterpEnable()
56 while ((posx >= pX[index]) && (index < XSize)) { in LinearInterpEnable()