Searched refs:reqSize (Results 1 - 5 of 5) sorted by path

/macosx-10.10/IOFireWireIP-226.2/KernelSource/IOKit/
H A DIOFWIPBusInterface.cpp3286 UInt32 reqSize = size + smask + lmask; // we over-request so we can fulfill alignment needs. local
3290 if(reqSize > mhlen && reqSize <= minclsize) //as protection from drivers that incorrectly assume they always get a single-mbuf packet
3291 reqSize = minclsize + 1; //we force kernel to give us a cluster instead of chained small mbufs.
3293 if( 0 == mbuf_allocpacket(how, reqSize, NULL, &packet))
/macosx-10.10/IONetworkingFamily-101/
H A DIONetworkController.cpp1013 UInt32 reqSize = size + smask + lmask; // we over-request so we can fulfill alignment needs. local
1019 if ((reqSize > mbuf_get_mhlen()) && (reqSize <= minSize))
1020 reqSize = minSize + 1;
1022 if( 0 == mbuf_allocpacket(how, reqSize, NULL, &packet))
/macosx-10.10/tcl-105/tcl/tcl/generic/
H A DtclThreadAlloc.c60 size_t reqSize; /* Requested allocation size. */ member in struct:Block::__anon12762
69 #define blockReqSize b.reqSize
134 static char * Block2Ptr(Block *blockPtr, int bucket, unsigned int reqSize);
292 unsigned int reqSize)
304 if (((size_t) reqSize) > max - sizeof(Block) - RCHECK) {
323 size = reqSize + sizeof(Block);
331 cachePtr->totalAssigned += reqSize;
343 cachePtr->buckets[bucket].totalAssigned += reqSize;
349 return Block2Ptr(blockPtr, bucket, reqSize);
432 unsigned int reqSize)
288 TclpAlloc( unsigned int reqSize) argument
425 TclpRealloc( char *ptr, unsigned int reqSize) argument
734 Block2Ptr( Block *blockPtr, int bucket, unsigned int reqSize) argument
[all...]
/macosx-10.10/tcl-105/tcl84/tcl/generic/
H A DtclThreadAlloc.c81 size_t reqSize; /* Requested allocation size. */ member in struct:Block::__anon12820
90 #define b_reqsize b.reqSize
/macosx-10.10/tcl-105/tk/tk/generic/ttk/
H A DttkPanedwindow.c37 * If reqSize == 0, use 0 for the weight as well. This ensures that
97 int reqSize; /* Pane request size */ member in struct:__anon13560
123 pane->reqSize
245 width += pane->reqSize;
255 height += pane->reqSize;
282 pane->reqSize = size >= 0 ? size : 0;
291 * Allocate pane->reqSize pixels to each pane, and distribute
309 int reqSize = 0, totalWeight = 0; local
319 reqSize += pane->reqSize;
[all...]

Completed in 395 milliseconds