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

1 2 3

  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
machmode.h 1 /* Machine mode definitions for GCC; included by rtl.h and tree.h.
27 /* Get the name of mode MODE as a string. */
30 #define GET_MODE_NAME(MODE) mode_name[MODE]
32 /* Mode classes. */
34 #include "mode-classes.def"
40 /* Get the general kind of object that mode MODE represents
44 #define GET_MODE_CLASS(MODE) mode_class[MODE
    [all...]
real.h 150 /* Default rounding mode for operations on this format. */
164 /* The target format used for each floating point mode.
166 float modes indexed by (MODE - first float mode), and entries for
167 decimal float modes indexed by (MODE - first decimal float mode) +
173 #define REAL_MODE_FORMAT(MODE) \
174 (real_format_for_mode[DECIMAL_FLOAT_MODE_P (MODE) \
175 ? (((MODE) - MIN_MODE_DECIMAL_FLOAT) \
177 : ((MODE) - MIN_MODE_FLOAT)]
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
machmode.h 1 /* Machine mode definitions for GCC; included by rtl.h and tree.h.
27 /* Get the name of mode MODE as a string. */
30 #define GET_MODE_NAME(MODE) mode_name[MODE]
32 /* Mode classes. */
34 #include "mode-classes.def"
40 /* Get the general kind of object that mode MODE represents
44 #define GET_MODE_CLASS(MODE) ((enum mode_class) mode_class[MODE]
    [all...]
genrtl.h 9 gen_rtx_fmt_0_stat (RTX_CODE code, enum machine_mode mode MEM_STAT_DECL)
14 PUT_MODE (rt, mode);
24 gen_rtx_fmt_ee_stat (RTX_CODE code, enum machine_mode mode,
31 PUT_MODE (rt, mode);
42 gen_rtx_fmt_ue_stat (RTX_CODE code, enum machine_mode mode,
49 PUT_MODE (rt, mode);
60 gen_rtx_fmt_E_stat (RTX_CODE code, enum machine_mode mode,
66 PUT_MODE (rt, mode);
76 gen_rtx_fmt_e_stat (RTX_CODE code, enum machine_mode mode,
82 PUT_MODE (rt, mode);
    [all...]
real.h 146 /* Default rounding mode for operations on this format. */
160 /* The target format used for each floating point mode.
162 float modes indexed by (MODE - first float mode), and entries for
163 decimal float modes indexed by (MODE - first decimal float mode) +
169 #define REAL_MODE_FORMAT(MODE) \
170 (real_format_for_mode[DECIMAL_FLOAT_MODE_P (MODE) \
171 ? (((MODE) - MIN_MODE_DECIMAL_FLOAT) \
173 : ((MODE) - MIN_MODE_FLOAT)]
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
machmode.h 1 /* Machine mode definitions for GCC; included by rtl.h and tree.h.
27 /* Get the name of mode MODE as a string. */
30 #define GET_MODE_NAME(MODE) mode_name[MODE]
32 /* Mode classes. */
34 #include "mode-classes.def"
40 /* Get the general kind of object that mode MODE represents
44 #define GET_MODE_CLASS(MODE) ((enum mode_class) mode_class[MODE]
    [all...]
genrtl.h 9 gen_rtx_fmt_0_stat (RTX_CODE code, enum machine_mode mode MEM_STAT_DECL)
14 PUT_MODE (rt, mode);
24 gen_rtx_fmt_ee_stat (RTX_CODE code, enum machine_mode mode,
31 PUT_MODE (rt, mode);
42 gen_rtx_fmt_ue_stat (RTX_CODE code, enum machine_mode mode,
49 PUT_MODE (rt, mode);
60 gen_rtx_fmt_E_stat (RTX_CODE code, enum machine_mode mode,
66 PUT_MODE (rt, mode);
76 gen_rtx_fmt_e_stat (RTX_CODE code, enum machine_mode mode,
82 PUT_MODE (rt, mode);
    [all...]
real.h 146 /* Default rounding mode for operations on this format. */
160 /* The target format used for each floating point mode.
162 float modes indexed by (MODE - first float mode), and entries for
163 decimal float modes indexed by (MODE - first decimal float mode) +
169 #define REAL_MODE_FORMAT(MODE) \
170 (real_format_for_mode[DECIMAL_FLOAT_MODE_P (MODE) \
171 ? (((MODE) - MIN_MODE_DECIMAL_FLOAT) \
173 : ((MODE) - MIN_MODE_FLOAT)]
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
machmode.h 1 /* Machine mode definitions for GCC; included by rtl.h and tree.h.
27 /* Get the name of mode MODE as a string. */
30 #define GET_MODE_NAME(MODE) mode_name[MODE]
32 /* Mode classes. */
34 #include "mode-classes.def"
40 /* Get the general kind of object that mode MODE represents
44 #define GET_MODE_CLASS(MODE) ((enum mode_class) mode_class[MODE]
    [all...]
genrtl.h 9 gen_rtx_fmt_0_stat (RTX_CODE code, enum machine_mode mode MEM_STAT_DECL)
14 PUT_MODE (rt, mode);
24 gen_rtx_fmt_ee_stat (RTX_CODE code, enum machine_mode mode,
31 PUT_MODE (rt, mode);
42 gen_rtx_fmt_ue_stat (RTX_CODE code, enum machine_mode mode,
49 PUT_MODE (rt, mode);
60 gen_rtx_fmt_E_stat (RTX_CODE code, enum machine_mode mode,
66 PUT_MODE (rt, mode);
76 gen_rtx_fmt_e_stat (RTX_CODE code, enum machine_mode mode,
82 PUT_MODE (rt, mode);
    [all...]
real.h 146 /* Default rounding mode for operations on this format. */
160 /* The target format used for each floating point mode.
162 float modes indexed by (MODE - first float mode), and entries for
163 decimal float modes indexed by (MODE - first decimal float mode) +
169 #define REAL_MODE_FORMAT(MODE) \
170 (real_format_for_mode[DECIMAL_FLOAT_MODE_P (MODE) \
171 ? (((MODE) - MIN_MODE_DECIMAL_FLOAT) \
173 : ((MODE) - MIN_MODE_FLOAT)]
    [all...]
  /cts/tests/src/android/provider/cts/
TestSearchRecentSuggestionsProvider.java 23 final static int MODE = DATABASE_MODE_QUERIES + DATABASE_MODE_2LINES;
27 setupSuggestions(AUTHORITY, MODE);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
SearchSuggestionSampleProvider.java 22 * To create a search suggestions provider using the built-in recent queries mode,
24 * a unique authority and the mode you with to use. For more information, see
36 * These flags determine the operating mode of the suggestions provider. This value should
40 final static int MODE = DATABASE_MODE_QUERIES;
48 setupSuggestions(AUTHORITY, MODE);
  /frameworks/base/core/tests/coretests/src/android/provider/
TestProvider.java 26 final static int MODE = DATABASE_MODE_QUERIES + DATABASE_MODE_2LINES;
30 setupSuggestions(AUTHORITY, MODE);
  /packages/apps/Calendar/src/com/android/calendar/
CalendarRecentSuggestionsProvider.java 22 public final static int MODE = DATABASE_MODE_QUERIES;
29 setupSuggestions(Utils.getSearchAuthority(getContext()), MODE);
  /cts/tests/src/android/content/cts/
MockSRSProvider.java 22 final static int MODE = DATABASE_MODE_QUERIES + DATABASE_MODE_2LINES;
29 setupSuggestions(AUTHORITY, MODE);
37 public void setupSuggestions(String authority, int mode) {
39 super.setupSuggestions(authority, mode);
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/config/arm/
arm.h 38 /* Define __arm__ even when in thumb mode, for \
249 /* We could use unified syntax for arm mode, but for now we just use it
280 {"mode", "%{!marm:%{!mthumb:-m%(VALUE)}}"},
471 in a wider mode than that declared by the program. In such cases,
473 type, but kept valid in the wider mode. The signedness of the
478 #define PROMOTE_MODE(MODE, UNSIGNEDP, TYPE) \
479 if (GET_MODE_CLASS (MODE) == MODE_INT \
480 && GET_MODE_SIZE (MODE) < 4) \
482 if (MODE == QImode) \
484 else if (MODE == HImode)
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/config/arm/
arm.h 50 /* Define __arm__ even when in thumb mode, for \
291 /* We could use unified syntax for arm mode, but for now we just use it
336 {"mode", "%{!marm:%{!mthumb:-m%(VALUE)}}"},
531 in a wider mode than that declared by the program. In such cases,
533 type, but kept valid in the wider mode. The signedness of the
538 #define PROMOTE_MODE(MODE, UNSIGNEDP, TYPE) \
539 if (GET_MODE_CLASS (MODE) == MODE_INT \
540 && GET_MODE_SIZE (MODE) < 4) \
542 if (MODE == QImode) \
544 else if (MODE == HImode)
    [all...]
bpabi.h 50 #define FLOAT_LIB_COMPARE_RETURNS_BOOL(MODE, COMPARISON) TARGET_BPABI
106 particularly not in Thumb mode. We assume the mcount
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/config/arm/
arm.h 50 /* Define __arm__ even when in thumb mode, for \
291 /* We could use unified syntax for arm mode, but for now we just use it
336 {"mode", "%{!marm:%{!mthumb:-m%(VALUE)}}"},
531 in a wider mode than that declared by the program. In such cases,
533 type, but kept valid in the wider mode. The signedness of the
538 #define PROMOTE_MODE(MODE, UNSIGNEDP, TYPE) \
539 if (GET_MODE_CLASS (MODE) == MODE_INT \
540 && GET_MODE_SIZE (MODE) < 4) \
542 if (MODE == QImode) \
544 else if (MODE == HImode)
    [all...]
bpabi.h 50 #define FLOAT_LIB_COMPARE_RETURNS_BOOL(MODE, COMPARISON) TARGET_BPABI
106 particularly not in Thumb mode. We assume the mcount
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/config/arm/
arm.h 50 /* Define __arm__ even when in thumb mode, for \
291 /* We could use unified syntax for arm mode, but for now we just use it
336 {"mode", "%{!marm:%{!mthumb:-m%(VALUE)}}"},
531 in a wider mode than that declared by the program. In such cases,
533 type, but kept valid in the wider mode. The signedness of the
538 #define PROMOTE_MODE(MODE, UNSIGNEDP, TYPE) \
539 if (GET_MODE_CLASS (MODE) == MODE_INT \
540 && GET_MODE_SIZE (MODE) < 4) \
542 if (MODE == QImode) \
544 else if (MODE == HImode)
    [all...]
  /external/ipsec-tools/src/libipsec/
policy_parse.h 49 MODE = 265,
68 #define MODE 265
  /external/dbus/test/name-test/
run-test-systemserver.sh 14 MODE=$1
26 exec $DBUS_TOP_SRCDIR/tools/run-with-tmp-session-bus.sh $SCRIPTNAME $MODE
34 ${DBUS_TOP_BUILDDIR}/libtool --mode=execute $DEBUG $DBUS_TOP_BUILDDIR/tools/dbus-send --print-reply --dest=org.freedesktop.DBus.TestSuiteEchoService /org/freedesktop/TestSuite org.freedesktop.TestSuite.Echo string:hi >echo-error-output.tmp 2>&1
run-test.sh 16 MODE=$1
26 exec $DBUS_TOP_SRCDIR/tools/run-with-tmp-session-bus.sh $SCRIPTNAME $MODE
34 ${DBUS_TOP_BUILDDIR}/libtool --mode=execute $DEBUG $DBUS_TOP_BUILDDIR/test/name-test/test-ids || die "test-ids failed"
37 ${DBUS_TOP_BUILDDIR}/libtool --mode=execute $DEBUG $DBUS_TOP_BUILDDIR/test/name-test/test-pending-call-dispatch || die "test-pending-call-dispatch failed"
40 ${DBUS_TOP_BUILDDIR}/libtool --mode=execute $DEBUG $DBUS_TOP_BUILDDIR/test/name-test/test-pending-call-timeout || die "test-pending-call-timeout failed"
43 ${DBUS_TOP_BUILDDIR}/libtool --mode=execute $DEBUG $DBUS_TOP_BUILDDIR/test/name-test/test-threads-init || die "test-threads-init failed"
46 ${DBUS_TOP_BUILDDIR}/libtool --mode=execute $DEBUG $DBUS_TOP_BUILDDIR/test/name-test/test-privserver-client || die "test-privserver-client failed"
49 ${DBUS_TOP_BUILDDIR}/libtool --mode=execute $DEBUG $DBUS_TOP_BUILDDIR/test/name-test/test-shutdown || die "test-shutdown failed"

Completed in 3413 milliseconds

1 2 3