Searched defs:block (Results 1 - 25 of 29) sorted by relevance

12

/ast/src/lib/libast/comp/
H A Dregexp.c43 block(void* handle, void* data, size_t size) function
64 regalloc(env, block, REG_NOFREE);
H A Dregcmp.c49 block(void* handle, void* data, size_t size) function
174 regalloc(re, block, REG_NOFREE);
/ast/src/lib/libast/include/
H A Dstack.h36 struct stackblock /* stack block cell */
39 struct stackblock* prev; /* previous block in list */
40 struct stackblock* next; /* next block in list */
45 struct stackblock* block; /* current block pointer */ member in struct:stackposition
46 int index; /* index within current block */
53 int size; /* size of each block */
/ast/src/lib/libast/vmalloc/
H A Dvmopen.c52 Block_t block[16]; /* space for a few blocks */ member in struct:_vminit_s
140 /* make a data block out of the remainder */
149 /* make a fake header for next block in case of noncontiguous segments */
H A Dvmhdr.h124 #define VM_break 0x0002 /* try sbrk() block allocator first */
128 #define VM_mmap 0x0020 /* try mmap() block allocator first */
164 #define BUSY (01) /* block is busy */
165 #define PFREE (02) /* preceding block is free */
203 /* ALIGN is chosen so that a block can store all primitive types.
221 Block_t* block; member in union:_align_u
237 /* make sure that the head of a block is a multiple of ALIGN */
257 /* now make sure that the body of a block is a multiple of ALIGN */
282 /* requirements for smallest block type */
296 /* small block type
[all...]
/ast/src/cmd/pack/
H A Dpack.c82 #define block(size) (((size) + BLKSIZE-1) & ~(BLKSIZE-1)) macro
168 else if(!force && block(huffisize(hp)) <= block(huffosize(hp)+dsize))
/ast/src/lib/libtk/generic/
H A DtkImgPPM.c131 int width, height; /* Dimensions of block of photo image to
139 Tk_PhotoImageBlock block;
174 block.pixelSize = 1;
175 block.offset[0] = 0;
176 block.offset[1] = 0;
177 block.offset[2] = 0;
180 block.pixelSize = 3;
181 block.offset[0] = 0;
182 block.offset[1] = 1;
183 block
137 Tk_PhotoImageBlock block; local
[all...]
H A DtkImgGIF.c150 int width, height; /* Dimensions of block of photo image to
157 Tk_PhotoImageBlock block;
202 block.width = fileWidth;
203 block.height = fileHeight;
204 block.pixelSize = 3;
205 block.pitch = 3 * fileWidth;
206 block.offset[0] = 0;
207 block.offset[1] = 1;
208 block.offset[2] = 2;
209 nBytes = fileHeight * block
155 Tk_PhotoImageBlock block; local
[all...]
/ast/src/cmd/pax/
H A Dpax-pds.c33 unsigned long block; member in struct:Pdsdir_s
95 pds->dir[i].block = (b[8] << 16) | (b[9] << 8) | b[10];
122 if (n != m && pds->dir[n].block == pds->dir[m].block)
171 f->st->st_size = dp->block;
H A Dpax-saveset.c55 char* block; /* current block */ member in struct:Saveset_s
56 long blocksize; /* max block size */
57 char* bp; /* block pointer */
86 while (ss->bp >= ss->block + state.blocksize)
88 ss->bp = ss->block;
98 error(3, "invalid %s format block header", ap->format->name);
118 if (p + FILHDR_data + i > ss->block + state.blocksize)
146 if ((p += FILHDR_SIZE + (long)swapget(1, s, 2)) > ss->block + state.blocksize)
157 if ((p += FILHDR_SIZE + (long)swapget(1, s, 2)) > ss->block
[all...]
/ast/src/lib/libmam/
H A Dmam.h58 struct block* action; /* action */
94 struct block /* data block list */ struct
96 struct block* next; /* next item */
/ast/src/lib/libsum/
H A Dsum-sha1.c44 (block->l[i] = (rol(block->l[i], 24) & 0xFF00FF00) \
45 | (rol(block->l[i], 8) & 0x00FF00FF))
47 # define blk0(i) block->l[i]
50 (block->l[i & 15] = rol(block->l[(i + 13) & 15] \
51 ^ block->l[(i + 8) & 15] \
52 ^ block->l[(i + 2) & 15] \
53 ^ block->l[i & 15], 1))
97 uint32_t *e, CHAR64LONG16 *block)
96 do_R01(uint32_t *a, uint32_t *b, uint32_t *c, uint32_t *d, uint32_t *e, CHAR64LONG16 *block) argument
109 do_R2(uint32_t *a, uint32_t *b, uint32_t *c, uint32_t *d, uint32_t *e, CHAR64LONG16 *block) argument
122 do_R3(uint32_t *a, uint32_t *b, uint32_t *c, uint32_t *d, uint32_t *e, CHAR64LONG16 *block) argument
135 do_R4(uint32_t *a, uint32_t *b, uint32_t *c, uint32_t *d, uint32_t *e, CHAR64LONG16 *block) argument
154 CHAR64LONG16 *block; local
[all...]
H A Dsumlib.c50 int (*block)(Sum_t*, const void*, size_t); member in struct:Method_s
311 return (*p->method->block)(p, buf, siz);
H A Dsum-md5.c31 used with permission. The block count is not printed."
180 md5_transform(UINT4 state[4], unsigned char block[64]) argument
188 md5_decode(x, block, 64);
/ast/src/cmd/html/
H A Dbb2tok.c170 const Header_t* block[4 * 1024]; local
243 if (level < elementsof(block))
251 if (level < elementsof(block) && (block[level] = h))
260 if (level < elementsof(block) && (h = block[level]))
/ast/src/lib/libbz/
H A Dblocksort.c10 library for lossless, block-sorting data compression.
67 Compare two strings in block. We assume (see
70 bytes of both block and quadrant have been
75 static __inline__ Bool fullGtU ( UChar* block, argument
89 c1 = block[i1];
90 c2 = block[i2];
94 c1 = block[i1];
95 c2 = block[i2];
99 c1 = block[i1];
100 c2 = block[i
182 UChar* block = s->block; local
313 UChar* block = s->block; local
396 UChar* block = s->block; local
[all...]
H A Dbzhdr.h10 library for lossless, block-sorting data compression.
237 /* for doing the block sorting */
238 UChar* block; member in struct:__anon326
261 /* map of bytes used in block */
270 /* block and combined CRCs */
418 /* map of bytes used in block */
/ast/src/lib/libast/uwin/
H A Dcrypt.c130 * Cipher-block representation (Bob Baldwin):
140 * converted to LSB format, and the output 64-bit block is converted back into
204 * a 64-bit block (the bit numbering is given in the "CIFP" table)
206 * be possible to group the bits in the 64-bit block so that 2
815 extern int encrypt(register char *block, int flag) { argument
823 k |= (unsigned char)*block++;
832 *--block = k&01;
/ast/src/cmd/paxlib/calib/
H A Dcalib.c77 size_t block; member in struct:Ar_s
314 (*pax->errorf)(NiL, pax, 3, "%s: %s format block header seek error", ap->name, ap->format->name);
316 (*pax->errorf)(NiL, pax, 3, "%s: %s format block header read error", ap->name, ap->format->name);
377 size_t block; local
411 block = 0;
419 block++;
479 (*pax->errorf)(NiL, pax, 2, "%s: overbyte (bits=%d offset=%I*u+%I*u block=%I*u)", ap->name, bits, sizeof(off_t), paxseek(pax, ap, (off_t)0, SEEK_CUR, 0) - ar->bufsize, sizeof(index), index, sizeof(block), block);
515 (*pax->errorf)(NiL, pax, 1, "%s: keyword %s (bits=%d offset=%I*u+%I*u block local
709 (*pax->errorf)(NiL, pax, 3, "%s: format member read error (offset=%I*u block=%I*u)", ap->name, sizeof(off_t), paxseek(pax, ap, (off_t)0, SEEK_CUR, 0), sizeof(block), block); local
[all...]
/ast/src/cmd/std/
H A Ddf.c25 * df -- free disk block report
58 "[i:inodes?Display inode usage instead of block usage. There is at least one"
66 "[n:native-block?Measure disk usage in the native filesystem block size."
164 "Unused block count.",
172 "Total block count.",
236 "Native block size.",
260 "Used block count.",
275 * some systems insist on reporting block counts in 512 units
311 int block; /* bloc member in struct:__anon228
[all...]
H A Ddd.c34 " Input and output block sizes can be specified to take advantage of"
157 Operand_t block; member in struct:__anon225
189 "Input and output block size.",
216 "Input block size.",
233 "Output block size.",
298 "block",
370 "Pad each input block to \bibs\b. Pad with spaces if"
371 " \bconv=block\b or \bconv=unblock\b, otherwise pad"
643 error(3, "only one of %s=%s and %s=%s may be specified", state.conv.name, state.block.value.string, state.conv.name, state.unblock.value.string);
663 error(3, "%s must be specified for %s=%s", state.cbs.name, state.conv.name, (state.conv.value.number & BLOCK) ? state.block
[all...]
/ast/src/lib/libpz/
H A Dpzip.h162 Sfulong_t block; /* compressed block */ member in struct:Pzindex_s
163 Sfulong_t offset; /* offset in block */
/ast/src/cmd/ksh93/sh/
H A Dnvdisc.c187 #define block(bp,type) ((bp)->flags |= (1<<(type))) macro
252 struct blocked block, *bp = block_info(np, &block); local
293 block(bp,type);
295 block(bp,LOOKUPS);
336 block(bp,type);
356 if(bp== &block)
372 struct blocked block, *bp = block_info(np, &block); local
390 block(b
[all...]
/ast/src/cmd/nmake/
H A Dcommand.c1101 * block until one job completes
1107 block(int check) function
1261 while (block(check));
1275 if (!block(check))
1341 while (block(0));
1402 while ((cozombie(state.coshell) || cojobs(state.coshell) > n) && block(0));
/ast/src/cmd/builtin/
H A Dod.c222 int block; member in struct:State_s
1011 block(State_t* state, Sfio_t* op, char* bp, char* ep, intmax_t base) function
1057 if (c = (state->block - (ep - bp)) / state->size * (state->width + 1))
1173 if ((m = span - state->span) > state->block)
1174 m = state->block;
1175 if (block(state, sfstdout, state->span, state->span + m, state->offset))
1220 e = s + (n / state->block) * state->block;
1222 e -= state->block + state->mbmax;
1227 if (block(stat
[all...]

Completed in 53 milliseconds

12