Home
last modified time | relevance | path

Searched refs:jb (Results 1 – 25 of 426) sorted by relevance

12345678910>>...18

/external/speex/libspeexdsp/
Dtestjitter.c25 void jitterFill(JitterBuffer *jb) { in jitterFill() argument
32 jitter_buffer_reset(jb); in jitterFill()
36 jitter_buffer_put(jb, &in); in jitterFill()
39 if (jitter_buffer_get(jb, &out, 10, NULL) != JITTER_BUFFER_OK) { in jitterFill()
45 jitter_buffer_tick(jb); in jitterFill()
55 JitterBuffer *jb = jitter_buffer_init(10); in main() local
60 jitterFill(jb); in main()
63 jitter_buffer_get(jb, &out, 10, NULL); in main()
64 jitter_buffer_tick(jb); in main()
67 jitter_buffer_put(jb, &in); in main()
[all …]
/external/llvm/test/CodeGen/WinEH/
Dwineh-setjmp.ll5 @jb = external global i8
16 ; CHECK: invoke i32 (i8*, i32, ...) @_setjmp3(i8* @jb, i32 3, void (i8*)* @__CxxLongjmpUnwind, i32 …
17 %inv = invoke i32 (i8*, i32, ...) @_setjmp3(i8* @jb, i32 0) #2
24 ; CHECK: call i32 (i8*, i32, ...) @_setjmp3(i8* @jb, i32 3, void (i8*)* @__CxxLongjmpUnwind, i32 -1…
25 call i32 (i8*, i32, ...) @_setjmp3(i8* @jb, i32 0)
34 ; CHECK: call i32 (i8*, i32, ...) @_setjmp3(i8* @jb, i32 3, void (i8*)* @__CxxLongjmpUnwind, i32 %[…
35 %cal = call i32 (i8*, i32, ...) @_setjmp3(i8* @jb, i32 0) [ "funclet"(token %cp) ]
48 ; CHECK: invoke i32 (i8*, i32, ...) @_setjmp3(i8* @jb, i32 2, void (i8*)* @_seh_longjmp_unwind, i32…
49 %inv = invoke i32 (i8*, i32, ...) @_setjmp3(i8* @jb, i32 0) #2
55 ; CHECK: call i32 (i8*, i32, ...) @_setjmp3(i8* @jb, i32 2, void (i8*)* @_seh_longjmp_unwind, i32 -…
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/WinEH/
Dwineh-setjmp.ll5 @jb = external global i8
16 ; CHECK: invoke i32 (i8*, i32, ...) @_setjmp3(i8* @jb, i32 3, void (i8*)* @__CxxLongjmpUnwind, i32 …
17 %inv = invoke i32 (i8*, i32, ...) @_setjmp3(i8* @jb, i32 0) #2
24 ; CHECK: call i32 (i8*, i32, ...) @_setjmp3(i8* @jb, i32 3, void (i8*)* @__CxxLongjmpUnwind, i32 -1…
25 call i32 (i8*, i32, ...) @_setjmp3(i8* @jb, i32 0)
34 ; CHECK: call i32 (i8*, i32, ...) @_setjmp3(i8* @jb, i32 3, void (i8*)* @__CxxLongjmpUnwind, i32 %[…
35 %cal = call i32 (i8*, i32, ...) @_setjmp3(i8* @jb, i32 0) [ "funclet"(token %cp) ]
48 ; CHECK: invoke i32 (i8*, i32, ...) @_setjmp3(i8* @jb, i32 2, void (i8*)* @_seh_longjmp_unwind, i32…
49 %inv = invoke i32 (i8*, i32, ...) @_setjmp3(i8* @jb, i32 0) #2
55 ; CHECK: call i32 (i8*, i32, ...) @_setjmp3(i8* @jb, i32 2, void (i8*)* @_seh_longjmp_unwind, i32 -…
[all …]
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.reverse/
Dreverse_copy.pass.cpp50 int jb[sb] = {-1}; in test() local
51 r = std::reverse_copy(InIter(ib), InIter(ib+sb), OutIter(jb)); in test()
52 assert(base(r) == jb+sb); in test()
53 assert(jb[0] == 1); in test()
54 assert(jb[1] == 0); in test()
/external/libjpeg-turbo/
Djcstest.c48 jmp_buf jb; member
55 longjmp(myerr->jb, 1); in my_error_exit()
80 if (setjmp(jerr.jb)) { in main()
107 if (setjmp(jerr.jb)) { in main()
/external/libcxx/test/std/depr/depr.c.headers/
Dsetjmp_h.pass.cpp21 jmp_buf jb; in main() local
22 ((void)jb); // Prevent unused warning in main()
23 static_assert((std::is_same<decltype(longjmp(jb, 0)), void>::value), in main()
/external/clang/test/CodeGen/
Dms-setjmp.c12 jmp_buf jb; variable
15 return _setjmp(jb); in test_setjmp()
27 return _setjmpex(jb); in test_setjmpex()
/external/libcxx/test/std/language.support/support.runtime/
Dcsetjmp.pass.cpp21 std::jmp_buf jb; in main() local
22 ((void)jb); // Prevent unused warning in main()
23 static_assert((std::is_same<decltype(std::longjmp(jb, 0)), void>::value), in main()
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.unique/
Dunique_copy.pass.cpp53 int jb[sb] = {-1}; in test() local
54 r = std::unique_copy(InIter(ib), InIter(ib+sb), OutIter(jb)); in test()
55 assert(base(r) == jb + sb); in test()
56 assert(jb[0] == 0); in test()
57 assert(jb[1] == 1); in test()
Dunique_copy_pred.pass.cpp67 int jb[sb] = {-1}; in test() local
69 r = std::unique_copy(InIter(ib), InIter(ib+sb), OutIter(jb), count_equal()); in test()
70 assert(base(r) == jb + sb); in test()
71 assert(jb[0] == 0); in test()
72 assert(jb[1] == 1); in test()
/external/swiftshader/third_party/LLVM/test/CodeGen/X86/
Dcompare-inf.ll8 ; CHECK: jb
17 ; CHECK: jb
44 ; CHECK: jb
53 ; CHECK: jb
Dswitch-bt.ll8 ; CHECK-NEXT: jb
11 ; CHECK-NEXT: jb
63 ; CHECK-NEXT: jb
/external/llvm/test/CodeGen/X86/
Dbt.ll25 ; CHECK-NEXT: jb .LBB0_2
45 ; CHECK-NEXT: jb .LBB1_2
65 ; CHECK-NEXT: jb .LBB2_2
85 ; CHECK-NEXT: jb .LBB3_2
105 ; CHECK-NEXT: jb .LBB4_2
125 ; CHECK-NEXT: jb .LBB5_2
425 ; CHECK-NEXT: jb .LBB20_2
445 ; CHECK-NEXT: jb .LBB21_2
465 ; CHECK-NEXT: jb .LBB22_2
485 ; CHECK-NEXT: jb .LBB23_2
[all …]
Dcompare-inf.ll10 ; CHECK: jb
25 ; CHECK: jb
70 ; CHECK: jb
85 ; CHECK: jb
Dhipe-prologue.ll29 ; X32-Linux-NEXT: jb .LBB1_1
39 ; X64-Linux-NEXT: jb .LBB1_1
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/
Dcompare-inf.ll10 ; CHECK: jb
25 ; CHECK: jb
70 ; CHECK: jb
85 ; CHECK: jb
Dbt.ll30 ; X86-NEXT: jb .LBB0_2
39 ; X64-NEXT: jb .LBB0_2
104 ; X86-NEXT: jb .LBB2_2
113 ; X64-NEXT: jb .LBB2_2
758 ; X86-NEXT: jb .LBB20_2
767 ; X64-NEXT: jb .LBB20_2
794 ; X86-NEXT: jb .LBB21_2
803 ; X64-NEXT: jb .LBB21_2
830 ; X86-NEXT: jb .LBB22_2
839 ; X64-NEXT: jb .LBB22_2
[all …]
Dsqrt-partial.ll16 ; CHECK-NEXT: jb .LBB0_2
31 ; CHECK-NEXT: jb .LBB1_2
Dsjlj-eh.ll68 ; CHECK: jb [[CONT:LBB[0-9]+_[0-9]+]]
116 ; CHECK-X64: jb .[[CONT:LBB[0-9]+_[0-9]+]]
130 ; CHECK-X64-LINUX: jb .[[CONT:LBB[0-9]+_[0-9]+]]
/external/libjpeg-turbo/simd/i386/
Djdcolext-mmx.asm246 jb short .column_st16
265 jb short .column_st8
274 jb short .column_st4
282 jb short .column_st2
290 jb short .column_st1
297 jb short .nextrow
334 jb short .column_st16
353 jb short .column_st8
362 jb short .column_st4
369 jb short .nextrow
Djdcolext-sse2.asm258 jb short .column_st32
285 jb short .column_st16
294 jb short .column_st15
303 jb short .column_st7
312 jb short .column_st3
322 jb short .column_st1
368 jb short .column_st32
396 jb short .column_st16
405 jb short .column_st15
414 jb short .column_st7
Djdcolext-avx2.asm278 jb short .column_st64
305 jb short .column_st32
314 jb short .column_st31
322 jb short .column_st15
331 jb short .column_st7
340 jb short .column_st3
350 jb short .column_st1
417 jb short .column_st64
445 jb short .column_st32
454 jb short .column_st16
[all …]
/external/libjpeg-turbo/simd/x86_64/
Djdcolext-sse2.asm245 jb short .column_st32
271 jb short .column_st16
280 jb short .column_st15
289 jb short .column_st7
298 jb short .column_st3
308 jb short .column_st1
354 jb short .column_st32
381 jb short .column_st16
390 jb short .column_st15
399 jb short .column_st7
Djdcolext-avx2.asm265 jb short .column_st64
291 jb short .column_st32
300 jb short .column_st31
308 jb short .column_st15
317 jb short .column_st7
326 jb short .column_st3
336 jb short .column_st1
403 jb short .column_st64
430 jb short .column_st32
439 jb short .column_st16
[all …]
/external/swiftshader/third_party/subzero/tests_lit/llvm2ice_tests/
D64bit.pnacl.ll1557 ; CHECK: jb
1567 ; OPTM1: jb
1643 ; CHECK: jb
1644 ; CHECK: jb
1648 ; CHECK: jb
1653 ; OPTM1: jb
1728 ; CHECK: jb
1738 ; OPTM1: jb
1740 ; OPTM1: jb
1744 ; OPTM1: jb
[all …]

12345678910>>...18