Home
last modified time | relevance | path

Searched refs:fsz (Results 1 - 7 of 7) sorted by relevance

/third_party/FatFs/documents/res/
H A Dapp5.c11 FSIZE_t fsz; in test_contiguous_file() local
24 fsz = f_size(fp); in test_contiguous_file()
25 if (fsz > 0) { in test_contiguous_file()
27 while (fsz) { in test_contiguous_file()
28 step = (fsz >= clsz) ? clsz : (DWORD)fsz; in test_contiguous_file()
32 clst = fp->clust; fsz -= step; /* Get current cluster for next test */ in test_contiguous_file()
34 if (fsz == 0) *cont = 1; /* All done without fail? */ in test_contiguous_file()
/third_party/ffmpeg/libavcodec/x86/
H A Dvp9dsp_init.h44 #define decl_mc_funcs(sz, opt, type, fsz, bpp) \
45 decl_mc_func(put, sz, h, opt, type, fsz, bpp); \
46 decl_mc_func(avg, sz, h, opt, type, fsz, bpp); \
47 decl_mc_func(put, sz, v, opt, type, fsz, bpp); \
48 decl_mc_func(avg, sz, v, opt, type, fsz, bpp)
86 #define mc_rep_funcs(sz, hsz, hszb, opt, type, fsz, bpp) \
87 mc_rep_func(put, sz, hsz, hszb, h, opt, type, fsz, bpp) \
88 mc_rep_func(avg, sz, hsz, hszb, h, opt, type, fsz, bpp) \
89 mc_rep_func(put, sz, hsz, hszb, v, opt, type, fsz, bpp) \
90 mc_rep_func(avg, sz, hsz, hszb, v, opt, type, fsz, bp
[all...]
/third_party/mesa3d/src/panfrost/bifrost/
H A Dbifrost_nir_algebraic.py52 for fsz in [16, 32]:
54 ((f'b2f{fsz}', ('inot', f'a@{bsz}')), (f'b{bsz}csel', a, 0.0, 1.0)),
55 ((f'b2f{fsz}', f'a@{bsz}'), (f'b{bsz}csel', a, 1.0, 0.0)),
/third_party/ltp/testcases/kernel/controllers/cpuset/cpuset_lib/
H A Dlibcpuset.c2564 int fsz; in add_pidblock() local
2568 fsz = filesize(fp); in add_pidblock()
2569 if (fsz == 0) in add_pidblock()
2573 pb->buflen = fsz; in add_pidblock()
/third_party/FatFs/source/
H A Dff.h461 FRESULT f_expand (FIL* fp, FSIZE_t offset, FSIZE_t fsz, int opt); /* Allocate a contiguous block to the file */
H A Dff.c5321 FSIZE_t fsz, /* File size to be expanded to */
5334 if (fsz == 0 || !(fp->flag & FA_WRITE)) LEAVE_FF(fs, FR_DENIED);
5341 if (offset + fsz <= n * count) LEAVE_FF(fs, FR_OK);
5343 exsz = offset + fsz - n * count;
5318 f_expand( FIL* fp, FSIZE_t offset, FSIZE_t fsz, int opt ) global() argument
/third_party/sqlite/src/
H A Dshell.c6246 #define APND_START_ROUNDUP(fsz) (((fsz)+APND_ALIGN_MASK) & ~APND_ALIGN_MASK)

Completed in 55 milliseconds