OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:arr16
(Results
1 - 3
of
3
) sorted by null
/external/deqp/framework/delibs/decpp/
dePoolArray.cpp
36
PoolArray<deUint16>
arr16
(&pool);
46
arr16
.pushBack((deInt16)i);
50
DE_TEST_ASSERT(
arr16
.size() == 5000);
54
DE_TEST_ASSERT(
arr16
[i] == i);
61
DE_TEST_ASSERT(
arr16
.popBack() == (4999 - i));
65
DE_TEST_ASSERT(
arr16
.size() == 4000);
69
DE_TEST_ASSERT(
arr16
[i] == i);
74
arr16
.resize(1000);
78
arr16
.pushBack((deInt16)i);
82
DE_TEST_ASSERT(
arr16
.size() == 5000)
[
all
...]
/external/deqp/framework/delibs/depool/
dePoolArray.c
161
dePoolInt16Array*
arr16
= dePoolInt16Array_create(pool);
local
171
dePoolInt16Array_pushBack(
arr16
, (deInt16)i);
175
DE_TEST_ASSERT(dePoolInt16Array_getNumElements(
arr16
) == 5000);
179
DE_TEST_ASSERT(dePoolInt16Array_get(
arr16
, i) == i);
186
DE_TEST_ASSERT(dePoolInt16Array_popBack(
arr16
) == (4999 - i));
190
DE_TEST_ASSERT(dePoolInt16Array_getNumElements(
arr16
) == 4000);
194
DE_TEST_ASSERT(dePoolInt16Array_get(
arr16
, i) == i);
199
dePoolInt16Array_setSize(
arr16
, 1000);
203
dePoolInt16Array_pushBack(
arr16
, (deInt16)i);
207
DE_TEST_ASSERT(dePoolInt16Array_getNumElements(
arr16
) == 5000)
[
all
...]
/external/llvm/test/CodeGen/AArch64/
ldst-unsignedimm.ll
155
@
arr16
= global i16* null
181
%arr16_addr = load volatile i16*, i16** @
arr16
182
; CHECK: adrp {{x[0-9]+}},
arr16
183
; CHECK: ldr {{x[0-9]+}}, [{{x[0-9]+}}, {{#?}}:lo12:
arr16
]
Completed in 101 milliseconds