Searched refs:word (Results 1 - 25 of 658) sorted by relevance

1234567891011>>

/external/libgsm/src/
H A Dtable.c25 word gsm_A[8] = {20480, 20480, 20480, 20480, 13964, 15360, 8534, 9036};
26 word gsm_B[8] = { 0, 0, 2048, -2560, 94, -1792, -341, -1144};
27 word gsm_MIC[8] = { -32, -32, -16, -16, -8, -8, -4, -4 };
28 word gsm_MAC[8] = { 31, 31, 15, 15, 7, 7, 3, 3 };
33 word gsm_INVA[8]={ 13107, 13107, 13107, 13107, 19223, 17476, 31454, 29708 };
39 word gsm_DLB[4] = { 6554, 16384, 26214, 32767 };
45 word gsm_QLB[4] = { 3277, 11469, 21299, 32767 };
51 word gsm_H[11] = {-134, -374, 0, 2054, 5741, 8192, 5741, 2054, 0, -374, -134 };
57 word gsm_NRFAC[8] = { 29128, 26215, 23832, 21846, 20165, 18725, 17476, 16384 };
63 word gsm_FA
[all...]
H A Ddecode.c21 register word * s)
24 register word msr = S->msr;
26 register word tmp;
39 word * LARcr, /* [0..7] IN */
41 word * Ncr, /* [0..3] IN */
42 word * bcr, /* [0..3] IN */
43 word * Mcr, /* [0..3] IN */
44 word * xmaxcr, /* [0..3] IN */
45 word * xMcr, /* [0..13*4] IN */
47 word *
[all...]
H A Dcode.c31 word * s, /* [0..159] samples IN */
43 word * LARc, /* [0..7] LAR coefficients OUT */
51 word * Nc, /* [0..3] LTP lag OUT */
52 word * bc, /* [0..3] coded LTP gain OUT */
53 word * Mc, /* [0..3] RPE grid selection OUT */
54 word * xmaxc,/* [0..3] Coded maximum amplitude OUT */
55 word * xMc /* [13*4] normalized RPE samples OUT */
59 word * dp = S->dp0 + 120; /* [ -120...-1 ] */
60 word * dpp = dp; /* [ 0...39 ] */
62 word s
[all...]
/external/e2fsprogs/
H A Dwordwrap.pl3 # wordwrap.pl --- does word wrap
6 if (/^#/) { # don't word wrap comments
13 while (defined($word = shift @words)) {
14 $word =~ s#\$\(srcdir\)/\.\./version.h#\$\(top_srcdir\)/version.h#;
15 $word =~ s#\$\(srcdir\)/.\.\/\.\./version.h#\$\(top_srcdir\)/version.h#;
16 $word =~ s#\$\(srcdir\)/.\.\/et/com_err.h#\$\(top_srcdir\)/lib/et/com_err.h#;
20 $len = length($word) + 1;
26 printf("%s", $word);
/external/fio/lib/
H A Dffz.h6 static inline int ffs64(uint64_t word) argument
10 if ((word & 0xffffffff) == 0) {
12 word >>= 32;
14 if (!(word & 0xffff)) {
15 word >>= 16;
18 if (!(word & 0xff)) {
19 word >>= 8;
22 if (!(word & 0xf)) {
23 word >>= 4;
26 if (!(word
[all...]
/external/clang/test/CodeGen/
H A D2010-07-14-overconservative-align.c4 int word; member in struct:s
13 s->word = 0;
/external/llvm/test/MC/AsmParser/
H A Dexprs-invalid.s17 .word 0xfffffffff
/external/libgsm/inc/
H A Dprivate.h12 typedef short word; /* 16 bit signed int */ typedef
15 typedef unsigned short uword; /* unsigned word */
20 word dp0[ 280 ];
21 word e[ 50 ]; /* code.c */
23 word z1; /* preprocessing.c, Offset_com. */
27 word u[8]; /* short_term_aly_filter.c */
28 word LARpp[2][8]; /* */
29 word j; /* */
31 word ltp_cut; /* long_term.c, LTP crosscorr. */
32 word nr
[all...]
/external/pdfium/core/fpdfdoc/
H A Dcpvt_wordinfo.cpp19 CPVT_WordInfo::CPVT_WordInfo(uint16_t word, int32_t charset, int32_t fontIndex) argument
20 : Word(word),
27 CPVT_WordInfo::CPVT_WordInfo(const CPVT_WordInfo& word) argument
34 operator=(word);
39 void CPVT_WordInfo::operator=(const CPVT_WordInfo& word) { argument
40 if (this == &word)
43 Word = word.Word;
44 nCharset = word.nCharset;
45 nFontIndex = word.nFontIndex;
46 fWordX = word
[all...]
H A Dctypeset.cpp33 bool IsLatin(uint16_t word) { argument
34 if (word <= 0x007F)
35 return !!(special_chars[word] & 0x01);
37 return ((word >= 0x00C0 && word <= 0x00FF) ||
38 (word >= 0x0100 && word <= 0x024F) ||
39 (word >= 0x1E00 && word <= 0x1EFF) ||
40 (word >
46 IsDigit(uint32_t word) argument
50 IsCJK(uint32_t word) argument
71 IsPunctuation(uint32_t word) argument
118 IsConnectiveSymbol(uint32_t word) argument
122 IsOpenStylePunctuation(uint32_t word) argument
132 IsCurrencySymbol(uint16_t word) argument
140 IsPrefixSymbol(uint16_t word) argument
144 IsSpace(uint16_t word) argument
[all...]
H A Dcpvt_wordinfo.h16 CPVT_WordInfo(uint16_t word, int32_t charset, int32_t fontIndex);
17 CPVT_WordInfo(const CPVT_WordInfo& word);
20 void operator=(const CPVT_WordInfo& word);
/external/llvm/test/MC/ELF/
H A Drelocation-pc.s7 .word 0x42 - . # R_X86_64_PC16
/external/llvm/test/MC/Mips/
H A Drelocation-n64.s38 .word 0
40 .word 1
H A Drelocation-xfail.s24 .word 0
26 .word 1
/external/llvm/test/MC/MachO/
H A Ddarwin-x86_64-diff-reloc-assign.s15 .word 0
/external/syslinux/gpxe/src/arch/i386/interface/pxe/
H A Dpxe_entry.S37 .word undiheader, 0 /* UNDIROMID */
38 .word 0, 0 /* BaseROMID */
39 .word pxe_entry_sp, 0 /* EntryPointSP */
40 .word pxe_entry_esp, 0 /* EntryPointESP */
41 .word -1, -1 /* StatusCallout */
44 .word 0 /* FirstSelector */
46 .word 0, 0, 0, _data16_memsz /* Stack */
47 .word 0, 0, 0, _data16_memsz /* UNDIData */
48 .word 0, 0, 0, _text16_memsz /* UNDICode */
49 .word
[all...]
/external/python/cpython3/Lib/
H A Drlcompleter.py97 def _callable_postfix(self, val, word):
99 word = word + "("
100 return word
113 for word in keyword.kwlist:
114 if word[:n] == text:
115 seen.add(word)
116 if word in {'finally', 'try'}:
117 word = word
[all...]
/external/pdfium/core/fpdfapi/font/
H A Dcpdf_cmapparser.cpp34 ByteStringView CMap_GetString(const ByteStringView& word) { argument
35 if (word.GetLength() <= 2)
37 return word.Right(word.GetLength() - 2);
47 void CPDF_CMapParser::ParseWord(const ByteStringView& word) { argument
48 if (word.IsEmpty()) {
51 if (word == "begincidchar") {
54 } else if (word == "begincidrange") {
57 } else if (word == "endcidrange" || word
[all...]
/external/libvpx/libvpx/test/
H A Dexamples.sh21 for word in ${exclude_list}; do
22 example_tests=$(filter_strings "${example_tests}" "${word}" exclude)
/external/mesa3d/src/compiler/glsl/glcpp/tests/
H A D019-define-func-1-arg-multi.c2 foo(this is more than one word)
/external/python/cpython3/Modules/clinic/
H A D_cryptmodule.c.h6 "crypt($module, word, salt, /)\n"
9 "Hash a *word* with the given *salt* and return the hashed password.\n"
11 "*word* will usually be a user\'s password. *salt* (either a random 2 or 16\n"
14 "results for a given *word*.");
20 crypt_crypt_impl(PyObject *module, const char *word, const char *salt);
26 const char *word; local
30 &word, &salt)) {
33 return_value = crypt_crypt_impl(module, word, salt);
/external/proguard/src/proguard/io/
H A DDataEntryRewriter.java75 StringBuffer word = new StringBuffer();
85 // Is the character part of a word?
91 // Collect the characters in this word.
92 word.append(c);
96 // Write out the updated word, if any.
97 writeUpdatedWord(writer, word.toString());
98 word.setLength(0);
105 // Write out the final word.
106 writeUpdatedWord(writer, word.toString());
113 * Writes the given word t
116 writeUpdatedWord(Writer writer, String word) argument
[all...]
/external/python/cpython2/Lib/
H A Drlcompleter.py91 def _callable_postfix(self, val, word):
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[
[all...]
/external/llvm/test/MC/ARM/
H A 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 f1
[all...]
/external/pdfium/fpdfsdk/pwl/
H A Dcpwl_font_map.cpp76 bool CPWL_FontMap::KnowWord(int32_t nFontIndex, uint16_t word) { argument
78 CharCodeFromUnicode(nFontIndex, word) >= 0;
81 int32_t CPWL_FontMap::GetWordFontIndex(uint16_t word, argument
85 if (KnowWord(nFontIndex, word))
91 if (KnowWord(0, word))
100 if (KnowWord(nNewFontIndex, word))
105 if (KnowWord(nNewFontIndex, word))
111 int32_t CPWL_FontMap::CharCodeFromUnicode(int32_t nFontIndex, uint16_t word) { argument
120 return pData->pFont->CharCodeFromUnicode(word);
122 return word <
357 CharSetFromUnicode(uint16_t word, int32_t nOldCharset) argument
[all...]

Completed in 751 milliseconds

1234567891011>>