Searched refs:storage (Results 1 - 25 of 406) sorted by relevance

1234567891011>>

/macosx-10.9.5/expat-12/expat/tests/
H A Dchardata.c35 CharData_Init(CharData *storage) argument
37 assert(storage != NULL);
38 storage->count = -1;
42 CharData_AppendString(CharData *storage, const char *s) argument
44 int maxchars = sizeof(storage->data) / sizeof(storage->data[0]);
49 if (storage->count < 0)
50 storage->count = 0;
51 if ((len + storage->count) > maxchars) {
52 len = (maxchars - storage
61 CharData_AppendXMLChars(CharData *storage, const XML_Char *s, int len) argument
83 CharData_CheckString(CharData *storage, const char *expected) argument
112 CharData_CheckXMLChars(CharData *storage, const XML_Char *expected) argument
[all...]
H A Dchardata.h25 void CharData_Init(CharData *storage);
27 void CharData_AppendString(CharData *storage, const char *s);
29 void CharData_AppendXMLChars(CharData *storage, const XML_Char *s, int len);
31 int CharData_CheckString(CharData *storage, const char *s);
33 int CharData_CheckXMLChars(CharData *storage, const XML_Char *s);
/macosx-10.9.5/CPANInternal-140/DBIx-Class/t/storage/
H A Ddbh_do.t12 my $storage = $schema->storage;
15 is $_[0], $storage;
16 is $_[1], $storage->dbh;
21 $storage->dbh_do(
26 my $storage_class = ref $storage;
31 $storage->dbh_do("__test_method", "foo", "bar");
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DWebCookieManagerCFNet.cpp38 /* [retval][out] */ CFHTTPCookieStorageRef* storage)
40 if (!storage)
43 *storage = overridenCookieStorage();
48 /* [in] */ CFHTTPCookieStorageRef storage)
50 overrideCookieStorage(storage);
37 cookieStorage( CFHTTPCookieStorageRef* storage) argument
47 setCookieStorage( CFHTTPCookieStorageRef storage) argument
H A DWebCookieManagerCurl.cpp35 /* [retval][out] */ CFHTTPCookieStorageRef* storage)
42 /* [in] */ CFHTTPCookieStorageRef storage)
34 cookieStorage( CFHTTPCookieStorageRef* storage) argument
41 setCookieStorage( CFHTTPCookieStorageRef storage) argument
H A DWebCookieManager.h48 /* [retval][out] */ CFHTTPCookieStorageRef* storage);
51 /* [in] */ CFHTTPCookieStorageRef storage);
/macosx-10.9.5/Security-55471.14.18/libsecurity_codesigning/antlr2/src/
H A DBitSet.cpp15 : storage(nbits)
18 storage[i] = false;
22 : storage(nlongs*32)
25 storage[i] = (bits_[i>>5] & (1UL << (i&31))) ? true : false;
34 if( el >= storage.size() )
35 storage.resize( el+1, false );
37 storage[el] = true;
42 if ( el >= storage.size())
45 return storage[el];
51 for (unsigned int i = 0; i < storage
[all...]
/macosx-10.9.5/bless-98/libbless/Misc/
H A DBLGetCStringRepresentation.c45 * by thread-local storage
65 struct stringer *storage; local
88 storage = (struct stringer *)pthread_getspecific(blcstr_key);
89 if(storage == NULL) {
90 storage = malloc(sizeof(*storage));
91 storage->size = (size_t)strsize;
92 storage->string = malloc(storage->size);
94 ret = pthread_setspecific(blcstr_key, storage);
134 struct stringer *storage = (struct stringer *)addr; local
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/mk4tcl/metakit/demos/
H A Ddemo.cpp31 // Note: be careful with the lifetime of views vs. storage objects.
32 // When a storage object goes away, all associated views are cleared.
33 c4_Storage storage ("myfile.dat", true);
39 c4_View vAddress = storage.GetAs("address[name:S,country:S]");
58 storage.Commit(); // Data file now contains 2 addresses.
63 storage.Commit(); // Data file now contains 3 addresses.
66 vAddress = storage.GetAs("address[name:S,country:S,age:I]");
72 storage.Commit(); // Data file now contains 3 addresses with age field.
75 c4_View vInfo = storage.GetAs("info[version:I]");
81 storage
[all...]
/macosx-10.9.5/CF-855.17/
H A DCFStorage.h47 storage was a single block.
71 @param value The current value from the storage.
100 Creates a new mutable storage with elements of the given size.
102 memory for the set and its storage for values. This
107 to be stored in the storage. If this value is zero or
117 @param storage The storage to which the values are to be inserted.
119 @param range The range of values within the storage to insert. The
120 range location must be at least zero and not exceed the count of the storage.
122 increased by the length of the range. Thus this creates a gap in the storage
[all...]
H A DCFStorage.c32 ??? Currently elementSize cannot be greater than storage->maxLeafCapacity, which is less than or equal to __CFStorageMaxLeafCapacity
83 /* Each node in the storage. isLeaf determines whether the node is a leaf node or a node inside the tree. If latter, number of children are determined by the number of non-NULL entries in child[]. (NULL entries are at the end.)
94 CFRange cachedRange; //the absolute range of this node, in "value" units. This is valid only if this node is referenced by storage->cacheNode, and used by the cache. In general this is not valid, and the offset needs to be passed down from the tree
142 /* Allocates the memory and initializes the capacity in a leaf. This locks not for mutations (mutations are not thread-safe in general), but for lazy allocation of storage during reading.
144 CF_INLINE void __CFStorageAllocLeafNodeMemory(CFAllocatorRef allocator, CFStorageRef storage, CFStorageNode *node, CFIndex cap, bool compact) { argument
147 if (cap > storage->maxLeafCapacity) cap = storage->maxLeafCapacity;
153 __CFSpinLock(&(storage->cacheReaderMemoryAllocationLock));
156 __CFAssignWithWriteBarrier((void **)&node->info.leaf.memory, _CFAllocatorReallocateGC(allocator, node->info.leaf.memory, cap, storage->nodeHint)); // This will free...
160 __CFSpinUnlock(&(storage
178 __CFStorageConvertByteToValue(ConstCFStorageRef storage, CFIndex byte) argument
185 __CFStorageConvertBytesToValueRange(ConstCFStorageRef storage, CFIndex offset, CFIndex length) argument
192 __CFStorageConvertValueToByte(ConstCFStorageRef storage, CFIndex value) argument
199 __CFStorageConvertValuesToByteRange(ConstCFStorageRef storage, CFIndex offset, CFIndex length) argument
222 __CFStorageReleaseNode(CFStorageRef storage, CFStorageNode *node) argument
231 __CFStorageReleaseNodeWithNullCheck(CFStorageRef storage, CFStorageNode *node) argument
235 __CFStorageDeallocateNode(CFStorageRef storage, CFStorageNode *node) argument
252 __CFStorageThawNodeDuringMutation(CFStorageRef storage, CFStorageNode *node) argument
283 __CFStorageSetCache(CFStorageRef storage, CFStorageNode *node, CFIndex locInBytes) argument
294 __CFStorageGetFromCache(CFStorageRef storage, CFIndex loc, CFRange * restrict validConsecutiveValueRange, bool requireUnfrozenNode) argument
306 __CFStorageAllocLeafNodeMemory(CFGetAllocator(storage), storage, cachedNode, cachedNode->numBytes, false); local
355 __CFStorageFindByte(CFStorageRef storage, CFStorageNode *node, CFIndex byteNum, CFIndex absoluteByteOffsetOfNode, CFStorageNode **resultNode, CFRange *validConsecutiveByteRange, bool requireUnfreezing) argument
359 __CFStorageAllocLeafNodeMemory(CFGetAllocator(storage), storage, node, node->numBytes, false); local
380 __CFStorageGetValueAtIndex(CFStorageRef storage, CFIndex idx, CFRange *validConsecutiveValueRange, bool requireUnfreezing) argument
409 __CFStorageCreateNode(CFAllocatorRef allocator, CFStorageRef storage, bool isLeaf, CFIndex numBytes) argument
429 __CFStorageCopyNode(CFStorageRef storage, const CFStorageNode *node) argument
476 __CFStorageDeleteLeafFrozen(CFAllocatorRef allocator, CFStorageRef storage, const CFStorageNode *node, CFRange range) argument
503 __CFStoragePopulateBranchChildrenAfterDeletion(CFAllocatorRef allocator, CFStorageRef storage, const CFStorageNode *node, CFRange range, CFStorageNode *newChildren[3], bool childrenAreDefinitelyFrozen, bool compact) argument
548 __CFStorageDeleteBranchFrozen(CFAllocatorRef allocator, CFStorageRef storage, const CFStorageNode *node, CFRange range) argument
580 __CFStorageDeleteFrozen(CFAllocatorRef allocator, CFStorageRef storage, const CFStorageNode *node, CFRange range) argument
593 __CFStorageDeleteUnfrozen(CFAllocatorRef allocator, CFStorageRef storage, CFStorageNode *node, CFRange range, bool compact, bool isRootNode) argument
642 __CFStorageInsertLeafFrozen(CFAllocatorRef allocator, CFStorageRef storage, const CFStorageNode *node, CFIndex byteNum, CFIndex size, CFIndex absoluteByteNum) argument
708 __CFStorageInsertBranchFrozen(CFAllocatorRef allocator, CFStorageRef storage, const CFStorageNode *node, CFIndex byteNum, CFIndex size, CFIndex absoluteByteNum) argument
755 __CFStorageInsertFrozen(CFAllocatorRef allocator, CFStorageRef storage, const CFStorageNode *node, CFIndex byteNum, CFIndex size, CFIndex absoluteByteNum) argument
768 __CFStorageInsertLeafUnfrozen(CFAllocatorRef allocator, CFStorageRef storage, CFStorageNode *node, CFIndex byteNum, CFIndex size, CFIndex absoluteByteNum) argument
821 __CFStorageInsertBranchUnfrozen(CFAllocatorRef allocator, CFStorageRef storage, CFStorageNode *node, CFIndex byteNum, CFIndex size, CFIndex absoluteByteNum) argument
876 __CFStorageInsertUnfrozen(CFAllocatorRef allocator, CFStorageRef storage, CFStorageNode *node, CFIndex byteNum, CFIndex size, CFIndex absoluteByteNum) argument
887 __CFStorageInsert(CFAllocatorRef allocator, CFStorageRef storage, CFStorageNode *node, CFIndex byteNum, CFIndex size, CFIndex absoluteByteNum) argument
896 __CFStorageDelete(CFAllocatorRef allocator, CFStorageRef storage, CFStorageNode *node, CFRange range, bool compact) argument
908 __CFStorageGetCount(CFStorageRef storage) argument
966 __CFStorageGetCapacity(CFStorageRef storage) argument
970 __CFStorageGetValueSize(CFStorageRef storage) argument
975 CFStorageRef storage = (CFStorageRef)cf; local
985 __CFStorageEnumerateNodesInByteRangeWithBlock(CFStorageRef storage, CFStorageNode *node, CFIndex globalOffsetOfNode, CFRange range, CFIndex concurrencyToken, CFStorageApplierBlock applier) argument
991 __CFStorageAllocLeafNodeMemory(CFGetAllocator(storage), storage, node, node->numBytes, false); local
1043 _CFStorageFindNodeContainingByteRange(ConstCFStorageRef storage, const CFStorageNode *node, CFRange nodeRange, CFIndex globalOffsetOfNode, CFRange *outGlobalByteRangeOfResult) argument
1066 __CFStorageClearRootNode(CFStorageRef storage) argument
1088 CFStorageRef storage = (CFStorageRef)cf; local
1115 CFStorageRef storage; local
1159 const ConstCFStorageRef storage = mutStorage; //we expect this to never modify the storage, so use a const variable to help enforce that local
1211 CFStorageGetCount(CFStorageRef storage) argument
1218 CFStorageGetValueAtIndex(CFStorageRef storage, CFIndex idx, CFRange *validConsecutiveValueRange) argument
1223 CFStorageGetConstValueAtIndex(CFStorageRef storage, CFIndex idx, CFRange *validConsecutiveValueRange) argument
1232 CFStorageInsertValues(CFStorageRef storage, CFRange range) argument
1272 CFStorageDeleteValues(CFStorageRef storage, CFRange range) argument
1328 CFStorageGetValues(CFStorageRef storage, CFRange range, void *values) argument
1342 _CFStorageFastEnumeration(CFStorageRef storage, struct __objcFastEnumerationStateEquivalent *state, void *stackbuffer, unsigned long count) argument
1354 CFStorageApplyFunction(CFStorageRef storage, CFRange range, CFStorageApplierFunction applier, void *context) argument
1365 CFStorageApplyBlock(CFStorageRef storage, CFRange range, CFStorageEnumerationOptionFlags options, CFStorageApplierBlock applier) argument
1376 CFStorageReplaceValues(CFStorageRef storage, CFRange range, const void *values) argument
1392 __CFStorageApplyNodeBlockInterior(CFStorageRef storage, CFStorageNode *node, void (^block)(CFStorageRef storage, CFStorageNode *node)) argument
1402 __CFStorageApplyNodeBlock(CFStorageRef storage, void (^block)(CFStorageRef storage, CFStorageNode *node)) argument
1407 __CFStorageEstimateTotalAllocatedSize(CFStorageRef storage) argument
1421 __CFStorageSetAlwaysFrozen(CFStorageRef storage, bool alwaysFrozen) argument
1425 __CFStorageCheckNodeCachedLengthIntegrity(ConstCFStorageRef storage, const CFStorageNode *node) argument
1444 __CFStorageCheckNodeIntegrity(ConstCFStorageRef storage, const CFStorageNode *node) argument
1455 __CFStorageCheckIntegrity(CFStorageRef storage) argument
1474 _CFStorageSetWeak(CFStorageRef storage) argument
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_codesigning/antlr2/antlr/
H A DCircularQueue.hpp27 : storage()
39 storage.clear();
45 return storage[idx+m_offset];
51 storage.erase( storage.begin(), storage.begin() + m_offset + 1 );
73 storage.erase( storage.begin(), storage.begin() + m_offset + nb );
81 storage
89 ANTLR_USE_NAMESPACE(std)vector<T> storage; member in class:antlr::CircularQueue
[all...]
H A DBitSet.hpp42 ANTLR_USE_NAMESPACE(std)vector<bool> storage; member in class:antlr::BitSet
/macosx-10.9.5/IOFWDVComponents-207.4.1/
H A DDVControlComponent.c63 #define CALLCOMPONENT_GLOBALS() ControlComponentInstancePtr storage
66 #define DEVICECONTROL_GLOBALS() ControlComponentInstancePtr storage
73 FWDVCCodecComponentDispatch(ComponentParameters *params, char ** storage);
227 FWDVCComponentOpen(ControlComponentInstancePtr storage, ComponentInstance self) argument
232 storage = (ControlComponentInstancePtr)NewPtrClear(sizeof(ControlComponentInstance));
233 if( nil == storage)
235 RecordEventLogger( 'devc', 'ope2', (int)storage, 0);
237 SetComponentInstanceStorage(self, (Handle) storage);
247 FWDVCComponentClose(ControlComponentInstancePtr storage, ComponentInstance self) argument
249 RecordEventLogger( 'devc', 'clos', 0, (unsigned long) storage);
265 FWDVCComponentVersion(ControlComponentInstancePtr storage) argument
272 FWDVCComponentRegister(ControlComponentInstancePtr storage) argument
302 FWDVCComponentCanDo(ControlComponentInstancePtr storage, short selector) argument
330 FWDVCCodecComponentDispatch(ComponentParameters *params, char ** storage) argument
[all...]
/macosx-10.9.5/CPANInternal-140/Params-Validate/t/lib/PVTests/
H A DCallbacks.pm50 Foo->new( storage => 'InMemory', file => 'something' );
60 my %storage = map { lc $_ => $_ } ( qw( InMemory XML BerkeleyDB ) );
70 { storage =>
72 { 'is a valid storage type' =>
73 sub { $storage{ lc $_[0] } } },
/macosx-10.9.5/WebKit-7537.78.2/win/Interfaces/
H A DIWebCookieManager.idl49 [local] HRESULT cookieStorage([out, retval] CFHTTPCookieStorageRef* storage);
51 [local] HRESULT setCookieStorage([in] CFHTTPCookieStorageRef storage);
/macosx-10.9.5/tcl-102/tcl_ext/mk4tcl/metakit/examples/
H A Dmkhash.cpp70 c4_Storage storage ("test.dat", true);
85 data = storage.GetAs("data[key:S,key2:S]");
87 data = storage.GetAs("data[_B[key:S,key2:S]]");
92 data = storage.GetAs("data[key:S]");
94 data = storage.GetAs("data[_B[key:S]]");
100 map = storage.GetAs("map[_H:I,_R:I]");
102 map = storage.GetAs("map[_B[_H:I,_R:I]]");
128 storage.Commit();
132 storage.Commit();
143 i, at, ft, ct, storage
[all...]
H A Daside.py16 db = mk.storage("_f.mk", 1)
24 db = mk.storage("_f.mk", 0)
28 dba = mk.storage("_f.mka", 1)
42 db = mk.storage("_f.mk", 0)
49 dba = mk.storage("_f.mka", 0)
65 db = mk.storage("_f.mk", 1)
71 db = mk.storage("_f.mk", 0)
75 dba = mk.storage("_f.mka", 1)
88 db = mk.storage("_f.mk", 0)
94 dba = mk.storage("_
[all...]
H A Dcase.py14 db = metakit.storage()
H A Dpair.py17 db = metakit.storage()
/macosx-10.9.5/mDNSResponder-522.92.1/mDNSMacOS9/
H A DmDNSLibrary.c33 // Allocate another chunk of cache storage
34 CacheEntity *storage = OTAllocMem(sizeof(CacheEntity) * RR_CACHE_SIZE); local
35 if (storage) mDNS_GrowCache(m, storage, RR_CACHE_SIZE);
/macosx-10.9.5/CommonCrypto-60049/libcn/
H A Dcn_globals.h65 static struct cn_globals_s storage;
66 return &storage;
/macosx-10.9.5/CPANInternal-140/DBIx-Class/t/
H A D94versioning.t51 eval { $schema_v1->storage->dbh->do('drop table ' . $version_table_name) };
52 eval { $schema_v1->storage->dbh->do('drop table ' . $old_table_name) };
87 $schema_v2->storage->dbh->do('select NewVersionName from TestVersion');
103 $schema_version->storage->dbh->do('select * from ' . $version_table_name);
107 $schema_version->storage->dbh->do("DROP TABLE IF EXISTS $old_table_name");
108 $schema_version->storage->dbh->do("RENAME TABLE $version_table_name TO $old_table_name");
115 $schema_version->storage->dbh->do('select * from ' . $old_table_name);
143 $schema_v3->storage->dbh->do('select ExtraColumn from TestVersion');
150 eval { $schema_v1->storage->dbh->do('drop table ' . $version_table_name) };
151 eval { $schema_v1->storage
[all...]
/macosx-10.9.5/IOStorageFamily-172/
H A DIOStorageDeviceCharacteristics.h27 #include <IOKit/storage/IOStorageProtocolCharacteristics.h>
/macosx-10.9.5/WebCore-7537.78.1/platform/audio/
H A DAudioChannel.h45 AudioChannel(float* storage, size_t length) argument
47 , m_rawPointer(storage)
52 // Manage storage for us.
70 // storage represents external memory not managed by this object.
71 void set(float* storage, size_t length) argument
73 m_memBuffer.clear(); // cleanup managed storage
74 m_rawPointer = storage;

Completed in 418 milliseconds

1234567891011>>