HomeSort by relevance Sort by last modified time
    Searched refs:word1 (Results 1 - 25 of 106) sorted by null

1 2 3 4 5

  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
get_pred_adv_b_add.cpp 91 uint32 pred_word, word1, word2; local
118 word1 = *((uint32*)prev); /* read 4 bytes, b4 b3 b2 b1 */
120 word1 >>= 8; /* 0 b4 b3 b2 */
121 pred_word = word1 | (word2 << 24); /* b5 b4 b3 b2 */
124 word1 = *((uint32*)(prev += 4)); /* b12 b11 b10 b9 */
126 pred_word = word2 | (word1 << 24); /* b9 b8 b7 b6 */
136 prev -= 2; /* word1-aligned */
140 word1 = *((uint32*)prev); /* read 4 bytes, b4 b3 b2 b1 */
142 word1 >>= 16; /* 0 0 b4 b3 */
143 pred_word = word1 | (word2 << 16); /* b6 b5 b4 b3 *
191 uint32 word1, word2, word3, word12; local
520 uint32 word1, word2, word3, word12, word22; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
motion_comp.cpp 358 ULong pred_word, word1, word2; local
388 word1 = *((ULong*)(prev += lx)); /* read 4 bytes, b4 b3 b2 b1 */
390 word1 >>= 8; /* 0 b4 b3 b2 */
391 pred_word = word1 | (word2 << 24); /* b5 b4 b3 b2 */
394 word1 = *((ULong*)(prev + 8)); /* b12 b11 b10 b9 */
396 pred_word = word2 | (word1 << 24); /* b9 b8 b7 b6 */
404 prev -= 2; /* word1-aligned */
410 word1 = *((ULong*)(prev += lx)); /* read 4 bytes, b4 b3 b2 b1 */
412 word1 >>= 16; /* 0 0 b4 b3 */
413 pred_word = word1 | (word2 << 16); /* b6 b5 b4 b3 *
458 ULong word1, word2, word3, word12; local
783 ULong word1, word2, word3, word12, word22; local
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/gdtoa/
ulp.c 53 word1(&a) = 0;
60 word1(&a) = 0;
65 word1(&a) = L >= 31 ? 1 : 1 << (31 - L);
strtod.c 77 word1(&u) = 0;
309 word1(&rv) = 0;
321 word1(&rv) = bits[0];
326 word1(&rv) = NAN_WORD1;
467 word1(&rv) = Big1;
471 word1(&rv) = 0;
475 word1(&rv) = 0;
484 word1(&rv) = Big1;
513 word1(&rv) = Big1;
536 word1(&rv) = 0
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/gdtoa/
ulp.c 56 word1(a) = 0;
63 word1(a) = 0;
68 word1(a) = L >= 31 ? 1 : 1 << (31 - L);
strtod.c 277 word1(rv) = 0;
289 word1(rv) = (UINT32)bits[0];
294 word1(rv) = NAN_WORD1;
437 word1(rv) = Big1;
441 word1(rv) = 0;
445 word1(rv) = 0;
454 word1(rv) = Big1;
474 word1(rv) = Big1;
497 word1(rv) = 0;
504 word1(rv) &= 0xffffffff << j;
    [all...]
  /toolchain/binutils/binutils-2.25/opcodes/
i960-dis.c 54 unsigned int word1, word2 = 0xdeadbeef; local
61 /* Read word1. Only read word2 if the instruction
71 word1 = bfd_getl32 (buffer);
74 switch ( (word1 >> 28) & 0xf )
95 return pinsn( memaddr, word1, word2 );
121 pinsn (bfd_vma memaddr, unsigned long word1, unsigned long word2)
126 put_abs (word1, word2);
129 switch ((word1 >> 28) & 0xf)
133 ctrl (memaddr, word1, word2);
137 cobr (memaddr, word1, word2)
    [all...]
  /external/mesa3d/src/gallium/drivers/r600/
r700_asm.c 80 struct r600_bytecode_alu *alu, uint32_t word0, uint32_t word1)
95 /* WORD1 */
96 alu->bank_swizzle = G_SQ_ALU_WORD1_BANK_SWIZZLE(word1);
99 alu->dst.sel = G_SQ_ALU_WORD1_DST_GPR(word1);
100 alu->dst.rel = G_SQ_ALU_WORD1_DST_REL(word1);
101 alu->dst.chan = G_SQ_ALU_WORD1_DST_CHAN(word1);
102 alu->dst.clamp = G_SQ_ALU_WORD1_CLAMP(word1);
103 if (G_SQ_ALU_WORD1_ENCODING(word1)) /*ALU_DWORD1_OP3*/
106 alu->src[2].sel = G_SQ_ALU_WORD1_OP3_SRC2_SEL(word1);
107 alu->src[2].rel = G_SQ_ALU_WORD1_OP3_SRC2_REL(word1);
    [all...]
