/external/kernel-headers/original/asm-generic/bitops/ |
__ffs.h | 7 * __ffs - find first bit in word. 8 * @word: The word to search 12 static inline unsigned long __ffs(unsigned long word) 17 if ((word & 0xffffffff) == 0) { 19 word >>= 32; 22 if ((word & 0xffff) == 0) { 24 word >>= 16; 26 if ((word & 0xff) == 0) { 28 word >>= 8 [all...] |
/external/libgsm/src/ |
table.c | 25 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_FAC[8] = { 18431, 20479, 22527, 24575, 26623, 28671, 30719, 32767 } [all...] |
decode.c | 21 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 * s) /* [0..159] OUT * [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
CompletionDictionary.js | 38 * @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) { } 76 * @param {string} word 78 addWord: function(word) [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/ |
ret.asm | 4 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
|
lds.asm | 2 lds ax,word [1] 5 lds eax,word [1]
|
segmov.asm | 2 mov word [0], ds 8 mov ds, word [0] 9 mov word ds, [0]
|
opsize-err.asm | 2 mov ax,word 1
|
div-err.asm | 2 div word si 5 div word esi
|
/external/e2fsprogs/ |
wordwrap.pl | 3 # wordwrap.pl --- does word wrap 6 if (/^#/) { # don't word wrap comments 13 while (defined($word = shift @_)) { 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/clang/test/CodeGen/ |
2010-07-14-overconservative-align.c | 4 int word; member in struct:s 13 s->word = 0;
|
/external/libgsm/inc/ |
private.h | 12 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 nrp; /* 40 */ /* long_term.c, synthesis * [all...] |