/external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/samples/storage_sample/ |
H A D | generate_clients.sh | 3 gen_client --discovery_url=storage.v1 --overwrite --outdir=storage --root_package=. client
|
/external/expat/tests/ |
H A D | chardata.c | 31 CharData_Init(CharData *storage) argument 33 assert(storage != NULL); 34 storage->count = -1; 38 CharData_AppendString(CharData *storage, const char *s) argument 40 int maxchars = sizeof(storage->data) / sizeof(storage->data[0]); 45 if (storage->count < 0) 46 storage->count = 0; 47 if ((len + storage->count) > maxchars) { 48 len = (maxchars - storage 57 CharData_AppendXMLChars(CharData *storage, const XML_Char *s, int len) argument 79 CharData_CheckString(CharData *storage, const char *expected) argument 108 CharData_CheckXMLChars(CharData *storage, const XML_Char *expected) argument [all...] |
H A D | chardata.h | 25 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);
|
/external/v8/test/mjsunit/regress/ |
H A D | regress-2646.js | 33 storage = []; 36 storage.push(new Float64Array(heap, 0, itemSize));
|
/external/mesa3d/src/glsl/ |
H A D | link_uniform_initializers.cpp | 38 get_storage(gl_uniform_storage *storage, unsigned num_storage, argument 42 if (strcmp(name, storage[i].name) == 0) 43 return &storage[i]; 50 copy_constant_to_storage(union gl_constant_value *storage, argument 58 storage[i].u = val->value.u[i]; 62 storage[i].i = val->value.i[i]; 65 storage[i].f = val->value.f[i]; 68 storage[i].b = int(val->value.b[i]); 111 struct gl_uniform_storage *const storage = local 115 if (storage [all...] |
/external/autotest/client/site_tests/hardware_UsbMount/ |
H A D | hardware_UsbMount.py | 10 from cros import storage as storage_mod 37 @param filter_dict: storage dictionary filter. 43 storage = self.wait_for_device(filter_dict, cycles=1, 46 if not os.path.ismount(storage['mountpoint']): 49 storage_filter = {'fs_uuid': storage['fs_uuid']} 51 # everytime the storage device is un-mounted. 52 self._tmpfile = os.path.join(storage['mountpoint'], 61 logging.debug('storage to umount %s', storage) 64 self.scanner.umount_volume(storage_dict=storage) [all...] |
/external/mesa3d/src/glsl/tests/ |
H A D | copy_constant_to_storage_tests.cpp | 32 copy_constant_to_storage(union gl_constant_value *storage, 49 gl_constant_value storage[17]; member in class:copy_constant_to_storage 72 const unsigned red_zone_size = Elements(storage) - val->type->components(); 73 fill_storage_array_with_sentinels(storage, 77 linker::copy_constant_to_storage(storage, 82 verify_data(storage, 0, val, red_zone_size); 91 const unsigned red_zone_size = Elements(storage) - val->type->components(); 92 fill_storage_array_with_sentinels(storage, 96 linker::copy_constant_to_storage(storage, 101 verify_data(storage, [all...] |
H A D | uniform_initializer_utils.h | 31 fill_storage_array_with_sentinels(gl_constant_value *storage, 46 verify_data(gl_constant_value *storage, unsigned storage_array_size,
|
H A D | uniform_initializer_utils.cpp | 31 fill_storage_array_with_sentinels(gl_constant_value *storage, argument 36 storage[i].u = 0xDEADBEEF; 39 storage[data_size + i].u = 0xBADDC0DE; 46 red_zone_is_intact(gl_constant_value *storage, argument 53 if (storage[idx].u != 0xBADDC0DE) 55 << "storage[" << idx << "].u = " << storage[idx].u 176 * \param storage Backing storage for the uniform 177 * \param storage_array_size Array size of the backing storage 185 verify_data(gl_constant_value *storage, unsigned storage_array_size, ir_constant *val, unsigned red_zone_size) argument [all...] |
/external/libcxx/test/std/atomics/atomics.flag/ |
H A D | default.pass.cpp | 29 _ALIGNAS_TYPE(A) char storage[sizeof(A)] = {1}; local 30 A& zero = *new (storage) A();
|
/external/lldb/test/lang/objc/real-definition/ |
H A D | Bar.h | 7 InternalClass *storage; variable
|
/external/llvm/test/MC/COFF/ |
H A D | invalid-scl-range.s | 4 # CHECK: storage class value '1337' out of range 5 # CHECK: storage class value '9001' out of range
|
H A D | invalid-scl.s | 3 # CHECK: storage class specified outside of symbol definition 4 # CHECK: storage class specified outside of symbol definition
|
/external/skia/src/svg/parser/ |
H A D | SkSVG.cpp | 23 SkAutoTMalloc<char> storage(size); 24 char* data = storage.get();
|
/external/v8/src/base/ |
H A D | lazy-instance.h | 102 static T* MutableInstance(StorageType* storage) { argument 103 return reinterpret_cast<T*>(storage); 107 static void InitStorageUsingTrait(StorageType* storage) { argument 108 ConstructTrait::Construct(MutableInstance(storage)); 117 static T* MutableInstance(StorageType* storage) { argument 118 return *storage; 122 static void InitStorageUsingTrait(StorageType* storage) { argument 123 *storage = CreateTrait::Create(); 147 static void Init(OnceType* once, Function function, Storage storage) { argument 148 CallOnce(once, function, storage); 156 Init(OnceType* once, Function function, Storage storage) argument 173 InitInstance(StorageType* storage) argument [all...] |
/external/deqp/framework/randomshaders/ |
H A D | rsgVariable.hpp | 54 Variable (const VariableType& type, Storage storage, const char* name); 63 void setStorage (Storage storage) { m_storage = storage; } argument
|
/external/libcxxabi/test/ |
H A D | test_vector2.pass.cpp | 55 void *storage; member in struct:vec_on_stack 56 vec_on_stack () : storage ( __cxxabiv1::__cxa_vec_new ( 10, 40, 8, throw_construct, throw_destruct )) {} 57 ~vec_on_stack () { __cxxabiv1::__cxa_vec_delete ( storage, 40, 8, throw_destruct ); }
|
/external/libdrm/ |
H A D | util_double_list.h | 115 #define LIST_FOR_EACH_ENTRY_SAFE(pos, storage, head, member) \ 117 storage = container_of(pos->member.next, pos, member); \ 119 pos = storage, storage = container_of(storage->member.next, storage, member)) 121 #define LIST_FOR_EACH_ENTRY_SAFE_REV(pos, storage, head, member) \ 123 storage = container_of(pos->member.prev, pos, member); \ 125 pos = storage, storage [all...] |
/external/mesa3d/src/gallium/auxiliary/util/ |
H A D | u_double_list.h | 125 #define LIST_FOR_EACH_ENTRY_SAFE(pos, storage, head, member) \ 127 storage = container_of(pos->member.next, pos, member); \ 129 pos = storage, storage = container_of(storage->member.next, storage, member)) 131 #define LIST_FOR_EACH_ENTRY_SAFE_REV(pos, storage, head, member) \ 133 storage = container_of(pos->member.prev, pos, member); \ 135 pos = storage, storage [all...] |
/external/clang/test/Analysis/inlining/ |
H A D | containers.cpp | 86 int *storage; member in class:MySet 89 MySet() : storage(0), size(0) { 96 MySet(unsigned n) : storage(new int[n]), size(n) { 103 ~MySet() { delete[] storage; } 124 return iterator(storage); 132 return iterator(storage+size); 142 return storage; 149 return storage + size;
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
H A D | org.eclipse.equinox.security_1.0.200.v20100503.jar | META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ... |
/external/opencv/cvaux/src/ |
H A D | extendededges.cpp | 47 CvSeq* icvCutContourRaster( CvSeq* current, CvMemStorage* storage, IplImage* image ); 52 CvMemStorage* storage ) 54 CvMemStorage* tmp_storage = cvCreateChildMemStorage( storage ); 75 CvSeq* new_seq = icvCutContourRaster( current, storage, image ); 121 CvSeq* icvCutContourRaster( CvSeq* current, CvMemStorage* storage, IplImage* image /*tmp image*/) argument 134 cvStartWriteSeq( current->flags, sizeof(CvContour), sizeof(CvPoint), storage, &writer ); 166 cvStartWriteSeq( current->flags, sizeof(CvContour), sizeof(CvPoint), storage, &writer );
|
/external/skia/tests/ |
H A D | ImageIsOpaqueTest.cpp | 20 // just need a safe amount of storage, but ensure that it is 4-byte aligned. 21 int32_t storage[(sizeof(SkImageInfo)*2) / sizeof(int32_t)]; local 22 SkWriteBuffer wb(storage, sizeof(storage)); 24 SkASSERT(wb.bytesWritten() < sizeof(storage)); 26 SkReadBuffer rb(storage, wb.bytesWritten());
|
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/runtime/ |
H A D | RuntimeDataTest.java | 37 private TestStorage storage; field in class:RuntimeDataTest 42 storage = new TestStorage(); 60 data.collect(storage, storage, false); 66 assertSame(storage.getData(123).getProbes(), data); 67 assertEquals("Foo", storage.getData(123).getName()); 72 data.collect(storage, storage, false); 73 storage.assertSize(0); 83 data.collect(storage, storag [all...] |
/external/deqp/modules/gles31/functional/ |
H A D | es31fProgramInterfaceDefinition.cpp | 273 if (m_defaultBlock.variables[varNdx].storage == glu::STORAGE_IN && isIllegalVertexInput(m_defaultBlock.variables[varNdx].varType)) 275 if (m_defaultBlock.variables[varNdx].storage == glu::STORAGE_OUT && isIllegalVertexOutput(m_defaultBlock.variables[varNdx].varType)) 277 if (m_defaultBlock.variables[varNdx].storage == glu::STORAGE_OUT && m_defaultBlock.variables[varNdx].interpolation != glu::INTERPOLATION_FLAT && isTypeIntegerOrContainsIntegers(m_defaultBlock.variables[varNdx].varType)) 282 if (m_defaultBlock.interfaceBlocks[interfaceNdx].storage == glu::STORAGE_IN || 283 m_defaultBlock.interfaceBlocks[interfaceNdx].storage == glu::STORAGE_PATCH_IN || 284 m_defaultBlock.interfaceBlocks[interfaceNdx].storage == glu::STORAGE_PATCH_OUT) 294 if (m_defaultBlock.variables[varNdx].storage == glu::STORAGE_IN && isIllegalFragmentInput(m_defaultBlock.variables[varNdx].varType)) 296 if (m_defaultBlock.variables[varNdx].storage == glu::STORAGE_IN && m_defaultBlock.variables[varNdx].interpolation != glu::INTERPOLATION_FLAT && isTypeIntegerOrContainsIntegers(m_defaultBlock.variables[varNdx].varType)) 298 if (m_defaultBlock.variables[varNdx].storage == glu::STORAGE_OUT && isIllegalFragmentOutput(m_defaultBlock.variables[varNdx].varType)) 303 if (m_defaultBlock.interfaceBlocks[interfaceNdx].storage [all...] |