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

1 2 3 4 5 6

  /dalvik/vm/mterp/c/
OP_SHL_INT.cpp 1 HANDLE_OP_SHX_INT(OP_SHL_INT, "shl", (s4), <<)
OP_SHL_INT_2ADDR.cpp 1 HANDLE_OP_SHX_INT_2ADDR(OP_SHL_INT_2ADDR, "shl", (s4), <<)
OP_SHL_INT_LIT8.cpp 1 HANDLE_OP_SHX_INT_LIT8(OP_SHL_INT_LIT8, "shl", (s4), <<)
OP_SHR_INT.cpp 1 HANDLE_OP_SHX_INT(OP_SHR_INT, "shr", (s4), >>)
OP_SHR_INT_2ADDR.cpp 1 HANDLE_OP_SHX_INT_2ADDR(OP_SHR_INT_2ADDR, "shr", (s4), >>)
OP_SHR_INT_LIT8.cpp 1 HANDLE_OP_SHX_INT_LIT8(OP_SHR_INT_LIT8, "shr", (s4), >>)
OP_CONST_4.cpp 3 s4 tmp;
6 tmp = (s4) (INST_B(inst) << 28) >> 28; // sign extend 4-bit value
7 ILOGV("|const/4 v%d,#0x%02x", vdst, (s4)tmp);
OP_DOUBLE_TO_INT.cpp 2 double, _DOUBLE, s4, _INT)
OP_FLOAT_TO_INT.cpp 2 float, _FLOAT, s4, _INT)
OP_GOTO_32.cpp 3 s4 offset = FETCH(1); /* low-order 16 bits */
4 offset |= ((s4) FETCH(2)) << 16; /* high-order 16 bits */
OP_GOTO_16.cpp 3 s4 offset = (s2) FETCH(1); /* sign-extend next code unit */
OP_NEW_ARRAY.cpp 5 s4 length;
13 vdst, vsrc1, ref, (s4) GET_REGISTER(vsrc1));
14 length = (s4) GET_REGISTER(vsrc1);
OP_NEW_ARRAY_JUMBO.cpp 5 s4 length;
13 vdst, vsrc1, ref, (s4) GET_REGISTER(vsrc1));
14 length = (s4) GET_REGISTER(vsrc1);
OP_FILL_ARRAY_DATA.cpp 4 s4 offset;
9 offset = FETCH(1) | (((s4) FETCH(2)) << 16);
OP_PACKED_SWITCH.cpp 5 s4 offset;
8 offset = FETCH(1) | (((s4) FETCH(2)) << 16);
OP_SPARSE_SWITCH.cpp 5 s4 offset;
8 offset = FETCH(1) | (((s4) FETCH(2)) << 16);
OP_CONST_WIDE_32.cpp 9 SET_REGISTER_WIDE(vdst, (s4) tmp);
OP_RSUB_INT.cpp 7 SET_REGISTER(vdst, (s2) vsrc2 - (s4) GET_REGISTER(vsrc1));
OP_RSUB_INT_LIT8.cpp 9 SET_REGISTER(vdst, (s1) vsrc2 - (s4) GET_REGISTER(vsrc1));
  /external/clang/test/SemaCXX/
elaborated-type-specifier.cpp 22 void test_elab2(struct S4 *s4);
25 void X::test_elab2(S4 *s4) { } // expected-note{{passing argument to parameter 's4' here}}
29 struct S4 *s4 = 0; local
30 x.test_elab2(s4); // expected-error{{cannot initialize a parameter of type 'NS::S4 *' with an lvalue of type 'struct S4 *'}}
38 S4 *s4; \/\/ expected-error{{use of undeclared identifier 'S4'}} \\ local
    [all...]
  /dalvik/docs/
porting-proto.c.txt 33 typedef int32_t s4;
38 s4 iadd32(s4 x, s4 y) { return x + y; }
43 s4 isub32(s4 x, s4 y) { return x - y; }
48 s4 irsub32lit8(s4 x) { return 25 - x; }
50 s4 imul32(s4 x, s4 y) { return x * y;
    [all...]
  /dalvik/vm/interp/
InterpDefs.h 62 extern "C" s4 dvmInterpHandlePackedSwitch(const u2* switchData, s4 testVal);
63 extern "C" s4 dvmInterpHandleSparseSwitch(const u2* switchData, s4 testVal);
  /frameworks/base/media/libstagefright/codecs/amrnb/common/src/
residu.cpp 209 Word32 s4; local
223 s4 = 0x0000800L;
235 s4 += ((Word32) * (p_coef--) * *(p_input4++));
239 s4 += ((Word32) * (p_coef--) * *(p_input4++));
245 s4 += (((Word32) * (p_coef)) * *(p_input4));
250 *(p_residual_ptr--) = (Word16)(s4 >> 12);
  /external/clang/test/Sema/
arm-layout.c 44 struct s4 { struct
48 check(s4_size, sizeof(struct s4) == 4);
49 check(s4_align, __alignof(struct s4) == 4);
51 check(s4_size, sizeof(struct s4) == 1);
52 check(s4_align, __alignof(struct s4) == 1);
  /external/clang/test/Analysis/
malloc-overflow.c 22 struct s4 struct
27 void * f4(struct s4 *s)
32 void * f5(struct s4 *s)
34 struct s4 s2 = *s;

Completed in 967 milliseconds

1 2 3 4 5 6