HomeSort by relevance Sort by last modified time
    Searched defs:block (Results 1 - 25 of 102) sorted by null

1 2 3 4 5

  /onnv/onnv-gate/usr/src/cmd/audio/include/
AudioUnixfile.h 44 Boolean block; // FALSE if fd set non-blocking member in class:AudioUnixfile
85 virtual void SetBlocking(Boolean b); // Set block/non-block
  /onnv/onnv-gate/usr/src/common/openssl/crypto/engine/
enginetest.c 97 ENGINE *block[512]; local
122 memset(block, 0, 512 * sizeof(ENGINE *));
226 if(((block[loop] = ENGINE_new()) == NULL) ||
227 !ENGINE_set_id(block[loop], id) ||
228 !ENGINE_set_name(block[loop], name))
230 printf("Couldn't create block of ENGINE structures.\n"
237 if(!ENGINE_add(block[loop]))
240 loop, ENGINE_get_id(block[loop]),
241 ENGINE_get_name(block[loop]));
261 OPENSSL_free((void *)ENGINE_get_id(block[loop]))
    [all...]
  /onnv/onnv-gate/usr/src/lib/libparted/common/libparted/fs/amiga/
apfs.c 36 _apfs_probe_root (uint32_t *block, uint32_t blocksize, uint32_t kind) {
37 if (PED_BE32_TO_CPU (block[0]) != kind) return 0;
44 uint32_t *block; local
52 /* Finds the blocksize, prealloc and reserved values of the partition block */
55 _("%s : Failed to allocate partition block\n"), __func__);
66 /* Test boot block */
67 if (!(block = ped_malloc (PED_SECTOR_SIZE_DEFAULT*blocksize))) {
69 _("%s : Failed to allocate block\n"), __func__);
72 if (!ped_device_read (geom->dev, block, geom->start, blocksize)) {
74 _("%s : Couldn't read boot block %llu\n"), __func__, geom->start)
    [all...]
