Searched defs:BLOCK (Results 1 - 5 of 5) sorted by relevance

/ast/src/lib/libvcodex/Vcmisc/
H A Dvctranspose.c202 #define BLOCK 32 /* transposing small blocks to be cache-friendly */ macro
203 for(r = 0; r < nrows; r += BLOCK)
204 { nr = (nrows-r) < BLOCK ? (nrows-r) : BLOCK;
205 for(c = 0; c < ncols; c += BLOCK)
206 { nc = (ncols-c) < BLOCK ? (ncols-c) : BLOCK;
/ast/src/lib/libcmd/
H A Dcut.c104 #define BLOCK 8*1024 macro
558 fdtmp = sftmp(BLOCK);
/ast/src/lib/libpp/
H A Dppproto.c179 #define BLOCK (16*CHUNK) macro
2204 else if (n > 2 * BLOCK) n = 0;
2223 * file read in BLOCK chunks
2226 n = BLOCK;
/ast/src/cmd/std/
H A Ddd.c79 #define BLOCK (1<<4) macro
299 BLOCK,
642 if ((state.conv.value.number & (BLOCK|UNBLOCK)) == (BLOCK|UNBLOCK))
660 if (state.conv.value.number & (BLOCK|UNBLOCK))
663 error(3, "%s must be specified for %s=%s", state.cbs.name, state.conv.name, (state.conv.value.number & BLOCK) ? state.block.value.string : state.unblock.value.string);
712 if (state.in.special && !(state.conv.value.number & BLOCK) && (n = state.ibs.value.number))
782 if (state.conv.value.number & BLOCK)
/ast/src/lib/libast/vmalloc/
H A Dvmhdr.h352 #define BLOCK(d) ((Block_t*)((char*)(d) - sizeof(Head_t)) ) macro
395 #define PFDATA(d) ((Head_t*)((Vmuchar_t*)(d)+(SIZE(BLOCK(d))&~BITS)-sizeof(Head_t)) )

Completed in 31 milliseconds