Searched refs:jb (Results 1 - 25 of 148) sorted by relevance

123456

/external/clang/test/CodeGen/
H A Dms-setjmp.c12 jmp_buf jb; variable
15 return _setjmp(jb);
17 // I386: %[[call:.*]] = call i32 (i8*, i32, ...) @_setjmp3(i8* getelementptr inbounds ([1 x i8], [1 x i8]* @jb, i32 0, i32 0), i32 0)
22 // X64: %[[call:.*]] = call i32 @_setjmp(i8* getelementptr inbounds ([1 x i8], [1 x i8]* @jb, i32 0, i32 0), i8* %[[addr]])
27 return _setjmpex(jb);
30 // X64: %[[call:.*]] = call i32 @_setjmpex(i8* getelementptr inbounds ([1 x i8], [1 x i8]* @jb, i32 0, i32 0), i8* %[[addr]])
/external/libcxx/test/std/depr/depr.c.headers/
H A Dsetjmp_h.pass.cpp21 jmp_buf jb; local
22 ((void)jb); // Prevent unused warning
23 static_assert((std::is_same<decltype(longjmp(jb, 0)), void>::value),
24 "std::is_same<decltype(longjmp(jb, 0)), void>::value");
/external/libcxx/test/std/language.support/support.runtime/
H A Dcsetjmp.pass.cpp21 std::jmp_buf jb; local
22 ((void)jb); // Prevent unused warning
23 static_assert((std::is_same<decltype(std::longjmp(jb, 0)), void>::value),
24 "std::is_same<decltype(std::longjmp(jb, 0)), void>::value");
/external/libjpeg-turbo/
H A Djcstest.c48 jmp_buf jb; member in struct:_error_mgr
55 longjmp(myerr->jb, 1);
80 if (setjmp(jerr.jb)) {
107 if (setjmp(jerr.jb)) {
/external/llvm/test/MC/MachO/
H A Drelax-jumps.s17 jb L2
H A Djcc.s7 jb 1f
/external/swiftshader/third_party/LLVM/test/MC/MachO/
H A Drelax-jumps.s21 jb L2
H A Djcc.s7 jb 1f
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.reverse/
H A Dreverse_copy.pass.cpp50 int jb[sb] = {-1}; local
51 r = std::reverse_copy(InIter(ib), InIter(ib+sb), OutIter(jb));
52 assert(base(r) == jb+sb);
53 assert(jb[0] == 1);
54 assert(jb[1] == 0);
/external/syslinux/com32/lib/
H A Dmemmove.S54 jb 2f
68 jb 13f
120 jb 23f
H A Dmemcpy.S61 jb 13f
H A Dmempcpy.S60 jb 13f
H A Dmemset.S64 jb 3f
/external/syslinux/memdisk/
H A Dmemmove.S49 jb 1f
62 jb 13f
104 jb 23f
H A Dmemcpy.S57 jb 13f
H A Dmemset.S60 jb 3f
/external/annotation-tools/annotation-file-utilities/scripts/
H A Dmerge-annotations10 jb="$CHECKERFRAMEWORK/checker/dist/*"
16 cp="$jb:$cf:$sl:$al/*:$wd:$CLASSPATH"
/external/compiler-rt/lib/builtins/i386/
H A Dchkstk.S19 jb 1f
H A Dchkstk2.S20 jb 1f
/external/compiler-rt/lib/builtins/x86_64/
H A Dchkstk.S24 jb 1f
H A Dchkstk2.S22 jb 1f
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.unique/
H A Dunique_copy.pass.cpp53 int jb[sb] = {-1}; local
54 r = std::unique_copy(InIter(ib), InIter(ib+sb), OutIter(jb));
55 assert(base(r) == jb + sb);
56 assert(jb[0] == 0);
57 assert(jb[1] == 1);
H A Dunique_copy_pred.pass.cpp67 int jb[sb] = {-1}; local
69 r = std::unique_copy(InIter(ib), InIter(ib+sb), OutIter(jb), count_equal());
70 assert(base(r) == jb + sb);
71 assert(jb[0] == 0);
72 assert(jb[1] == 1);
/external/syslinux/core/lzo/
H A Dlzo1c_d.ash54 jb .LM2
57 jb .LN3
83 jb .LIT
H A Dleave.ash44 jb .L_input_not_consumed

Completed in 491 milliseconds

123456