HomeSort by relevance Sort by last modified time
    Searched refs:storage (Results 276 - 300 of 1009) sorted by null

<<11121314151617181920>>

  /external/opencv/ml/src/
mlsvm.cpp 362 cvReleaseMemStorage( &storage );
375 storage = 0;
391 storage = 0;
425 storage = cvCreateChildMemStorage( _storage );
427 b = (double*)cvMemStorageAlloc( storage, alpha_count*sizeof(b[0]));
428 alpha_status = (schar*)cvMemStorageAlloc( storage, alpha_count*sizeof(alpha_status[0]));
429 G = (double*)cvMemStorageAlloc( storage, alpha_count*sizeof(G[0]));
431 buf[i] = (Qfloat*)cvMemStorageAlloc( storage, sample_count*2*sizeof(buf[i][0]) );
459 if( rows_hdr_size > storage->block_size )
460 CV_ERROR( CV_StsOutOfRange, "Too small storage block size" )
    [all...]
  /system/connectivity/shill/wifi/
wifi_provider.cc 120 const StoreInterface* storage = profile->GetConstStorage(); local
124 for (const auto& group : storage->GetGroupsWithProperties(args)) {
129 if (!GetServiceParametersFromStorage(storage,
141 // service has already loaded its configuration from storage.
376 StoreInterface* storage = profile->GetStorage(); local
378 if (WiFiService::FixupServiceEntries(storage)) {
379 storage->Flush();
404 if (!storage->GetStringList(kStorageId, freq_string, &frequencies)) {
432 bool WiFiProvider::Save(StoreInterface* storage) const {
443 storage->SetStringList(kStorageId, freq_string, frequencies)
    [all...]
  /system/connectivity/shill/cellular/
cellular_service_unittest.cc 417 NiceMock<MockStore> storage; local
418 EXPECT_CALL(storage, ContainsGroup(service_->GetStorageIdentifier()))
420 EXPECT_TRUE(service_->Load(&storage));
443 NiceMock<MockStore> storage; local
444 EXPECT_CALL(storage, ContainsGroup(_)).WillRepeatedly(Return(true));
445 EXPECT_CALL(storage, GetString(_, _, _)).WillRepeatedly(Return(true));
459 EXPECT_CALL(storage,
465 EXPECT_CALL(storage,
470 EXPECT_TRUE(service_->Load(&storage));
  /external/opencv/ml/include/
ml.h 198 virtual void write( CvFileStorage* storage, const char* name );
199 virtual void read( CvFileStorage* storage, CvFileNode* node );
253 virtual void write( CvFileStorage* storage, const char* name );
254 virtual void read( CvFileStorage* storage, CvFileNode* node );
399 CvMemStorage* storage, CvSVMKernel* kernel, GetRow get_row,
403 CvMemStorage* storage, CvSVMKernel* kernel, GetRow get_row,
411 double Cp, double Cn, CvMemStorage* storage,
414 CvMemStorage* storage, CvSVMKernel* kernel,
417 CvMemStorage* storage, CvSVMKernel* kernel,
421 CvMemStorage* storage, CvSVMKernel* kernel
437 CvMemStorage* storage; member in class:CvSVMSolver
549 CvMemStorage* storage; member in class:CvSVM
    [all...]
  /external/opencv/cv/src/
cvrotcalipers.cpp 348 cvMinAreaRect2( const CvArr* array, CvMemStorage* storage )
374 if( !storage )
375 storage = ptseq->storage;
383 if( storage )
385 CV_CALL( temp_storage = cvCreateChildMemStorage( storage ));
  /external/skia/include/private/
SkTArray.h 26 * Creates an empty array with no initial storage
340 * Creates an empty array that will use the passed storage block until it
344 SkTArray(SkAlignedSTStorage<N,T>* storage) {
345 this->init(NULL, 0, storage->get(), N);
349 * Copy another array, using preallocated storage if preAllocCount >=
350 * array.count(). Otherwise storage will only be used when array shrinks
354 SkTArray(const SkTArray& array, SkAlignedSTStorage<N,T>* storage) {
355 this->init(array.fItemArray, array.fCount, storage->get(), N);
359 * Copy a C array, using preallocated storage if preAllocCount >=
360 * count. Otherwise storage will only be used when array shrink
    [all...]
  /external/v8/test/webkit/
dfg-ensure-non-array-array-storage-on-window.js 78 // At this point we check to make sure that bar doesn't end up either creating array storage for
79 // the window proxy, or equally badly, storing to the already created array storage on the proxy
80 // (since foo() may have made the mistake of creating array storage). That's why we do the setter
  /system/connectivity/shill/ethernet/
ethernet.cc 175 bool Ethernet::Load(StoreInterface* storage) {
177 if (!storage->ContainsGroup(id)) {
183 storage->GetBool(id, kPPPoEProperty, &pppoe);
191 return Device::Load(storage);
194 bool Ethernet::Save(StoreInterface* storage) {
196 storage->SetBool(id, kPPPoEProperty, GetPPPoEMode(nullptr));
  /system/core/include/utils/
Vector.h 202 virtual void do_construct(void* storage, size_t num) const;
203 virtual void do_destroy(void* storage, size_t num) const;
389 void Vector<TYPE>::do_construct(void* storage, size_t num) const {
390 construct_type( reinterpret_cast<TYPE*>(storage), num );
394 void Vector<TYPE>::do_destroy(void* storage, size_t num) const {
395 destroy_type( reinterpret_cast<TYPE*>(storage), num );
  /external/opencv/cv/include/
cv.h 129 CvMemStorage* storage, CvSeq** comp,
410 CVAPI(int) cvFindContours( CvArr* image, CvMemStorage* storage, CvSeq** first_contour,
422 CVAPI(CvContourScanner) cvStartFindContours( CvArr* image, CvMemStorage* storage,
441 CVAPI(CvSeq*) cvApproxChains( CvSeq* src_seq, CvMemStorage* storage,
548 CvMemStorage* storage,
624 CvMemStorage* storage );
629 CV_INLINE CvSubdiv2D* cvCreateSubdivDelaunay2D( CvRect rect, CvMemStorage* storage )
632 sizeof(CvSubdiv2DPoint), sizeof(CvQuadEdge2D), storage );
717 int header_size, CvMemStorage* storage,
724 CVAPI(CvSeq*) cvFindDominantPoints( CvSeq* contour, CvMemStorage* storage,
    [all...]
  /external/curl/tests/server/
tftpd.c 128 char storage[PKTSIZE]; member in union:__anon8663
829 n = (ssize_t)recvfrom(sock, &buf.storage[0], sizeof(buf.storage), 0,
977 while(cp < &buf.storage[size]) {
990 if((cp+1) < &buf.storage[size]) {
1274 n = sread(peer, &ackbuf.storage[0], sizeof(ackbuf.storage));
    [all...]
  /art/compiler/driver/
compiled_method_storage_test.cc 49 CompiledMethodStorage* storage = driver.GetCompiledMethodStorage(); local
51 ASSERT_TRUE(storage->DedupeEnabled()); // The default.
  /art/runtime/
handle_scope.h 91 static HandleScope* Create(void* storage, HandleScope* link, uint32_t num_references)
93 return new (storage) HandleScope(link, num_references);
97 // Return backing storage used for references.
118 // Storage for references.
144 // Scoped handle storage of a fixed size that is usually stack allocated.
172 // Reference storage needs to be first as expected by the HandleScope layout.
  /cts/tests/tests/media/libmediandkjni/
native-media-jni.cpp 41 T *storage; member in class:simplevector
48 storage = new T[capacity];
51 delete[] storage;
56 T *old = storage;
58 storage = new T[capacity];
60 storage[i] = old[i];
64 storage[numfilled] = item;
73 return storage;
  /development/samples/Obb/src/com/example/android/obbapp/
ObbMountActivity.java 22 import android.os.storage.OnObbStateChangeListener;
23 import android.os.storage.StorageManager;
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
XEquivalenceMap.java 36 public XEquivalenceMap(Map<V,Set<K>> storage) {
37 target_sourceSet = storage;
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
XEquivalenceMap.java 35 public XEquivalenceMap(Map<V,Set<K>> storage) {
36 target_sourceSet = storage;
  /external/libcxx/test/std/atomics/atomics.types.generic/
integral.pass.cpp 154 _ALIGNAS_TYPE(A) char storage[sizeof(A)] = {23}; local
155 A& zero = *new (storage) A();
  /external/libogg/include/ogg/
ogg.h 38 long storage; member in struct:__anon16076
55 long body_storage; /* storage elements allocated */
107 int storage; member in struct:__anon16080
  /external/mesa3d/src/gallium/state_trackers/clover/core/
kernel.hpp 79 /// Storage space required for the referenced object.
80 virtual size_t storage() const;
148 virtual size_t storage() const;
  /external/skia/include/core/
SkShader.h 189 * Size of storage must be >= contextSize.
191 Context* createContext(const ContextRec&, void* storage) const;
421 virtual Context* onCreateContext(const ContextRec&, void* storage) const;
  /external/skia/src/core/
SkData.cpp 73 char* storage = (char*)sk_malloc_throw(actualLength); local
74 SkData* data = new (storage) SkData(length);
155 rather than referencing it. This would duplicate the storage (of the
  /external/skia/src/effects/
SkBlurDrawLooper.cpp 105 SkDrawLooper::Context* SkBlurDrawLooper::createContext(SkCanvas*, void* storage) const {
106 return new (storage) BlurDrawLooperContext(this);
  /external/skia/tests/
YUVTest.cpp 60 SkAutoMalloc storage(totalBytes);
62 planes[0] = storage.get();
  /frameworks/av/include/media/stagefright/
MetaData.h 305 void *storage() { function in struct:android::MetaData::typed_data
309 const void *storage() const { function in struct:android::MetaData::typed_data

Completed in 597 milliseconds

<<11121314151617181920>>