eg_asm.c 127 struct r600_bytecode_output *output, uint32_t word0, uint32_t word1)
134 output->swizzle_x = G_SQ_CF_ALLOC_EXPORT_WORD1_SWIZ_SEL_X(word1);
135 output->swizzle_y = G_SQ_CF_ALLOC_EXPORT_WORD1_SWIZ_SEL_Y(word1);
136 output->swizzle_z = G_SQ_CF_ALLOC_EXPORT_WORD1_SWIZ_SEL_Z(word1);
137 output->swizzle_w = G_SQ_CF_ALLOC_EXPORT_WORD1_SWIZ_SEL_W(word1);
138 output->burst_count = G_SQ_CF_ALLOC_EXPORT_WORD1_BURST_COUNT(word1);
139 output->end_of_program = G_SQ_CF_ALLOC_EXPORT_WORD1_END_OF_PROGRAM(word1);
141 G_SQ_CF_ALLOC_EXPORT_WORD1_CF_INST(word1), /* is_cf_alu = */ 0 );
142 output->barrier = G_SQ_CF_ALLOC_EXPORT_WORD1_BARRIER(word1);
143 output->array_size = G_SQ_CF_ALLOC_EXPORT_WORD1_BUF_ARRAY_SIZE(word1);
    [all...]
