Home
last modified time | relevance | path

Searched refs:word (Results 1 – 25 of 2422) sorted by relevance

12345678910>>...97

/external/elfutils/tests/
Drun-disasm-riscv64.sh28 .word 0x80000037
29 .word 0x800000b7
30 .word 0x40300137
31 .word 0x90000017
32 .word 0x01003317
33 .word 0x000000ef
34 .word 0x0000116f
35 .word 0x000021ef
36 .word 0x0000426f
37 .word 0x000082ef
[all …]
/external/kmod/testsuite/rootfs-pristine/test-util/
Dfreadline_wrapped-correct.txt7 …ve word after word after word after word after word after word after word after word after word af…
9word after word after word after word after word after word after word after word after word after…
Dfreadline_wrapped-input.txt7 …ve word after word after word after word after word after word after word after word after word af…
8word after word after word after word after word after word after word after word after word after…
/external/libgsm/inc/
Dprivate.h16 typedef short word; /* 16 bit signed int */ typedef
24 word dp0[ 280 ];
25 word e[ 50 ]; /* code.c */
27 word z1; /* preprocessing.c, Offset_com. */
31 word u[8]; /* short_term_aly_filter.c */
32 word LARpp[2][8]; /* */
33 word j; /* */
35 word ltp_cut; /* long_term.c, LTP crosscorr. */
36 word nrp; /* 40 */ /* long_term.c, synthesis */
37 word v[9]; /* short_term.c, synthesis */
[all …]
/external/ms-tpm-20-ref/Samples/Nucleo-TPM/L4A6RG/startup/
Dstartup_stm32l4a6xx.s55 .word _sidata
57 .word _sdata
59 .word _edata
61 .word _sbss
63 .word _ebss
147 .word _estack
148 .word Reset_Handler
149 .word NMI_Handler
150 .word HardFault_Handler
151 .word MemManage_Handler
[all …]
/external/pdfium/core/fpdfdoc/
Dcpvt_section.cpp33 bool IsLatin(uint16_t word) { in IsLatin() argument
34 if (word <= 0x007F) in IsLatin()
35 return !!(kSpecialChars[word] & 0x01); in IsLatin()
37 return ((word >= 0x00C0 && word <= 0x00FF) || in IsLatin()
38 (word >= 0x0100 && word <= 0x024F) || in IsLatin()
39 (word >= 0x1E00 && word <= 0x1EFF) || in IsLatin()
40 (word >= 0x2C60 && word <= 0x2C7F) || in IsLatin()
41 (word >= 0xA720 && word <= 0xA7FF) || in IsLatin()
42 (word >= 0xFF21 && word <= 0xFF3A) || in IsLatin()
43 (word >= 0xFF41 && word <= 0xFF5A)); in IsLatin()
[all …]
/external/ms-tpm-20-ref/Samples/Nucleo-TPM/L476RG/startup/
Dstartup_stm32l476xx.s55 .word _sidata
57 .word _sdata
59 .word _edata
61 .word _sbss
63 .word _ebss
147 .word _estack
148 .word Reset_Handler
149 .word NMI_Handler
150 .word HardFault_Handler
151 .word MemManage_Handler
[all …]
/external/python/cpython3/Include/internal/
Dpycore_bitutils.h34 _Py_bswap16(uint16_t word) in _Py_bswap16() argument
37 return __builtin_bswap16(word); in _Py_bswap16()
39 Py_BUILD_ASSERT(sizeof(word) == sizeof(unsigned short)); in _Py_bswap16()
40 return _byteswap_ushort(word); in _Py_bswap16()
43 return ( ((word & UINT16_C(0x00FF)) << 8) in _Py_bswap16()
44 | ((word & UINT16_C(0xFF00)) >> 8)); in _Py_bswap16()
49 _Py_bswap32(uint32_t word) in _Py_bswap32() argument
52 return __builtin_bswap32(word); in _Py_bswap32()
54 Py_BUILD_ASSERT(sizeof(word) == sizeof(unsigned long)); in _Py_bswap32()
55 return _byteswap_ulong(word); in _Py_bswap32()
[all …]
/external/pdfium/core/fpdfapi/font/
Dcpdf_cmapparser.cpp24 ByteStringView CMap_GetString(ByteStringView word) { in CMap_GetString() argument
25 if (word.GetLength() <= 2) in CMap_GetString()
27 return word.Last(word.GetLength() - 2); in CMap_GetString()
39 void CPDF_CMapParser::ParseWord(ByteStringView word) { in ParseWord() argument
40 DCHECK(!word.IsEmpty()); in ParseWord()
42 if (word == "begincidchar") { in ParseWord()
45 } else if (word == "begincidrange") { in ParseWord()
48 } else if (word == "endcidrange" || word == "endcidchar") { in ParseWord()
50 } else if (word == "/WMode") { in ParseWord()
52 } else if (word == "/Registry") { in ParseWord()
[all …]
/external/brotli/c/common/
Dtransform.c194 static int Shift(uint8_t* word, int word_len, uint16_t parameter) { in Shift() argument
198 if (word[0] < 0x80) { in Shift()
200 scalar += (uint32_t)word[0]; in Shift()
201 word[0] = (uint8_t)(scalar & 0x7Fu); in Shift()
203 } else if (word[0] < 0xC0) { in Shift()
206 } else if (word[0] < 0xE0) { in Shift()
209 scalar += (uint32_t)((word[1] & 0x3Fu) | ((word[0] & 0x1Fu) << 6u)); in Shift()
210 word[0] = (uint8_t)(0xC0 | ((scalar >> 6u) & 0x1F)); in Shift()
211 word[1] = (uint8_t)((word[1] & 0xC0) | (scalar & 0x3F)); in Shift()
213 } else if (word[0] < 0xF0) { in Shift()
[all …]
/external/cronet/third_party/brotli/common/
Dtransform.c194 static int Shift(uint8_t* word, int word_len, uint16_t parameter) { in Shift() argument
198 if (word[0] < 0x80) { in Shift()
200 scalar += (uint32_t)word[0]; in Shift()
201 word[0] = (uint8_t)(scalar & 0x7Fu); in Shift()
203 } else if (word[0] < 0xC0) { in Shift()
206 } else if (word[0] < 0xE0) { in Shift()
209 scalar += (uint32_t)((word[1] & 0x3Fu) | ((word[0] & 0x1Fu) << 6u)); in Shift()
210 word[0] = (uint8_t)(0xC0 | ((scalar >> 6u) & 0x1F)); in Shift()
211 word[1] = (uint8_t)((word[1] & 0xC0) | (scalar & 0x3F)); in Shift()
213 } else if (word[0] < 0xF0) { in Shift()
[all …]
/external/libgsm/src/
Drpe.c23 register word * e, /* signal [-5..0.39.44] IN */
24 word * x /* signal [0..39] OUT */
117 word * x, /* [0..39] IN */
118 word * xM, /* [0..12] OUT */
119 word * Mc_out /* OUT */
130 word Mc;
224 word xmaxc, /* IN */
225 word * exp_out, /* OUT */
226 word * mant_out ) /* OUT */
228 word exp, mant;
[all …]
Dshort_term.c24 word * LARc, /* coded log area ratio [0..7] IN */
25 word * LARpp) /* out: decoded .. */
27 register word temp1 /* , temp2 */;
92 register word * LARpp_j_1,
93 register word * LARpp_j,
94 register word * LARp)
106 register word * LARpp_j_1,
107 register word * LARpp_j,
108 register word * LARp)
118 register word * LARpp_j_1,
[all …]
Dadd.c23 word gsm_add P2((a,b), word a, word b)
29 word gsm_sub P2((a,b), word a, word b)
35 word gsm_mult P2((a,b), word a, word b)
41 word gsm_mult_r P2((a,b), word a, word b)
51 word gsm_abs P1((a), word a)
56 longword gsm_L_mult P2((a,b),word a, word b)
117 word gsm_norm P1((a), longword a )
161 word gsm_asl P2((a,n), word a, int n)
183 word gsm_asr P2((a,n), word a, int n)
193 else return -(word)( -(uword)a >> n );
[all …]
/external/llvm/test/MC/ARM/
Dsymbol-variants.s8 .word f00
9 .word f01
14 .word f02(NONE)
15 .word f03(none)
28 .word f06(GOT)
29 .word f07(got)
34 .word f08(GOTOFF)
35 .word f09(gotoff)
40 .word f10(TPOFF)
41 .word f11(tpoff)
[all …]
/external/python/cpython3/Lib/
Drlcompleter.py98 def _callable_postfix(self, val, word): argument
100 word += "("
103 word += ")"
107 return word
120 for word in keyword.kwlist:
121 if word[:n] == text:
122 seen.add(word)
123 if word in {'finally', 'try'}:
124 word = word + ':'
125 elif word not in {'False', 'None', 'True',
[all …]
/external/rust/crates/textwrap/src/
Dword_splitters.rs88 Custom(fn(word: &str) -> Vec<usize>),
143 pub fn split_points(&self, word: &str) -> Vec<usize> { in split_points()
149 for (idx, _) in word.match_indices('-') { in split_points()
153 let prev = word[..idx].chars().next_back(); in split_points()
154 let next = word[idx + 1..].chars().next(); in split_points()
165 WordSplitter::Custom(splitter_func) => splitter_func(word), in split_points()
169 dictionary.hyphenate(word).breaks in split_points()
188 words.into_iter().flat_map(move |word| { in split_words()
190 let mut split_points = word_splitter.split_points(&word).into_iter(); in split_words()
193 let need_hyphen = !word[..idx].ends_with('-'); in split_words()
[all …]
/external/kotlinx.coroutines/benchmarks/src/jmh/java/benchmarks/flow/scrabble/
DRxJava2PlaysScrabbleOpt.java29 static Flowable<Integer> chars(String word) { in chars() argument
31 return StringFlowable.characters(word); in chars()
58 word -> { Single<HashMap<Integer, MutableLong>> s = histoCache.get(word); in play()
60 s = toIntegerFlowable.apply(word) in play()
74 histoCache.put(word, s); in play()
91 word -> MathFlowable.sumLong( in play()
92 histoOfLetters.apply(word).flattenAsFlowable( in play()
102 word -> nBlanks.apply(word) in play()
107 word -> MathFlowable.sumInt( in play()
108 histoOfLetters.apply(word).flattenAsFlowable( in play()
[all …]
DRxJava2PlaysScrabble.java55 word -> toIntegerFlowable.apply(word) in play()
82 word -> histoOfLetters.apply(word) in play()
90 word -> nBlanks.apply(word) in play()
95 word -> histoOfLetters.apply(word) in play()
103word -> Flowable.fromIterable(IterableSpliterator.of(word.chars().boxed().limit(3).spliterator()))… in play()
105word -> Flowable.fromIterable(IterableSpliterator.of(word.chars().boxed().skip(3).spliterator())) ; in play()
110 word -> Flowable.just(first3.apply(word), last3.apply(word)) in play()
115 word -> toBeMaxed.apply(word) in play()
121 word -> in play()
123 score2.apply(word), in play()
[all …]
/external/elfutils/libcpu/
Driscv_disasm.c540 uint32_t word = read_4ubyte_unaligned (data); in riscv_disasm() local
541 size_t idx = (word >> 2) & 0x1f; in riscv_disasm()
557 rd = (word >> 7) & 0x1f; in riscv_disasm()
559 opaddr = ((int32_t) word) >> 20; in riscv_disasm()
561 opaddr, REG ((word >> 15) & 0x1f)); in riscv_disasm()
563 func = (word >> 12) & 0x7; in riscv_disasm()
576 rd = (word >> 7) & 0x1f; in riscv_disasm()
577 rs1 = (word >> 15) & 0x1f; in riscv_disasm()
578 func = (word >> 12) & 0x7; in riscv_disasm()
580 if (word == 0x8330000f) in riscv_disasm()
[all …]
/external/libgsm/add-test/
Dadd_test.c26 word op1, op2, expect;
29 word M_gsm_add P((word op1, word op2));
30 word M_gsm_sub P((word op1, word op2));
31 word M_gsm_mult P((word op1, word op2));
32 word M_gsm_mult_r P((word op1, word op2));
33 word M_gsm_abs P((word op1));
34 longword M_gsm_L_mult P((word op1, word op2));
126 void fprint_word P2((f, w), FILE * f, word w)
135 void print_word P1((w), word w)
169 void do_word P1((w), word w )
[all …]
/external/python/cpython2/Lib/
Drlcompleter.py91 def _callable_postfix(self, val, word): argument
93 word = word + "("
94 return word
107 for word in keyword.kwlist:
108 if word[:n] == text:
109 seen.add(word)
110 matches.append(word)
112 for word, val in nspace.items():
113 if word[:n] == text and word not in seen:
114 seen.add(word)
[all …]
/external/kotlinx.coroutines/benchmarks/src/jmh/kotlin/benchmarks/flow/scrabble/
DReactorPlaysScrabble.kt37 val histoOfLetters = Function<String, Flux<HashMap<Int, LongWrapper>>> { word -> in <lambda>() method
38 Flux.from(toIntegerStream.apply(word) in <lambda>()
56 val nBlanks = Function<String, Flux<Long>> { word -> in <lambda>() method
57 Flux.from(histoOfLetters.apply(word) in <lambda>()
63 val checkBlanks = Function<String, Flux<Boolean>> { word -> in <lambda>() method
64 nBlanks.apply(word) in <lambda>()
69 val score2 = Function<String, Flux<Int>> { word -> in <lambda>() method
70 Flux.from(histoOfLetters.apply(word) in <lambda>()
77 val first3 = Function<String, Flux<Int>> { word -> Flux.fromIterable( in <lambda>() method
79 word.chars().boxed().limit(3).spliterator() in <lambda>()
[all …]
DFlowPlaysScrabbleBase.kt40 val histoOfLetters = { word: String -> in <lambda>() method
42 emit(toIntegerStream(word).fold(HashMap<Int, LongWrapper>()) { accumulator, value -> in <lambda>()
57 val nBlanks = { word: String -> in <lambda>() method
59 emit(histoOfLetters(word) in <lambda>()
66 val checkBlanks = { word: String -> in <lambda>() method
67 nBlanks(word).flatMapConcat { l -> flowOf(l <= 2L) } in <lambda>()
70 val score2 = { word: String -> in <lambda>() method
72 emit(histoOfLetters(word) in <lambda>()
79 val first3 = { word: String -> in <lambda>() method
80 IterableSpliterator.of(word.chars().boxed().limit(3).spliterator()).asFlow() in <lambda>()
[all …]
/external/vulkan-validation-layers/layers/
Dshader_validation.cpp137 def_index[insn.word(1)] = insn.offset(); in BuildDefIndex()
147 def_index[insn.word(2)] = insn.offset(); in BuildDefIndex()
156 def_index[insn.word(2)] = insn.offset(); in BuildDefIndex()
161 def_index[insn.word(2)] = insn.offset(); in BuildDefIndex()
166 def_index[insn.word(2)] = insn.offset(); in BuildDefIndex()
171 auto targetId = insn.word(1); in BuildDefIndex()
172 decorations[targetId].add(insn.word(2), insn.len() > 3u ? insn.word(3) : 0u); in BuildDefIndex()
175 auto const &src = decorations[insn.word(1)]; in BuildDefIndex()
176 for (auto i = 2u; i < insn.len(); i++) decorations[insn.word(i)].merge(src); in BuildDefIndex()
182 auto entrypoint_name = (char const *)&insn.word(3); in BuildDefIndex()
[all …]

12345678910>>...97