Searched refs:binfo (Results 1 - 8 of 8) sorted by relevance

/macosx-10.10.1/tcl-105/tcl84/tcl/generic/
H A DtclThreadAlloc.c135 struct binfo { struct
140 } binfo[NBUCKETS]; variable in typeref:struct:binfo
202 binfo[i].blocksize = MINALLOC << i;
203 binfo[i].maxblocks = 1 << (NBUCKETS - 1 - i);
204 binfo[i].nmove = i < NBUCKETS-1 ? 1 << (NBUCKETS - 2 - i) : 1;
205 binfo[i].lockPtr = TclpNewAllocMutex();
354 while (binfo[bucket].blocksize < size) {
421 cachePtr->buckets[bucket].nfree > binfo[bucket].maxblocks) {
422 PutBlocks(cachePtr, bucket, binfo[bucket].nmove);
490 min = binfo[bucke
[all...]
/macosx-10.10.1/hfs-285/fsck_hfs/dfalib/
H A Dfsck_journal.c278 plog("\tBlock %d: blkNum %llu, size %u, data offset = %zd\n", i, swap->swap64(txn->binfo[i].bnum), swap->swap32(txn->binfo[i].bsize), dataPtr - (uint8_t*)txn);
291 if ((endPtr - dataPtr) < swap->swap32(txn->binfo[i].bsize)) {
296 if ((dataPtr + swap->swap32(txn->binfo[i].bsize)) > endPtr) {
304 if (swap->swap64(txn->binfo[i].bnum) == 2) {
311 if (swap->swap64(txn->binfo[i].bnum) == ~(uint64_t)0) {
319 if ((writer)(swap->swap64(txn->binfo[i].bnum) * blkSize, dataPtr, swap->swap32(txn->binfo[i].bsize)) == -1)
323 dataPtr += swap->swap32(txn->binfo[i].bsize);
548 plog("%stxn = { %u max_blocks, %u num_blocks, %u bytes_used, binfo[
[all...]
H A Dfsck_journal.h49 * binfo array, which are used to modify the
58 block_info binfo[1]; member in struct:block_list_header
/macosx-10.10.1/xnu-2782.1.97/bsd/vfs/
H A Dvfs_journal.c152 // fields as well as the first entry of binfo[]
548 next_blhdr = (block_list_header *)((long)blhdr->binfo[0].bnum);
549 blhdr->binfo[0].bnum = 0xdeadc0de;
776 blhdr->binfo[i].bnum = SWAP64(blhdr->binfo[i].bnum);
777 blhdr->binfo[i].u.bi.bsize = SWAP32(blhdr->binfo[i].u.bi.bsize);
778 blhdr->binfo[i].u.bi.b.cksum = SWAP32(blhdr->binfo[i].u.bi.b.cksum);
1220 && (blhdr->binfo[
[all...]
H A Dvfs_journal.h68 uint32_t checksum; // on-disk: checksum of this header and binfo[0]
70 block_info binfo[1]; // so we can reference them by name member in struct:block_list_header
/macosx-10.10.1/swig-12/Source/DOH/
H A Dbase.c263 DohObjInfo *binfo; local
267 binfo = b->type;
268 if (binfo->doh_first) {
269 return (binfo->doh_first) (b);
289 DohObjInfo *binfo; local
292 binfo = b->type;
293 if (binfo->doh_next) {
294 return (binfo->doh_next) (iter);
/macosx-10.10.1/kext_tools-384.1.4/
H A Dbootcaches.c2579 CFDictionaryRef binfo = NULL; local
2595 if (BLCreateBooterInformationDictionary(NULL, lookup_bsdname, &binfo))
2597 bparts = CFDictionaryGetValue(binfo, kBLAuxiliaryPartitionsKey);
2598 dparts = CFDictionaryGetValue(binfo, kBLDataPartitionsKey);
2605 dataPartitions = CFDictionaryGetValue(binfo, kBLDataPartitionsKey);
2677 if (binfo) CFRelease(binfo);
2688 CFDictionaryRef binfo = NULL; local
2705 if (BLCreateBooterInformationDictionary(NULL, bsdname, &binfo))
2707 bparts = CFDictionaryGetValue(binfo, kBLAuxiliaryPartitionsKe
[all...]
/macosx-10.10.1/PowerManagement-494.1.2/pmconfigd/
H A DPrivateLib.c3101 struct systemstats_battery_charge_level_s binfo; local
3102 bzero(&binfo, sizeof(struct systemstats_battery_charge_level_s));
3104 binfo.charge = b->currentCap;
3105 binfo.max_charge = b->maxCap;
3106 binfo.cycle_count = b->cycleCount;
3107 binfo.instant_amperage = b->instantAmperage;
3108 binfo.instant_voltage = b->voltage;
3109 binfo.last_minute_wattage = ((abs(b->voltage))*(abs(b->avgAmperage)))/1000;
3110 binfo.estimated_time_remaining = b->hwAverageTR;
3111 binfo
[all...]

Completed in 312 milliseconds