r600_asm.h 286 struct r600_bytecode_alu *alu, uint32_t word0, uint32_t word1);
300 struct r600_bytecode_alu *alu, uint32_t word0, uint32_t word1);
302 struct r600_bytecode_output *output, uint32_t word0, uint32_t word1);
304 struct r600_bytecode_output *output, uint32_t word0, uint32_t word1);
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/EN/
UserDictionaryToolsListEN.java 71 public int compare(WnnWord word1, WnnWord word2) {
72 return word1.stroke.compareTo(word2.stroke);
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
UserDictionaryToolsListJAJP.java 68 public int compare(WnnWord word1, WnnWord word2) {
69 return word1.stroke.compareTo(word2.stroke);
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
BinaryDictionaryTests.java 184 final String word1, final int probability) {
185 binaryDictionary.addNgramEntry(new NgramContext(new WordInfo(word0)), word1, probability,
190 final String word1, final String word2, final int probability) {
192 new NgramContext(new WordInfo(word1), new WordInfo(word0)), word2,
197 final String word0, final String word1) {
198 return binaryDictionary.isValidNgram(new NgramContext(new WordInfo(word0)), word1);
202 final String word0, final String word1) {
203 return binaryDictionary.getNgramProbability(new NgramContext(new WordInfo(word0)), word1);
207 final String word0, final String word1, final String word2) {
209 new NgramContext(new WordInfo(word1), new WordInfo(word0)), word2)
338 final String word1 = words.get(random.nextInt(wordCount)); local
476 final String word1 = words.get(random.nextInt(wordCount)); local
556 final String word1 = words.get(word1Index); local
662 final String word1 = words.get(random.nextInt(words.size())); local
737 final String word1 = words.get(word1Index); local
764 final String word1 = bigramTarget.mWord; local
809 final String word1 = words.get(word1Index); local
841 final String word1 = bigramTarget.mWord; local
    [all...]
  /toolchain/binutils/binutils-2.25/gas/config/
atof-ieee.c 261 LITTLENUM_TYPE word1;
443 word1 = ((generic_floating_point_number.sign == '+')
472 *lp++ = word1;
496 *lp++ = word1;
504 word1 |= next_bits ((LITTLENUM_NUMBER_OF_BITS - 1)
506 *lp++ = word1;
559 word1 = ((generic_floating_point_number.sign == '+')
562 word1 |= (1
565 *lp++ = word1;
597 word1 |= (exponent_4 << ((LITTLENUM_NUMBER_OF_BITS - 1) - exponent_bits)
259 LITTLENUM_TYPE word1; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
omxVCM4P2_MCReconBlock_s.s 129 ;// M_LOAD_XINT $pSrc, $srcStep, $offset, $word0, $word1, $word2, $word3
143 ;// $word0, $word1, $word2, $word3
151 ;// | Offset | Aligned Ptr | word0 | word1 | word2 | word3 |
165 ;// Note: {$word0, $word1, $word2, $word3} should be registers with ascending
169 M_LOAD_XINT $pSrc, $srcStep, $offset, $word0, $word1, $word2, $word3
171 LDM $pSrc, {$word0, $word1, $word2}
183 ;// M_EXT_XINT $offset, $word0, $word1, $word2, $word3
189 ;// $word0, $word1, $word2, $word3
195 ;// | Offset | Aligned Ptr | word0 | word1 | word2 | word3 |
204 ;// $word0, $word1, $word2, $word
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
romfs_fs.h 23 __be32 word1; member in struct:romfs_super_block
  /external/skia/src/sksl/
SkSLSPIRVCodeGenerator.h 250 void writeInstruction(SpvOp_ opCode, int32_t word1, OutputStream& out);
252 void writeInstruction(SpvOp_ opCode, int32_t word1, const char* string, OutputStream& out);
254 void writeInstruction(SpvOp_ opCode, int32_t word1, int32_t word2, const char* string,
257 void writeInstruction(SpvOp_ opCode, int32_t word1, int32_t word2, OutputStream& out);
259 void writeInstruction(SpvOp_ opCode, int32_t word1, int32_t word2, int32_t word3,
262 void writeInstruction(SpvOp_ opCode, int32_t word1, int32_t word2, int32_t word3, int32_t word4,
265 void writeInstruction(SpvOp_ opCode, int32_t word1, int32_t word2, int32_t word3, int32_t word4,
268 void writeInstruction(SpvOp_ opCode, int32_t word1, int32_t word2, int32_t word3, int32_t word4,
271 void writeInstruction(SpvOp_ opCode, int32_t word1, int32_t word2, int32_t word3, int32_t word4,
274 void writeInstruction(SpvOp_ opCode, int32_t word1, int32_t word2, int32_t word3, int32_t word4
    [all...]
  /bionic/libc/kernel/uapi/linux/
romfs_fs.h 35 __be32 word1; member in struct:romfs_super_block
  /development/ndk/platforms/android-21/include/linux/
romfs_fs.h 39 __be32 word1; member in struct:romfs_super_block
  /external/kernel-headers/original/uapi/linux/
romfs_fs.h 26 __be32 word1; member in struct:romfs_super_block
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
romfs_fs.h 26 __be32 word1; member in struct:romfs_super_block
  /prebuilts/ndk/r10/platforms/android-21/arch-arm/usr/include/linux/
romfs_fs.h 39 __be32 word1; member in struct:romfs_super_block
  /prebuilts/ndk/r10/platforms/android-21/arch-arm64/usr/include/linux/
romfs_fs.h 39 __be32 word1; member in struct:romfs_super_block
  /prebuilts/ndk/r10/platforms/android-21/arch-mips/usr/include/linux/
romfs_fs.h 39 __be32 word1; member in struct:romfs_super_block
  /prebuilts/ndk/r10/platforms/android-21/arch-mips64/usr/include/linux/
romfs_fs.h 39 __be32 word1; member in struct:romfs_super_block

Completed in 879 milliseconds

1 2 3 4 5