asfs.c 36 _asfs_probe_root (PedGeometry *geom, uint32_t *block, int blocksize, PedSector root) {
40 if (PED_BE32_TO_CPU (block[0]) != 0x53465300) return 0;
41 for (i = 0, sum = 1; i < 128*blocksize; i++) sum += PED_BE32_TO_CPU (block[i]);
43 if (PED_BE32_TO_CPU (block[2]) * blocksize + geom->start != root) {
46 start = ((((PedSector) PED_BE32_TO_CPU (block[8])) << 32)
47 + (PedSector) PED_BE32_TO_CPU (block[9])) / 512;
48 end = (((((PedSector) PED_BE32_TO_CPU (block[10])) << 32)
49 + (PedSector) PED_BE32_TO_CPU (block[11])) / 512) - 1;
57 uint32_t *block; local
66 /* Finds the blocksize, prealloc and reserved values of the partition block */
    [all...]
  /onnv/onnv-gate/usr/src/lib/libast/common/comp/
regexp.c 43 block(void* handle, void* data, size_t size) function
64 regalloc(env, block, REG_NOFREE);
regcmp.c 49 block(void* handle, void* data, size_t size) function
167 regalloc(re, block, REG_NOFREE);
  /onnv/onnv-gate/usr/src/lib/libast/common/vmalloc/
vmopen.c 42 Block_t block; /* space for a block */ member in struct:_vminit_
151 /* make a data block out of the remainder */
159 /* make a fake header for next block in case of noncontiguous segments */
  /onnv/onnv-gate/usr/src/lib/libparted/common/libparted/fs/hfs/
file.c 68 hfs_get_extent_containing (HfsPrivateFile* file, unsigned int block,
83 search.start = PED_CPU_TO_BE16 (block);
110 unsigned int block = sector / sect_by_block; local
115 if ((block >= s) && ( block < s + PED_BE16_TO_CPU (
117 vol_block = (block - s) + PED_BE16_TO_CPU (
125 if (file->start_cache && block >= file->start_cache)
127 if ((block >= s) && (block < s + PED_BE16_TO_CPU (
129 vol_block = (block - s) + PED_BE16_TO_CPU
    [all...]
file_plus.c 70 hfsplus_get_extent_containing (HfsPPrivateFile* file, unsigned int block,
86 search.start = PED_CPU_TO_BE32 (block);
118 unsigned int block = sector / sect_by_block; local
123 if ((block >= s) && (block < s + PED_BE32_TO_CPU (
125 vol_block = (block - s)
129 + s - block;
136 if (file->start_cache && block >= file->start_cache)
138 if ((block >= s) && (block < s + PED_BE32_TO_CPU
    [all...]
journal.c 57 hfsj_update_jib(PedFileSystem* fs, uint32_t block)
62 priv_data->vh->journal_info_block = PED_CPU_TO_BE32(block);
67 priv_data->jib_start_block = block;
72 hfsj_update_jl(PedFileSystem* fs, uint32_t block)
88 offset = (uint64_t)block * PED_SECTOR_SIZE_DEFAULT * binsect;
95 priv_data->jl_start_block = block;
132 uint8_t* block; local
154 _("Bad block list header checksum."));
168 "block while replaying the journal "
173 block = (uint8_t*) ped_malloc(size)
    [all...]
  /onnv/onnv-gate/usr/src/grub/grub-0.97/stage2/
fsys_ffs.c 186 int block, off, loc, map, ino = ROOTINO; local
253 block = lblkno (SUPERBLOCK, loc);
255 if ((map = block_map (block)) < 0
257 blksize (SUPERBLOCK, INODE, block),
  /onnv/onnv-gate/usr/src/lib/libbc/libc/gen/common/
mallint.h 39 * a side effect of the realloc() call, when the block referenced
40 * by p was coalesced with another free block by the call to free().
42 * To reduce storage consumption, a header block is associated with
44 * When a free block is allocated, its header block is put on
45 * a free header block list.
47 * This creates a header space and a free block space.
60 * Description of a header for a free block
66 Dblk block; /* Ptr to the data block */ member in struct:freehdr
    [all...]
  /onnv/onnv-gate/usr/src/lib/libtecla/common/
freelist.c 42 FreeListBlock *next; /* The next block in the list */
48 unsigned blocking_factor; /* The number of nodes per block */
51 FreeListBlock *block; /* The head of the list of free-list blocks */ member in struct:FreeList
57 static void _thread_FreeListBlock(FreeList *fl, FreeListBlock *block);
68 * to allocate per block.
86 * Enfore a minimum block size.
107 fl->block = NULL;
110 * Allocate the first block of memory.
112 fl->block = _new_FreeListBlock(fl);
113 if(!fl->block) {
138 FreeListBlock *block; local
200 FreeListBlock *block = next; local
239 FreeListBlock *block = _new_FreeListBlock(fl); local
337 FreeListBlock *block; \/* The new block to be returned *\/ local
    [all...]
stringrp.c 56 char *block; /* An array of characters to be shared between strings */ member in struct:StringSegment
57 int unused; /* The amount of unused space at the end of block[] */
65 int block_size; /* The dimension of each character array block */
138 if(node->block)
139 free(node->block);
140 node->block = NULL;
255 node->block = NULL;
260 node->block = (char *) malloc(sg->block_size);
261 if(!node->block)
272 copy = node->block + sg->block_size - node->unused
    [all...]
  /onnv/onnv-gate/usr/src/lib/lvm/libmeta/common/
meta_systemfile.c 286 daddr_t *block, /* returned block offset */
307 *block = strtol(p, &p, 10);
308 chksum += *block;
355 daddr_t block; local
397 (confline(buf, &driver, &mnum, &block, &devid_char_p) != 0))
415 i, driver, mnum, block, devid_char_p);
422 if (confline(buf, &driver, &mnum, &block,
427 driver, mnum, block, devid_char_p);
  /onnv/onnv-gate/usr/src/uts/common/tnf/
trace_funcs.c 50 * block - i.e. negative offsets have a 0 in high bit
70 * to a target in the same block
101 tnf_block_header_t *block; local
182 block = (tnf_block_header_t *)((uintptr_t)buffer & TNF_BLOCK_MASK);
194 sched_offset = ((sched->record_gen - block->generation) << shift) +
197 sched_offset = ((sched->record_gen - block->generation) << shift) +
254 ((sched->record_gen - block->generation) << shift) +
261 ((sched->record_gen - block->generation) << shift) +
  /onnv/onnv-gate/usr/src/uts/intel/io/drm/
radeon_mem.c 53 /* Maybe cut off the start of an existing block */
70 /* Maybe cut off the end of an existing block */
87 /* Our block is in the middle */
247 struct mem_block *block, **heap; local
282 block = alloc_block(*heap, alloc.size, alloc.alignment, fpriv);
284 if (!block)
287 if (DRM_COPY_TO_USER(alloc.region_offset, &block->start,
303 struct mem_block *block, **heap; local
316 block = find_block(*heap, memfree.region_offset);
317 if (!block)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/hal/addons/network-devices/
snmp.c 103 int fds = 0, block = 0; local
108 snmp_select_info(&fds, &fdset, &timeout, &block);
109 fds = select(fds, &fdset, NULL, NULL, block ? NULL : &timeout);
  /onnv/onnv-gate/usr/src/lib/libast/amd64/include/ast/
stack.h 45 struct stackblock /* stack block cell */
48 struct stackblock* prev; /* previous block in list */
49 struct stackblock* next; /* next block in list */
54 struct stackblock* block; /* current block pointer */ member in struct:stackposition
55 int index; /* index within current block */
62 int size; /* size of each block */
  /onnv/onnv-gate/usr/src/lib/libast/common/include/
stack.h 36 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 */
  /onnv/onnv-gate/usr/src/lib/libast/i386/include/ast/
stack.h 45 struct stackblock /* stack block cell */
48 struct stackblock* prev; /* previous block in list */
49 struct stackblock* next; /* next block in list */
54 struct stackblock* block; /* current block pointer */ member in struct:stackposition
55 int index; /* index within current block */
62 int size; /* size of each block */
  /onnv/onnv-gate/usr/src/lib/libast/sparc/include/ast/
stack.h 45 struct stackblock /* stack block cell */
48 struct stackblock* prev; /* previous block in list */
49 struct stackblock* next; /* next block in list */
54 struct stackblock* block; /* current block pointer */ member in struct:stackposition
55 int index; /* index within current block */
62 int size; /* size of each block */
  /onnv/onnv-gate/usr/src/lib/libast/sparcv9/include/ast/
stack.h 45 struct stackblock /* stack block cell */
48 struct stackblock* prev; /* previous block in list */
49 struct stackblock* next; /* next block in list */
54 struct stackblock* block; /* current block pointer */ member in struct:stackposition
55 int index; /* index within current block */
62 int size; /* size of each block */
  /onnv/onnv-gate/usr/src/cmd/sgs/rtld/common/
malloc.c 38 * Each page is divided in blocks. There is at least one block in a page.
51 struct block { struct
55 struct block *next;
62 struct block block[1]; member in struct:page
68 #define HDR_BLOCK (sizeof (struct block) - sizeof (void *))
109 struct block *block; local
111 for (block = page->block; block; block = block->next)
161 struct block *block; local
221 struct block *block; local
279 struct block *block; local
307 struct block *block; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/truss/
htbl.h 48 mutex_t block; /* bucket lock */ member in struct:hashb

Completed in 959 milliseconds

1 2 3 4 5