HomeSort by relevance Sort by last modified time
    Searched refs:SET_FLAGS (Results 1 - 10 of 10) sorted by null

  /external/pcre/dist2/src/sljit/
sljitNativeSPARC_32.c 41 SLJIT_COMPILE_ASSERT(ICC_IS_SET == SET_FLAGS, icc_is_set_and_set_flags_must_be_the_same);
79 return push_inst(compiler, XNOR | (flags & SET_FLAGS) | D(dst) | S1(0) | S2(src2), DR(dst) | (flags & SET_FLAGS));
84 FAIL_IF(push_inst(compiler, SUB | SET_FLAGS | D(0) | S1(src2) | S2(0), SET_FLAGS));
87 FAIL_IF(push_inst(compiler, OR | (flags & SET_FLAGS) | D(dst) | S1(0) | IMM(32), UNMOVABLE_INS | (flags & SET_FLAGS)));
91 FAIL_IF(push_inst(compiler, SUB | SET_FLAGS | D(0) | S1(TMP_REG1) | S2(0), SET_FLAGS));
94 return push_inst(compiler, ADD | (flags & SET_FLAGS) | D(dst) | S1(dst) | IMM(1), UNMOVABLE_INS | (flags & SET_FLAGS))
    [all...]
sljitNativeARM_T2_32.c 504 /* SET_FLAGS must be 0x100000 as it is also the value of S bit (can be used for optimization). */
505 #define SET_FLAGS 0x0100000
536 SLJIT_ASSERT(!(flags & SET_FLAGS) && (flags & ARG2_IMM) && arg1 == TMP_REG1);
539 if (!(flags & SET_FLAGS))
558 if (!(flags & SET_FLAGS)) {
566 return push_inst32(compiler, ADD_WI | (flags & SET_FLAGS) | RD4(dst) | RN4(reg) | imm);
571 return push_inst32(compiler, ADCI | (flags & SET_FLAGS) | RD4(dst) | RN4(reg) | imm);
579 return push_inst32(compiler, RSB_WI | (flags & SET_FLAGS) | RD4(dst) | RN4(reg) | imm);
597 if (!(flags & SET_FLAGS)) {
605 return push_inst32(compiler, SUB_WI | (flags & SET_FLAGS) | RD4(dst) | RN4(reg) | imm)
    [all...]
sljitNativeARM_64.c 502 #define SET_FLAGS 0x0080000
509 if (flags & SET_FLAGS) { \
551 SLJIT_ASSERT(!(flags & SET_FLAGS) && (flags & ARG2_IMM) && arg1 == TMP_REG1);
556 goto set_flags;
584 if (imm > 0 && imm <= 0xffffff && !(flags & SET_FLAGS)) {
588 if (nimm > 0 && nimm <= 0xffffff && !(flags & SET_FLAGS)) {
609 goto set_flags;
621 goto set_flags;
636 goto set_flags;
666 SLJIT_ASSERT(!(flags & SET_FLAGS) && arg1 == TMP_REG1)
    [all...]
sljitNativeARM_32.c 820 #define EMIT_DATA_PROCESS_INS(opcode, set_flags, dst, src1, src2) \
821 (0xe0000000 | ((opcode) << 21) | (set_flags) | RD(dst) | RN(src1) | (src2))
961 /* SET_FLAGS must be (1 << 20) as it is also the value of S bit (can be used for optimization). */
962 #define SET_FLAGS (1 << 20)
970 return push_inst(compiler, EMIT_DATA_PROCESS_INS(opcode, flags & SET_FLAGS, dst, src1, (src2 & SRC2_IMM) ? src2 : RM(src2)))
973 return push_inst(compiler, EMIT_DATA_PROCESS_INS(opcode, flags & SET_FLAGS, dst, src1, src2))
981 return push_inst(compiler, EMIT_DATA_PROCESS_INS(MOV_DP, flags & SET_FLAGS, dst, SLJIT_UNUSED, (compiler->shift_imm << 7) | (opcode << 5) | reg_map[src2])); \
982 return push_inst(compiler, EMIT_DATA_PROCESS_INS(MOV_DP, flags & SET_FLAGS, dst, SLJIT_UNUSED, reg_map[src2])); \
984 return push_inst(compiler, EMIT_DATA_PROCESS_INS(MOV_DP, flags & SET_FLAGS, dst, SLJIT_UNUSED, (reg_map[(flags & ARGS_SWAPPED) ? src1 : src2] << 8) | (opcode << 5) | 0x10 | ((flags & ARGS_SWAPPED) ? reg_map[src2] : reg_map[src1])));
    [all...]
sljitNativeSPARC_common.c 120 #define SET_FLAGS OPC3(0x10)
417 /* SET_FLAGS (0x10 << 19) also belong here! */
815 sljit_s32 flags = GET_FLAGS(op) ? SET_FLAGS : 0;
884 sljit_s32 flags = GET_FLAGS(op) ? SET_FLAGS : 0;
    [all...]
  /frameworks/support/media/version-compat-tests/lib/src/main/java/android/support/mediacompat/testlib/
MediaSessionConstants.java 26 public static final int SET_FLAGS = 102;
  /frameworks/support/media/version-compat-tests/current/service/src/androidTest/java/android/support/mediacompat/service/
ServiceBroadcastReceiver.java 34 import static android.support.mediacompat.testlib.MediaSessionConstants.SET_FLAGS;
108 case SET_FLAGS:
  /frameworks/support/media/version-compat-tests/previous/service/src/androidTest/java/android/support/mediacompat/service/
ServiceBroadcastReceiver.java 34 import static android.support.mediacompat.testlib.MediaSessionConstants.SET_FLAGS;
107 case SET_FLAGS:
  /frameworks/support/media/version-compat-tests/current/client/src/androidTest/java/android/support/mediacompat/client/
MediaControllerCompatCallbackTest.java 24 import static android.support.mediacompat.testlib.MediaSessionConstants.SET_FLAGS;
204 callMediaSessionMethod(SET_FLAGS, TEST_FLAGS, getContext());
  /frameworks/support/media/version-compat-tests/previous/client/src/androidTest/java/android/support/mediacompat/client/
MediaControllerCompatCallbackTest.java 24 import static android.support.mediacompat.testlib.MediaSessionConstants.SET_FLAGS;
203 callMediaSessionMethod(SET_FLAGS, TEST_FLAGS, getContext());

Completed in 195 milliseconds