Home
last modified time | relevance | path

Searched refs:EXP (Results 1 – 25 of 483) sorted by relevance

12345678910>>...20

/external/jackson-core/src/test/java/com/fasterxml/jackson/core/util/
DTestDefaultPrettyPrinter.java17 String EXP = "{" + LF + in testSystemLinefeed() local
21 assertEquals(EXP, _printTestData(pp, false)); in testSystemLinefeed()
22 assertEquals(EXP, _printTestData(pp, true)); in testSystemLinefeed()
29 String EXP = "{\n" + in testWithLineFeed() local
33 assertEquals(EXP, _printTestData(pp, false)); in testWithLineFeed()
34 assertEquals(EXP, _printTestData(pp, true)); in testWithLineFeed()
41 String EXP = "{\n" + in testWithIndent() local
45 assertEquals(EXP, _printTestData(pp, false)); in testWithIndent()
46 assertEquals(EXP, _printTestData(pp, true)); in testWithIndent()
53 String EXP = "{\n" + in testUnixLinefeed() local
[all …]
/external/vixl/test/aarch64/
Dtest-disasm-aarch64.h62 #define COMPARE(ASM, EXP) \ argument
74 if (strcmp(disasm.GetOutput(), EXP) != 0) { \
77 EXP, \
84 #define COMPARE_PREFIX(ASM, EXP) \ argument
96 if (strncmp(disasm.GetOutput(), EXP, strlen(EXP)) != 0) { \
99 EXP, \
106 #define COMPARE_MACRO_BASE(ASM, EXP) \ argument
124 #define COMPARE_MACRO(ASM, EXP) \ argument
126 COMPARE_MACRO_BASE(ASM, EXP) \
127 if (strcmp(res.c_str(), EXP) != 0) { \
[all …]
/external/clang/test/Parser/
Dattributes.mm10 #define EXP __attribute__((visibility("default"))) macro
11 class EXP C {};
12 EXP class C2 {}; // expected-warning {{attribute 'visibility' is ignored, place it after "class" to…
14 @interface EXP I @end // expected-error {{postfix attributes are not allowed on Objective-C directi… interface
15 EXP @interface I2 @end
17 @implementation EXP I @end // expected-error-re {{postfix attributes are not allowed on Objective-C… implementation
19 EXP @implementation I2 @end; // expected-error {{prefix attribute must be followed by an interface …
21 @class EXP OC; // expected-error-re {{postfix attributes are not allowed on Objective-C directives{…
22 EXP @class OC2; // expected-error {{prefix attribute must be followed by an interface or protocol}}
24 @protocol EXP P @end // expected-error {{postfix attributes are not allowed on Objective-C directiv… protocol
[all …]
/external/llvm-project/clang/test/Parser/
Dattributes.mm12 #define EXP __attribute__((visibility("default"))) macro
13 class EXP C {};
14 EXP class C2 {}; // expected-warning {{attribute 'visibility' is ignored, place it after "class" to…
16 @interface EXP I @end // expected-error {{postfix attributes are not allowed on Objective-C directi… interface
17 EXP @interface I2 @end
19 @implementation EXP I @end // expected-error-re {{postfix attributes are not allowed on Objective-C… implementation
20 EXP @implementation I2 @end
22 @class EXP OC; // expected-error-re {{postfix attributes are not allowed on Objective-C directives{…
23 EXP @class OC2; // expected-error {{prefix attribute must be followed by an interface, protocol, or…
25 @protocol EXP P @end // expected-error {{postfix attributes are not allowed on Objective-C directiv… protocol
[all …]
/external/llvm-project/llvm/lib/Target/AMDGPU/
DEXPInstructions.td10 // EXP classes
19 let EXP = 1;
43 // EXP Instructions
46 // Split EXP instruction into EXP and EXP_DONE so we can set
48 def EXP : EXP_Pseudo<0>;
62 def EXP_si : EXP_Real_si<0, "EXP">;
76 def EXP_vi : EXP_Real_vi<0, "EXP">;
90 def EXP_gfx10 : EXP_Real_gfx10<0, "EXP">;
94 // EXP Patterns
117 def : ExpPattern<i32, EXP, 0>;
[all …]
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/contextual/
DTestContextAttributeWithSer.java54 final String EXP = aposToQuotes("[{'value':'0:a'},{'value':'1:b'}]"); in testSimplePerCall() local
58 assertEquals(EXP, w.writeValueAsString(INPUT)); in testSimplePerCall()
61 assertEquals(EXP, w.writeValueAsString(INPUT)); in testSimplePerCall()
66 final String EXP = aposToQuotes("{'value':'3:xyz'}"); in testSimpleDefaults() local
70 assertEquals(EXP, json); in testSimpleDefaults()
74 assertEquals(EXP, json2); in testSimpleDefaults()
80 final String EXP = aposToQuotes("[{'value':'2:a'},{'value':'3:b'}]"); in testHierarchic() local
82 assertEquals(EXP, w.writeValueAsString(INPUT)); in testHierarchic()
85 assertEquals(EXP, w.writeValueAsString(INPUT)); in testHierarchic()
/external/llvm-project/compiler-rt/lib/builtins/hexagon/
Ddfsqrt.S11 #define EXP r28 macro
81 EXP = extractu(AH,#DF_EXPBITS,#DF_MANTBITS-32) define
115 SHIFTAMT = and(EXP,#1)
286 EXP = add(EXP,#-DF_BIAS) // subtract bias --> signed exp define
297 EXP = asr(EXP,#1) // divide signed exp by 2 define
317 EXP = add(EXP,#-63) define
324 EXP = add(EXP,ADJ) // add back bias define
327 RETHI += asl(EXP,#DF_MANTBITS-32) // add exponent adjust
363 if (!P_TMP.new) EXP = ##0x7F800001 // sNaN
375 EXP = add(clb(A),#-DF_EXPBITS) // how much to normalize? define
[all …]
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/builder/
DBuilderWithCreatorTest.java154 final int EXP = 139; in testWithDelegatingStringCreator() local
155 IntCreatorValue value = MAPPER.readValue(String.valueOf(EXP), in testWithDelegatingStringCreator()
157 assertEquals(EXP, value.value); in testWithDelegatingStringCreator()
162 final double EXP = -3.75; in testWithDelegatingIntCreator() local
163 DoubleCreatorValue value = MAPPER.readValue(String.valueOf(EXP), in testWithDelegatingIntCreator()
165 assertEquals(EXP, value.value); in testWithDelegatingIntCreator()
170 final boolean EXP = true; in testWithDelegatingBooleanCreator()
171 BooleanCreatorValue value = MAPPER.readValue(String.valueOf(EXP), in testWithDelegatingBooleanCreator()
173 assertEquals(EXP, value.value); in testWithDelegatingBooleanCreator()
/external/strace/tests-mx32/
Dnsyscalls-d.test19 2> "$LOG-err-all" > "$EXP" 9> "$EXP-err"
21 [ -n "$debug_flag" ] || > "$EXP-err"
25 match_diff "$LOG" "$EXP"
26 match_diff "$LOG-err" "$EXP-err"
Dsyntax.sh38 match_diff "$LOG" "$EXP" ||
48 match_grep "$LOG" "$EXP" ||
56 cat > "$EXP" << __EOF__
65 cat > "$EXP" << __EOF__
74 cat > "$EXP" << __EOF__
Dattach-p-cmd.test36 ../set_ptracer_any ../attach-p-cmd-p >> "$EXP" &
39 while ! [ -s "$EXP" ]; do
44 run_strace -a30 -echdir -p $tracee_pid ../attach-p-cmd-cmd > "$EXP"
45 match_diff "$LOG" "$EXP"
Dpoll.test8 run_strace -a16 -vepoll $args > "$EXP"
9 match_diff "$LOG" "$EXP"
13 run_strace -a16 -epoll -s$abbrev $args > "$EXP"
14 match_diff "$LOG" "$EXP"
/external/strace/tests-m32/
Dnsyscalls-d.test19 2> "$LOG-err-all" > "$EXP" 9> "$EXP-err"
21 [ -n "$debug_flag" ] || > "$EXP-err"
25 match_diff "$LOG" "$EXP"
26 match_diff "$LOG-err" "$EXP-err"
Dsyntax.sh38 match_diff "$LOG" "$EXP" ||
48 match_grep "$LOG" "$EXP" ||
56 cat > "$EXP" << __EOF__
65 cat > "$EXP" << __EOF__
74 cat > "$EXP" << __EOF__
Dattach-p-cmd.test36 ../set_ptracer_any ../attach-p-cmd-p >> "$EXP" &
39 while ! [ -s "$EXP" ]; do
44 run_strace -a30 -echdir -p $tracee_pid ../attach-p-cmd-cmd > "$EXP"
45 match_diff "$LOG" "$EXP"
Dpoll.test8 run_strace -a16 -vepoll $args > "$EXP"
9 match_diff "$LOG" "$EXP"
13 run_strace -a16 -epoll -s$abbrev $args > "$EXP"
14 match_diff "$LOG" "$EXP"
/external/strace/tests/
Dnsyscalls-d.test19 2> "$LOG-err-all" > "$EXP" 9> "$EXP-err"
21 [ -n "$debug_flag" ] || > "$EXP-err"
25 match_diff "$LOG" "$EXP"
26 match_diff "$LOG-err" "$EXP-err"
Dsyntax.sh38 match_diff "$LOG" "$EXP" ||
48 match_grep "$LOG" "$EXP" ||
56 cat > "$EXP" << __EOF__
65 cat > "$EXP" << __EOF__
74 cat > "$EXP" << __EOF__
Dattach-p-cmd.test36 ../set_ptracer_any ../attach-p-cmd-p >> "$EXP" &
39 while ! [ -s "$EXP" ]; do
44 run_strace -a30 -echdir -p $tracee_pid ../attach-p-cmd-cmd > "$EXP"
45 match_diff "$LOG" "$EXP"
Dpoll.test8 run_strace -a16 -vepoll $args > "$EXP"
9 match_diff "$LOG" "$EXP"
13 run_strace -a16 -epoll -s$abbrev $args > "$EXP"
14 match_diff "$LOG" "$EXP"
Dattach-f-p.test37 ../set_ptracer_any sh -c "exec ../attach-f-p >> $EXP" > /dev/null &
40 while ! [ -s "$EXP" ]; do
45 run_strace -a32 -f -echdir -p $tracee_pid ../attach-f-p-cmd > "$EXP"
46 match_diff "$LOG" "$EXP"
/external/e2fsprogs/tests/f_detect_xfs/
Dscript10 EXP=$test_dir/expect
12 EXP=$test_dir/expect.nodebugfs
30 if cmp -s $EXP $OUT; then
35 diff -u $EXP $OUT >> $test_name.failed
37 unset EXP OUT FSCK_OPT IMAGE
/external/e2fsprogs/tests/m_mcsum_extjournal/
Dscript4 EXP=$test_name.tmp
7 EXP=$test_dir/expect
15 cmp -s $OUT $EXP
23 diff $DIFF_OPTS $EXP $OUT > $test_name.failed
27 unset IMAGE FSCK_OPT OUT EXP
/external/e2fsprogs/tests/f_detect_junk/
Dscript16 EXP=$test_dir/expect
18 EXP=$test_dir/expect.nodebugfs
36 if cmp -s $EXP $OUT; then
41 diff -u $EXP $OUT >> $test_name.failed
43 unset EXP OUT FSCK_OPT IMAGE
/external/e2fsprogs/tests/m_hugefile_slack/
Dscript3 EXP=$test_dir/expect
6 #gzip -d < $EXP.gz > $EXP
42 cmp -s $OUT $EXP
50 diff $DIFF_OPTS $EXP $OUT > $test_name.failed
53 unset IMAGE FSCK_OPT OUT EXP CONF

12345678910>>...20