Searched refs:word (Results 226 - 250 of 658) sorted by relevance

1234567891011>>

/external/flatbuffers/include/flatbuffers/
H A Dutil.h359 std::string wrapped, line, word; local
361 in_stream >> word; local
362 line = word;
364 while (in_stream >> word) {
365 if ((line.length() + 1 + word.length() + wrapped_line_suffix.length()) <
367 line += " " + word;
370 line = wrapped_line_prefix + word;
/external/ppp/pppd/
H A Dauth.c124 #define ISWILD(word) (word[0] == '*' && word[1] == 0)
511 wp->word = (char *) (wp + 1);
513 BCOPY(addr, wp->word, l);
533 wp->word = (char *) (wp + 1);
535 BCOPY(number, wp->word, l);
1875 ptr_word = ap->word;
1943 warn("unknown host %s in auth. address list", ap->word);
2050 if (addrs->word[
2134 char word[MAXWORDLEN]; local
[all...]
/external/mesa3d/src/mesa/tnl/
H A Dt_pipeline.c124 * Set the x86 FPU control word to guarentee only 32 bits of precision
173 __asm fnstcw word ptr [x]\
174 __asm fldcw word ptr [mask]\
179 __asm fnstcw word ptr [x]\
180 __asm fldcw word ptr [mask]\
185 __asm fldcw word ptr [x]\
/external/syslinux/core/lwip/src/netif/ppp/
H A Dchpms.c229 register unsigned int word; local
231 word = (unsigned)input[startBit / 8] << 8;
232 word |= (unsigned)input[startBit / 8 + 1];
234 word >>= 15 - (startBit % 8 + 7);
236 return word & 0xFE;
/external/syslinux/dosutil/
H A Deltorito.asm123 mov word [cs:ReqHdrLoc],bx
124 mov word [cs:ReqHdrLoc+2],es
167 call word [di] ;Execute desired command
224 call word [si] ;Execute desired command
233 mov word [es:di+1],0
267 mov word [es:di+1],202h ;Door closed
268 mov word [es:di+3],0 ;Door unlocked
288 mov word [es:di+2],2048
304 mov ax,word [Buffer+80] ;Read Successful
305 mov word [e
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
H A DActionScriptTarget.java106 public String getTarget64BitStringFromValue(long word) { argument
109 writeHexWithPadding(buf, Integer.toHexString((int)(word & 0x00000000ffffffffL)));
111 writeHexWithPadding(buf, Integer.toHexString((int)(word >> 32)));
H A DTarget.java323 public String getTarget64BitStringFromValue(long word) { argument
327 String digits = Long.toHexString(word);
/external/fio/
H A Dhash.h12 * integer representable by a machine word for multiplicative hashing.
95 static inline uint32_t rol32(uint32_t word, uint32_t shift) argument
97 return (word << shift) | (word >> (32 - shift));
/external/pdfium/core/fpdfapi/parser/
H A Dcpdf_simple_parser.cpp156 ByteStringView word = GetWord(); local
157 if (word.IsEmpty()) {
161 if (word == token) {
/external/syslinux/gpxe/src/arch/i386/core/
H A Dgdbidt.S18 .word idt_length - 1
31 #define IDT_ENTRY_EMPTY(name) .word 0, 0, 0, 0
34 .word 0x8e00, VIRTUAL_CS
/external/syslinux/gpxe/src/arch/i386/prefix/
H A Dlibprefix.S114 * Utility functions: print hex digit/byte/word/dword
119 * %ax : word to print
263 gdt_limit: .word gdt_length - 1
265 .word 0 /* padding */
268 .word 0xffff, 0
272 .word 0xffff, 0
276 .word 0xffff, 0
619 .word 0
756 .word init_libkir
757 .word
[all...]
/external/freetype/src/tools/
H A Dglnames.py5017 # for word in map.values():
5018 # root.add( word, map[word] )
5037 # in the word.
5070 def add( self, word, value ):
5071 if len( word ) == 0:
5075 letter = word[0]
5076 word = word[1:]
5084 child.add( word, valu
[all...]
/external/chromium-trace/catapult/common/py_utils/py_utils/
H A Dexpectations_parser.py90 for word in line[len(self.TAG_TOKEN):].split():
94 self._tags.append(word)
/external/llvm/test/MC/ARM/
H A Deh-compact-pr1.s65 @ The first word should be relocated to .TEST1 section, and the second word
H A Dmapping-within-section.s7 .word 42
/external/llvm/test/MC/Mips/
H A Drelocation.s265 .word 0
267 .word 1
/external/llvm/test/MC/PowerPC/
H A Dppc-word.s10 .word 0
/external/llvm/test/tools/llvm-readobj/Inputs/
H A Drelocs.py142 def word(self): member in class:BinaryReader
166 self.sh_flags = f.word()
167 self.sh_addr = f.word()
168 self.sh_offset = f.word()
169 self.sh_size = f.word()
172 self.sh_addralign = f.word()
173 self.sh_entsize = f.word()
184 r_offset = f.word()
200 r_info = f.word()
285 e_entry = f.word()
[all...]
/external/python/cpython2/Lib/plat-mac/lib-scriptpackages/SystemEvents/
H A D__init__.py79 getbaseclasses(word)
110 'cwor' : word,
/external/syslinux/core/
H A Dinit.inc50 push esp ; Pointer to previous word
H A Dpxeisr.inc35 cmp word [pxenv_undi_isr_buf.funcflag],PXENV_UNDI_ISR_OUT_OURS
53 mov word [pxeirq_deadman],PXEIRQ_MAX
66 dec word [pxeirq_deadman]
81 mov word [pxeirq_deadman],PXEIRQ_MAX
128 cmp word [pxenv_undi_isr_buf.funcflag],PXENV_UNDI_ISR_OUT_OURS
/external/tensorflow/tensorflow/contrib/eager/python/examples/rnn_ptb/
H A Drnn_ptb.py91 """LSTM for word language modeling.
222 self.idx2word = [] # integer id -> word string
231 def add(self, word):
232 if word not in self.word2idx:
233 self.idx2word.append(word)
234 self.word2idx[word] = len(self.idx2word) - 1
243 for word in words:
244 self.add(word)
252 for word in words:
253 ids[token] = self.word2idx[word]
[all...]
/external/valgrind/none/tests/ppc64/
H A Dtest_isa_2_06_part2.stdout.exp705 Test floating point convert [word | doubleword] unsigned, with round toward zero
/external/swiftshader/src/Renderer/
H A DSurface.cpp2268 c[2].r = (byte)((2 * (word)c[0].r + (word)c[1].r + 1) / 3);
2269 c[2].g = (byte)((2 * (word)c[0].g + (word)c[1].g + 1) / 3);
2270 c[2].b = (byte)((2 * (word)c[0].b + (word)c[1].b + 1) / 3);
2274 c[3].r = (byte)(((word)c[0].r + 2 * (word)c[1].r + 1) / 3);
2275 c[3].g = (byte)(((word)c[0].g + 2 * (word)
[all...]
/external/pdfium/fpdfsdk/pwl/
H A Dcpwl_edit.cpp399 CPVT_Word word; local
400 if (pIterator->GetWord(word))
401 pt = CFX_PointF(word.ptWord.x + word.fWidth, word.ptWord.y + word.fDescent);
673 #define PWL_ISARABICWORD(word) \
674 ((word >= 0x0600 && word <= 0x06FF) || (word >
[all...]

Completed in 890 milliseconds

1234567891011>>