/art/runtime/interpreter/mterp/mips64/ |
op_if_eqz.S | 1 %include "mips64/zcmp.S" { "condition":"eq" }
|
op_if_ge.S | 1 %include "mips64/bincmp.S" { "condition":"ge" }
|
op_if_gez.S | 1 %include "mips64/zcmp.S" { "condition":"ge" }
|
op_if_gt.S | 1 %include "mips64/bincmp.S" { "condition":"gt" }
|
op_if_gtz.S | 1 %include "mips64/zcmp.S" { "condition":"gt" }
|
op_if_le.S | 1 %include "mips64/bincmp.S" { "condition":"le" }
|
op_if_lez.S | 1 %include "mips64/zcmp.S" { "condition":"le" }
|
op_if_lt.S | 1 %include "mips64/bincmp.S" { "condition":"lt" }
|
op_if_ltz.S | 1 %include "mips64/zcmp.S" { "condition":"lt" }
|
op_if_ne.S | 1 %include "mips64/bincmp.S" { "condition":"ne" }
|
op_if_nez.S | 1 %include "mips64/zcmp.S" { "condition":"ne" }
|
/cts/tests/app/src/android/app/cts/ |
ConditionTest.java | 21 import android.service.notification.Condition; 32 private final int mState = Condition.STATE_FALSE; 41 Condition condition = new Condition(mConditionId, mSummary, mState); local 42 assertEquals(expected, condition.describeContents()); 46 Condition condition = new Condition(mConditionId, mSummary, mState); local 47 assertEquals(mConditionId, condition.id) 57 Condition condition = new Condition(mConditionId, mSummary, mState); local [all...] |
/art/compiler/utils/arm/ |
assembler_arm32.h | 42 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE; 45 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE; 48 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE; 51 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE; 54 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE; 57 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE; 60 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE; 63 Condition cond = AL, SetCc set_cc = kCcDontCare) OVERRIDE; 65 void tst(Register rn, const ShifterOperand& so, Condition cond = AL) OVERRIDE; 67 void teq(Register rn, const ShifterOperand& so, Condition cond = AL) OVERRIDE [all...] |
/external/autotest/frontend/tko/preconfigs/qual/ |
pre | 2 globalFilter[0][condition]: LIKE 'my_host%' 4 globalFilter[1][condition]: LIKE 'my_other_host%' 7 testFilter[0][condition]: = 'my_test_name' 11 globalFilter[0][condition]: LIKE 'my_host%' 13 globalFilter[1][condition]: LIKE 'my_other_host%' 16 testFilter[0][condition]: = 'my_test_name' 20 globalFilter[0][condition]: LIKE 'my_host%' 22 globalFilter[1][condition]: LIKE 'my_other_host%' 25 testFilter[0][condition]: = 'my_test_name'
|
/external/autotest/frontend/client/src/autotest/tko/ |
TestSet.java | 8 * Get the full condition args for this test set. 12 * Get the SQL condition for this test set within the global set. 19 JSONObject condition = getInitialCondition(); local 20 String sqlCondition = TkoUtils.getSqlCondition(condition); 22 condition.put("extra_where", new JSONString(sqlCondition)); 23 return condition;
|
LabelField.java | 8 String condition = " IS NOT NULL"; local 10 condition = " IS NULL"; 12 return getFilteringName() + condition;
|
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/builds/windows/vc2010/ |
freetype.vcxproj | 57 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
63 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
69 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Multithreaded|Win32'" Label="Configuration">
75 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Multithreaded|x64'" Label="Configuration">
81 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Singlethreaded|Win32'" Label="Configuration">
87 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Singlethreaded|x64'" Label="Configuration">
93 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
99 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
105 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Multithreaded|Win32'" Label="Configuration">
111 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Multithreaded|x64'" Label="Configuration"> [all...] |
/art/test/469-condition-materialization/ |
info.txt | 2 materialize a condition when used only by an environment.
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/ |
mips64-mips3d.l | 2 .*:150: Warning: condition code register should be even for bc1any2f, was 1 3 .*:152: Warning: condition code register should be even for bc1any2t, was 3 4 .*:154: Warning: condition code register should be 0 or 4 for bc1any4f, was 1 5 .*:156: Warning: condition code register should be 0 or 4 for bc1any4t, was 2
|
/external/libchrome/base/mac/ |
mach_logging.h | 66 #define MACH_LOG_IF(severity, condition, mach_err) \ 68 LOG_IS_ON(severity) && (condition)) 73 #define MACH_VLOG_IF(verbose_level, condition, mach_err) \ 75 VLOG_IS_ON(verbose_level) && (condition)) 77 #define MACH_CHECK(condition, mach_err) \ 78 LAZY_STREAM(MACH_LOG_STREAM(FATAL, mach_err), !(condition)) \ 79 << "Check failed: " # condition << ". " 83 #define MACH_DLOG_IF(severity, condition, mach_err) \ 85 DLOG_IS_ON(severity) && (condition)) 90 #define MACH_DVLOG_IF(verbose_level, condition, mach_err) [all...] |
/external/icu/icu4c/source/samples/uresb/ |
resources.vcxproj | 26 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> 29 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> 32 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> 35 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> 41 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets"> 42 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 45 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets"> 46 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 49 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets"> 50 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" / [all...] |
/development/ndk/platforms/android-3/include/asm-generic/ |
bug.h | 22 #define BUG_ON(condition) do { if (condition) ; } while(0) 26 #define WARN_ON(condition) do { if (condition) ; } while(0) 29 #define WARN_ON_ONCE(condition) ({ static int __warn_once = 1; int __ret = 0; if (unlikely((condition) && __warn_once)) { __warn_once = 0; WARN_ON(1); __ret = 1; } __ret; })
|
/external/llvm/test/MC/ARM/ |
invalid-crc32.s | 11 @ CHECK: error: instruction 'crc32cb' is not predicable, but condition code specified 12 @ CHECK: error: instruction 'crc32b' is not predicable, but condition code specified 13 @ CHECK: error: instruction 'crc32ch' is not predicable, but condition code specified 14 @ CHECK: error: instruction 'crc32h' is not predicable, but condition code specified 15 @ CHECK: error: instruction 'crc32cw' is not predicable, but condition code specified 16 @ CHECK: error: instruction 'crc32w' is not predicable, but condition code specified
|
/prebuilts/ndk/current/platforms/android-12/arch-arm/usr/include/asm-generic/ |
bug.h | 22 #define BUG_ON(condition) do { if (condition) ; } while(0) 26 #define WARN_ON(condition) do { if (condition) ; } while(0) 29 #define WARN_ON_ONCE(condition) ({ static int __warn_once = 1; int __ret = 0; if (unlikely((condition) && __warn_once)) { __warn_once = 0; WARN_ON(1); __ret = 1; } __ret; })
|
/prebuilts/ndk/current/platforms/android-12/arch-mips/usr/include/asm-generic/ |
bug.h | 22 #define BUG_ON(condition) do { if (condition) ; } while(0) 26 #define WARN_ON(condition) do { if (condition) ; } while(0) 29 #define WARN_ON_ONCE(condition) ({ static int __warn_once = 1; int __ret = 0; if (unlikely((condition) && __warn_once)) { __warn_once = 0; WARN_ON(1); __ret = 1; } __ret; })
|