Searched defs:storage (Results 1 - 25 of 235) sorted by relevance

12345678910

/external/libcxx/test/std/atomics/atomics.flag/
H A Ddefault.pass.cpp29 _ALIGNAS_TYPE(A) char storage[sizeof(A)] = {1}; local
30 A& zero = *new (storage) A();
/external/llvm/unittests/ADT/
H A DTwineTest.cpp85 SmallString<8> storage; local
86 EXPECT_EQ(0, *Twine("hello").toNullTerminatedStringRef(storage).end());
88 *Twine(StringRef("hello")).toNullTerminatedStringRef(storage).end());
90 .toNullTerminatedStringRef(storage)
/external/libcxx/test/std/atomics/atomics.types.generic/
H A Dbool.pass.cpp229 _ALIGNAS_TYPE(A) char storage[sizeof(A)] = {1}; local
230 A& zero = *new (storage) A();
H A Daddress.pass.cpp124 _ALIGNAS_TYPE(A) char storage[sizeof(A)] = {23}; local
125 A& zero = *new (storage) A();
H A Dintegral.pass.cpp154 _ALIGNAS_TYPE(A) char storage[sizeof(A)] = {23}; local
155 A& zero = *new (storage) A();
/external/expat/tests/
H A Dchardata.c31 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...]
/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.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/skia/src/core/
H A DSkRasterizer.cpp18 SkIRect storage; local
29 storage = clipBounds->makeOutset(margin.fX, margin.fY);
30 clipBounds = &storage;
H A DSkVarAlloc.cpp29 SkVarAlloc::SkVarAlloc(size_t minLgSize, char* storage, size_t len) argument
31 , fByte(storage)
H A DSkData.cpp73 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/tests/
H A DBitmapGetColorTest.cpp39 uint32_t storage[4]; local
40 bm.installPixels(info, storage, info.minRowBytes());
H A DImageIsOpaqueTest.cpp20 // 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/clang/test/SemaTemplate/
H A Dattributes.cpp25 __attribute__((aligned(Align))) char storage[Size]; member in class:attribute_aligned::my_aligned_storage
/external/deqp/framework/randomshaders/
H A DrsgVariable.cpp31 Variable::Variable (const VariableType& type, Storage storage, const char* name) argument
33 , m_storage (storage)
H A DrsgVariable.hpp54 Variable (const VariableType& type, Storage storage, const char* name);
63 void setStorage (Storage storage) { m_storage = storage; } argument
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/runtime/
H A DRuntimeDataTest.java37 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...]
H A DRuntimeTestBase.java40 private TestStorage storage; field in class:RuntimeTestBase
49 storage = new TestStorage();
61 data.collect(storage, storage, false);
62 storage.assertData(1234, t.get());
81 data.collect(storage, storage, false);
82 storage.assertSize(1);
83 final boolean[] data = storage.getData(1001).getProbes();
93 data.collect(storage, storag
[all...]
/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/boringssl/src/crypto/bn/
H A Drsaz_exp.c81 unsigned char storage[320*3+32*9*16+64]; /* 5.5KB */ local
82 unsigned char *p_str = storage + (64-((size_t)storage%64));
259 OPENSSL_cleanse(storage,sizeof(storage));
277 unsigned char storage[16*8*8+64*2+64]; /* 1.2KB */ local
278 unsigned char *table = storage + (64-((size_t)storage%64));
323 OPENSSL_cleanse(storage,sizeof(storage));
[all...]
/external/deqp/modules/glshared/
H A DglsShaderPerformanceCase.hpp50 void setCalibrationInitialParamStorage (const de::SharedPtr<InitialCalibration>& storage) { m_initialCalibration = 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/libopus/celt/
H A Dentcode.h60 opus_uint32 storage; member in struct:ec_ctx
/external/mesa3d/src/glsl/
H A Dir_uniform.h121 union gl_constant_value *storage; member in struct:gl_uniform_storage
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...]

Completed in 989 milliseconds

12345678910