Searched refs:word (Results 1 - 25 of 709) 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...]
/external/fio/lib/
H A Dffz.h4 static inline int __ffs(unsigned long word) argument
9 if ((word & 0xffffffff) == 0) {
11 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/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/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
H A DCompletionDictionary.js38 * @param {string} word
40 addWord: function(word) { },
43 * @param {string} word
45 removeWord: function(word) { },
48 * @param {string} word
51 hasWord: function(word) { },
60 * @param {string} word
63 wordCount: function(word) { },
78 * @param {string} word
80 addWord: function(word)
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
H A Dret.asm4 ret word 2
6 retn word 2
9 retf word 2
14 ret word 2
16 retn word 2
19 retf word 2
24 ret word 2
26 retn word 2
29 retf word 2
H A Dlds.asm2 lds ax,word [1]
5 lds eax,word [1]
H A Dsegmov.asm2 mov word [0], ds
8 mov ds, word [0]
9 mov word ds, [0]
H A Dopsize-err.asm2 mov ax,word 1
H A Ddiv-err.asm2 div word si
5 div word esi
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-2499.js30 function foo(word, nBits) {
31 return (word[1] >>> nBits) | (word[0] << (32 - nBits));
34 word = [0x1001, 0];
36 var expected = foo(word, 1);
37 foo(word, 1);
39 var optimized = foo(word, 1);
/external/clang/test/CodeGen/
H A D2010-07-14-overconservative-align.c4 int word; member in struct:s
13 s->word = 0;
/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/chromium_org/v8/test/mjsunit/
H A Dkeywords-and-reserved_words.js75 function testKeyword(word) {
76 // Classify word
77 assertEquals("keyword", classifyIdentifier(word));
80 assertThrows("var " + word + " = 1;", SyntaxError);
81 if (word != "this") {
82 assertThrows("typeof (" + word + ");", SyntaxError);
86 eval("var x = { " + word + " : 42 };");
87 eval("var x = { get " + word + " () {} };");
88 eval("var x = { set " + word + " (value) {} };");
91 eval("var x = { '" + word
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/tests/
H A Dlevelop.asm2 mov word [0x0010 + (test2 - test1)], 0x0000
3 mov word [0x0010 + test2 - test1], 0x0000
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
H A Dbasics.h9 typedef unsigned short word; typedef
/external/chromium_org/ui/webui/resources/css/
H A Dalert_overlay.css11 word-wrap: break-word;
/external/llvm/test/MC/MachO/
H A Ddarwin-x86_64-diff-reloc-assign.s15 .word 0
22 // CHECK: (('word-0', 0x0),
23 // CHECK: ('word-1', 0x5c000000)),
25 // CHECK: (('word-0', 0x0),
26 // CHECK: ('word-1', 0xc000001)),
/external/chromium_org/third_party/fips181/
H A Dconvert.h33 void decapitalize (char *word);
40 char* spell_word(char * word, char * spelled_word);
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/tests/
H A Dopt-oldalign.asm2 times ($$-$) & 1Fh nop ; Long word alignment
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Dexamples.sh21 for word in ${exclude_list}; do
22 example_tests=$(filter_strings "${example_tests}" "${word}" exclude)
/external/chromium_org/third_party/mesa/src/src/glsl/glcpp/tests/
H A D019-define-func-1-arg-multi.c2 foo(this is more than one word)
/external/mesa3d/src/glsl/glcpp/tests/
H A D019-define-func-1-arg-multi.c2 foo(this is more than one word)
/external/lldb/examples/scripting/
H A Ddictionary.c16 const char *word; member in struct:tree_node
26 strip (char **word) argument
28 char *start = *word;
42 *word = start;
47 /* Given a binary search tree (sorted alphabetically by the word at
48 each node), and a new word, inserts the word at the appropriate
52 insert (tree_node *root, char *word) argument
57 int compare_value = strcmp (word, root->word);
97 char word[1024]; local
124 find_word(tree_node *dictionary, char *word) argument
176 char *word = buffer; local
[all...]
/external/chromium_org/v8/test/webkit/fast/js/
H A Dreserved-words-strict.js24 function isReserved(word)
27 eval("\"use strict\";var " + word + ";");
30        var expectedError = "Use of reserved word '" + word + "' in strict mode";

Completed in 535 milliseconds

1234567891011>>