OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:numWords
(Results
1 - 12
of
12
) sorted by null
/device/google/contexthub/firmware/src/cpu/x86/
atomicBitset.c
63
uint32_t pos, i,
numWords
= (set->numBits + 31) / 32;
66
for (i = 0; i <
numWords
; i++, wordPtr++) {
/device/google/contexthub/firmware/src/platform/stm32f4xx/
crc.c
55
size_t
numWords
= size / 4;
68
for (i = 0; i <
numWords
; i++)
73
memcpy(&word, words +
numWords
, leftoverBytes);
bl.c
633
uint32_t
numWords
= __pubkeys_end - __pubkeys_start;
635
if (
numWords
% RSA_WORDS) // something is wrong
638
*numKeys =
numWords
/ RSA_WORDS;
[
all
...]
/device/google/contexthub/firmware/src/cpu/cortexm4f/
atomicBitset.c
86
uint32_t idx,
numWords
= ATOMIC_BITSET_NUM_WORDS(set->numBits);
90
for (idx = 0; idx <
numWords
; idx++, wordPtr++) {
119
uint32_t idx,
numWords
= ATOMIC_BITSET_NUM_WORDS(atomicallyAccessedSet->numBits);
124
for (idx = 0; idx <
numWords
; idx++)
132
uint32_t idx,
numWords
= ATOMIC_BITSET_NUM_WORDS(set->numBits);
137
for (idx = 0; idx <
numWords
; idx++)
/external/deqp/external/vulkancts/framework/vulkan/
vkBinaryRegistry.cpp
93
const size_t
numWords
= strLen/4 + 1; // Must always end up with at least one 0 byte
94
vector<deUint32> words (
numWords
, 0u);
172
void addToSparseIndex (SparseIndexNode* group, const deUint32* words, size_t
numWords
, deUint32 index)
186
DE_ASSERT(
numWords
> 1 || !child);
191
group->children.push_back(new SparseIndexNode(curWord,
numWords
== 1 ? index : 0));
196
if (
numWords
> 1)
197
addToSparseIndex(child, words+1,
numWords
-1, index);
/external/llvm/lib/Support/
APInt.cpp
34
inline static uint64_t* getClearedMemory(unsigned
numWords
) {
35
uint64_t * result = new uint64_t[
numWords
];
37
memset(result, 0,
numWords
* sizeof(uint64_t));
43
inline static uint64_t* getMemory(unsigned
numWords
) {
44
uint64_t * result = new uint64_t[
numWords
];
112
APInt::APInt(unsigned numBits, unsigned
numWords
, const uint64_t bigVal[])
114
initFromArray(makeArrayRef(bigVal,
numWords
));
174
unsigned
NumWords
= getNumWords();
175
for (unsigned i = 0; i <
NumWords
; ++i)
404
unsigned
numWords
= getNumWords()
[
all
...]
/frameworks/av/media/libstagefright/rtsp/
ARTPWriter.cpp
410
size_t
numWords
= (offset / 4) - 1;
411
data[2] =
numWords
>> 8;
412
data[3] =
numWords
& 0xff;
MyTransmitter.h
972
size_t
numWords
= (offset / 4) - 1;
973
data[2] =
numWords
>> 8;
974
data[3] =
numWords
& 0xff;
MyHandler.h
314
size_t
numWords
= (offset / 4) - 1;
315
data[2] =
numWords
>> 8;
316
data[3] =
numWords
& 0xff;
[
all
...]
/external/deqp/modules/gles31/functional/
es31fMultisampleTests.cpp
101
const int
numWords
= getEffectiveSampleMaskWordCount(nthBit - 1);
102
const deUint32 topWordBits = (deUint32)(nthBit - (
numWords
- 1) * wordSize);
103
std::vector<deUint32> mask (
numWords
);
105
for (int ndx = 0; ndx <
numWords
- 1; ++ndx)
108
mask[
numWords
- 1] = deBitMask32(0, (int)topWordBits);
[
all
...]
es31fTextureMultisampleTests.cpp
97
const int
numWords
= getEffectiveSampleMaskWordCount(nthBit - 1);
98
const deUint32 topWordBits = (deUint32)(nthBit - (
numWords
- 1) * wordSize);
99
std::vector<deUint32> mask (
numWords
);
101
for (int ndx = 0; ndx <
numWords
- 1; ++ndx)
104
mask[
numWords
- 1] = (deUint32)((1ULL << topWordBits) - (deUint32)1);
114
const int
numWords
= getEffectiveSampleMaskWordCount(nthBit);
115
const deUint32 topWordBits = (deUint32)(nthBit - (
numWords
- 1) * wordSize);
116
std::vector<deUint32> mask (
numWords
);
118
for (int ndx = 0; ndx <
numWords
- 1; ++ndx)
121
mask[
numWords
- 1] = (deUint32)(1ULL << topWordBits)
[
all
...]
/external/svox/pico/tts/
com_svox_picottsengine.cpp
760
int
numWords
= 1;
765
numWords
++;
769
if (
numWords
== 1) {
776
char * words[
numWords
];
798
for (i=0 ; i <
numWords
; i++) {
[
all
...]
Completed in 2488 milliseconds