/external/bison/lib/ |
lbitset.c | 41 /* Number of words to use for each element. The larger the value the 66 bitset_word words[LBITSET_ELT_WORDS]; /* Bits that are set. */ member in struct:lbitset_elt_struct 84 ((lbitset_elt *) (void *) ((char *) (X) - offsetof (lbitset_elt, words))) 151 memset (elt->words, 0, sizeof (elt->words)); 189 bset->b.cdata = next->words; 194 bset->b.cdata = prev->words; 221 bset->b.cdata = elt->prev->words; 248 if (elt->words[i]) 314 bset->b.cdata = elt->words; [all...] |
/external/flac/libFLAC/ |
bitreader.c | 62 * This should be at least twice as large as the largest number of words 75 static const unsigned FLAC__BITREADER_DEFAULT_CAPACITY = 65536u / FLAC__BITS_PER_WORD; /* in words */ 81 unsigned capacity; /* in words */ 82 unsigned words; /* # of completed words in buffer */ member in struct:FLAC__BitReader 83 unsigned bytes; /* # of bytes in incomplete word at buffer[words] */ 84 unsigned consumed_words; /* #words ... */ 130 end = br->words + (br->bytes? 1:0); 133 br->words -= start; 140 bytes = (br->capacity - br->words) * FLAC__BYTES_PER_WORD - br->bytes 718 unsigned cwords, words, lsbs, msbs, x, y; local [all...] |
/prebuilts/ndk/r13/sources/third_party/shaderc/third_party/spirv-tools/source/ |
binary.cpp | 83 spv_result_t parse(const uint32_t* words, size_t num_words, 101 // starting at inst_offset words into the SPIR-V binary. 104 // appends the words for this operand, converted to host native endianness, 165 return spvFixWord(_.words[index], _.endian); 186 : words(words_arg), 193 const uint32_t* words; // Words in the binary SPIR-V module. 194 size_t num_words; // Number of words in the module. 196 size_t word_index; // The current position in words. 214 spv_result_t Parser::parse(const uint32_t* words, size_t num_words [all...] |
validate.cpp | 107 const uint32_t target = *(inst->words + inst->operands[0].offset); 109 reinterpret_cast<const char*>(inst->words + inst->operands[1].offset); 113 const uint32_t target = *(inst->words + inst->operands[0].offset); 115 reinterpret_cast<const char*>(inst->words + inst->operands[2].offset); 135 std::vector<uint32_t>(inst.words, inst.words + inst.num_words)}); 138 if (spvIsIdType(op->type)) _.usedefs().AddUse(inst.words[op->offset]); 147 _.entry_points().push_back(inst->words[2]);
|
opcode.cpp | 159 void spvInstructionCopy(const uint32_t* words, const SpvOp opcode, 163 pInst->words.resize(wordCount); 165 pInst->words[wordIndex] = spvFixWord(words[wordIndex], endian); 169 spvOpcodeSplit(pInst->words[wordIndex], &thisWordCount, &thisOpcode);
|
validate_instruction.cpp | 116 const auto word = inst->words[operand.offset]; 149 static_cast<SpvCapability>(inst->words[inst->operands[0].offset])); 152 static_cast<SpvAddressingModel>(inst->words[inst->operands[0].offset])); 154 static_cast<SpvMemoryModel>(inst->words[inst->operands[1].offset])); 158 static_cast<SpvStorageClass>(inst->words[inst->operands[2].offset]);
|
/build/make/core/ |
device.mk | 62 $(if $(filter 1,$(words $(d))), \ 64 $(if $(filter 0,$(words $(d))), \
|
/external/toybox/tests/ |
wc.test | 8 some words .
|
/frameworks/rs/rsov/compiler/spirit/ |
entity.h | 57 template <typename T> T *Deserialize(const std::vector<uint32_t> &words) { 58 std::unique_ptr<InputWordStream> IS(InputWordStream::Create(words));
|
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/ |
AbstractDictDecoder.java | 44 public void readUnigramsAndBigramsBinary(final TreeMap<Integer, String> words, 51 BinaryDictIOUtils.readUnigramsAndBigramsBinary(this, words, frequencies, bigrams);
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-mmix/ |
bspec803.s | 2 TETRA 2 % Decent section length name (in 32-bit words). However...
|
bspec804.s | 2 TETRA 2 % Decent section length name (in 32-bit words).
|
bspec805.s | 2 TETRA 2 % Decent section length name (in 32-bit words).
|
bspec806.s | 2 TETRA 2 % Decent section length name (in 32-bit words).
|
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/ |
BinaryDictionaryTests.java | 322 final ArrayList<String> words = new ArrayList<>(); local 330 words.add(word); 337 final String word0 = words.get(random.nextInt(wordCount)); 338 final String word1 = words.get(random.nextInt(wordCount)); 460 final ArrayList<String> words = new ArrayList<>(); local 468 words.add(word); 475 final String word0 = words.get(random.nextInt(wordCount)); 476 final String word1 = words.get(random.nextInt(wordCount)); 522 final ArrayList<String> words = new ArrayList<>(); local 529 words.add(word) 605 final ArrayList<String> words = new ArrayList<>(); local 647 final ArrayList<String> words = new ArrayList<>(); local 701 final ArrayList<String> words = new ArrayList<>(); local 785 final ArrayList<String> words = new ArrayList<>(); local [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/ |
fixcid.py | 11 # must contain exactly two words separated by whitespace: the
57 err('contain exactly two words: an identifier and its replacement.\n')
291 words = line[:i].split()
292 if not words: continue
293 if len(words) == 3 and words[0] == 'struct':
294 words[:2] = [words[0] + ' ' + words[1]]
295 elif len(words) <> 2: [all...] |
/external/python/cpython2/Tools/scripts/ |
fixcid.py | 11 # must contain exactly two words separated by whitespace: the 57 err('contain exactly two words: an identifier and its replacement.\n') 293 words = line[:i].split() 294 if not words: continue 295 if len(words) == 3 and words[0] == 'struct': 296 words[:2] = [words[0] + ' ' + words[1]] 297 elif len(words) != 2 [all...] |
/build/kati/ |
buf.go | 132 words [][]byte 161 word := wb.words[len(wb.words)-1] 162 wb.words = wb.words[:len(wb.words)-1] 194 wb.words = append(wb.words, wb.buf.buf[off:off+len(word)]) 203 wb.words = nil
|
/external/boringssl/src/crypto/fipsmodule/bn/ |
bn.c | 288 int bn_set_words(BIGNUM *bn, const BN_ULONG *words, size_t num) { 292 OPENSSL_memmove(bn->d, words, num * sizeof(BN_ULONG)); 312 int bn_wexpand(BIGNUM *bn, size_t words) { 315 if (words <= (size_t)bn->dmax) { 319 if (words > (INT_MAX / (4 * BN_BITS2))) { 329 a = OPENSSL_malloc(sizeof(BN_ULONG) * words); 339 bn->dmax = (int)words;
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/ |
filelist.py | 79 words = line.split()
80 action = words[0]
86 if len(words) < 2:
90 patterns = map(convert_path, words[1:])
93 if len(words) < 3:
97 dir = convert_path(words[1])
98 patterns = map(convert_path, words[2:])
101 if len(words) != 2:
105 dir_pattern = convert_path(words[1])
113 # Parse the line: split it up, make sure the right number of words
[all...] |
/external/python/cpython2/Lib/distutils/ |
filelist.py | 79 words = line.split() 80 action = words[0] 86 if len(words) < 2: 90 patterns = map(convert_path, words[1:]) 93 if len(words) < 3: 97 dir = convert_path(words[1]) 98 patterns = map(convert_path, words[2:]) 101 if len(words) != 2: 105 dir_pattern = convert_path(words[1]) 113 # Parse the line: split it up, make sure the right number of words [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/distutils/ |
filelist.py | 79 words = line.split() 80 action = words[0] 86 if len(words) < 2: 90 patterns = map(convert_path, words[1:]) 93 if len(words) < 3: 97 dir = convert_path(words[1]) 98 patterns = map(convert_path, words[2:]) 101 if len(words) != 2: 105 dir_pattern = convert_path(words[1]) 113 # Parse the line: split it up, make sure the right number of words [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/distutils/ |
filelist.py | 79 words = line.split() 80 action = words[0] 86 if len(words) < 2: 90 patterns = map(convert_path, words[1:]) 93 if len(words) < 3: 97 dir = convert_path(words[1]) 98 patterns = map(convert_path, words[2:]) 101 if len(words) != 2: 105 dir_pattern = convert_path(words[1]) 113 # Parse the line: split it up, make sure the right number of words [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
filelist.py | 79 words = line.split() 80 action = words[0] 86 if len(words) < 2: 90 patterns = map(convert_path, words[1:]) 93 if len(words) < 3: 97 dir = convert_path(words[1]) 98 patterns = map(convert_path, words[2:]) 101 if len(words) != 2: 105 dir_pattern = convert_path(words[1]) 113 # Parse the line: split it up, make sure the right number of words [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
filelist.py | 79 words = line.split() 80 action = words[0] 86 if len(words) < 2: 90 patterns = map(convert_path, words[1:]) 93 if len(words) < 3: 97 dir = convert_path(words[1]) 98 patterns = map(convert_path, words[2:]) 101 if len(words) != 2: 105 dir_pattern = convert_path(words[1]) 113 # Parse the line: split it up, make sure the right number of words [all...] |