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

1234567891011>>

/external/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);
/external/v8/test/mjsunit/regress/
H A Dregress-2646.js33 storage = [];
36 storage.push(new Float64Array(heap, 0, itemSize));
/external/mesa3d/src/glsl/
H A Dlink_uniform_initializers.cpp38 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...]
H A Dir_uniform.h121 union gl_constant_value *storage; member in struct:gl_uniform_storage
/external/mesa3d/src/glsl/tests/
H A Dcopy_constant_to_storage_tests.cpp32 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 Duniform_initializer_utils.h31 fill_storage_array_with_sentinels(gl_constant_value *storage,
46 verify_data(gl_constant_value *storage, unsigned storage_array_size,
H A Duniform_initializer_utils.cpp31 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 Ddefault.pass.cpp28 _ALIGNAS_TYPE(A) char storage[sizeof(A)] = {1}; local
29 A& zero = *new (storage) A();
/external/lldb/test/lang/objc/real-definition/
H A DBar.h7 InternalClass *storage; variable
/external/v8/src/base/
H A Dlazy-instance.h102 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 DrsgVariable.hpp54 Variable (const VariableType& type, Storage storage, const char* name);
63 void setStorage (Storage storage) { m_storage = storage; } argument
/external/libcxxabi/test/
H A Dtest_vector2.pass.cpp55 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/freedreno/
H A Dlist.h115 #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/libdrm/tests/radeon/
H A Dlist.h115 #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 Du_double_list.h125 #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 Dcontainers.cpp86 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 Dorg.eclipse.equinox.security_1.0.200.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/skia/src/core/
H A DSkStreamPriv.h17 * Copy the provided stream to memory allocated by storage.
19 * @param storage Allocator to hold the memory. Will be reset to be large
21 * storage->get() will point to data holding the SkStream's entire
23 * @param stream SkStream to be copied into storage.
25 * number of bytes pointed to by storage->get(). Returns 0 on failure.
27 size_t SkCopyStreamToStorage(SkAutoMalloc* storage, SkStream* stream);
H A DSkRasterizer.cpp18 SkIRect storage; local
30 storage = clipBounds->makeOutset(margin.fX, margin.fY);
31 clipBounds = &storage;
/external/opencv/cvaux/src/
H A Dextendededges.cpp47 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/deqp/modules/gles31/functional/
H A Des31fProgramInterfaceDefinition.cpp273 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...]
/external/mesa3d/src/mesa/math/
H A Dm_vector.c76 * \param storage pointer to storage for the vector's data
79 _mesa_vector4f_init( GLvector4f *v, GLbitfield flags, GLfloat (*storage)[4] )
83 v->data = storage;
84 v->start = (GLfloat *) storage;
91 * Initialize GLvector objects and allocate storage.
103 v->storage = _mesa_align_malloc( count * 4 * sizeof(GLfloat), alignment );
105 v->start = (GLfloat *) v->storage;
106 v->data = (GLfloat (*)[4]) v->storage;
114 * vector's storage fiel
[all...]
/external/skia/tests/
H A DBitmapGetColorTest.cpp39 uint32_t storage[4]; local
40 bm.installPixels(info, storage, info.minRowBytes());
H A DWriter32Test.cpp15 SkAutoSMalloc<256> storage(size);
17 writer.flatten(storage.get());
18 REPORTER_ASSERT(reporter, !memcmp(storage.get(), expected, size));
24 // fit in external storage if you used it. This would crash in debug mode.
25 uint8_t storage[4]; local
26 SkWriter32 writer(storage, sizeof(storage));
31 uint8_t storage[8]; local
32 SkWriter32 writer(storage, sizeof(storage));
239 uint32_t storage[256]; local
[all...]

Completed in 929 milliseconds

1234567891011>>