HomeSort by relevance Sort by last modified time
    Searched full:lifetime (Results 1 - 25 of 819) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/test/Transforms/Inline/
lifetime.ll 3 declare void @llvm.lifetime.start(i64, i8*)
4 declare void @llvm.lifetime.end(i64, i8*)
8 call void @llvm.lifetime.start(i64 1, i8* %a)
9 call void @llvm.lifetime.end(i64 1, i8* %a)
15 ; CHECK: llvm.lifetime.start(i64 1
16 ; CHECK-NEXT: llvm.lifetime.end(i64 1
18 ; CHECK-NEXT: llvm.lifetime.start(i64 1
19 ; CHECK-NEXT: llvm.lifetime.end(i64 1
26 ;; any lifetime markers.
36 ;; Instead, we use CHECK-NOT to verify that there are no other lifetime calls
    [all...]
  /external/llvm/test/Transforms/SimplifyCFG/
lifetime.ll 3 ; Test that a lifetime intrinsic doesn't prevent us from simplifying this.
13 call void @llvm.lifetime.start(i64 -1, i8* %a) nounwind
17 call void @llvm.lifetime.end(i64 -1, i8* %a) nounwind
27 declare void @llvm.lifetime.start(i64, i8* nocapture) nounwind
29 declare void @llvm.lifetime.end(i64, i8* nocapture) nounwind
  /external/llvm/test/Transforms/DeadStoreElimination/
lifetime.ll 5 declare void @llvm.lifetime.start(i64, i8* nocapture) nounwind
6 declare void @llvm.lifetime.end(i64, i8* nocapture) nounwind
14 call void @llvm.lifetime.end(i64 1, i8* %A)
15 ; CHECK: lifetime.end
28 call void @llvm.lifetime.start(i64 4, i8* %R)
29 ; CHECK: lifetime.start
32 call void @llvm.lifetime.end(i64 4, i8* %R)
33 ; CHECK: lifetime.end
dominate.ll 12 call void @llvm.lifetime.end(i64 -1, i8* %0)
17 call void @llvm.lifetime.end(i64 -1, i8* %0)
25 declare void @llvm.lifetime.end(i64, i8* nocapture) nounwind
  /external/llvm/test/Transforms/GVN/
lifetime-simple.ll 7 ; CHECK: lifetime.start
9 ; CHECK: lifetime.end
11 call void @llvm.lifetime.start(i64 32, i8* %P)
14 call void @llvm.lifetime.end(i64 32, i8* %P)
19 declare void @llvm.lifetime.start(i64 %S, i8* nocapture %P) readonly
20 declare void @llvm.lifetime.end(i64 %S, i8* nocapture %P)
  /external/llvm/test/Transforms/Mem2Reg/
ignore-lifetime.ll 3 declare void @llvm.lifetime.start(i64 %size, i8* nocapture %ptr)
4 declare void @llvm.lifetime.end(i64 %size, i8* nocapture %ptr)
11 call void @llvm.lifetime.start(i64 2, i8* %B)
13 call void @llvm.lifetime.end(i64 2, i8* %B)
22 call void @llvm.lifetime.start(i64 2, i8* %B)
24 call void @llvm.lifetime.end(i64 2, i8* %B)
  /external/clang/test/CodeGen/
lifetime.c 18 // O0-NOT: @llvm.lifetime.start
19 // O1: @llvm.lifetime.start
20 // O2: @llvm.lifetime.start
21 // O3: @llvm.lifetime.start
  /external/llvm/test/Transforms/InstCombine/
deadcode.ll 25 declare void @llvm.lifetime.start(i64, i8*)
26 declare void @llvm.lifetime.end(i64, i8*)
29 call void @llvm.lifetime.start(i64 -1, i8* undef)
30 call void @llvm.lifetime.end(i64 -1, i8* undef)
malloc-free-delete.ll 27 declare void @llvm.lifetime.start(i64, i8*)
28 declare void @llvm.lifetime.end(i64, i8*)
34 call void @llvm.lifetime.start(i64 10, i8* %a)
35 call void @llvm.lifetime.end(i64 10, i8* %a)
  /external/llvm/test/Transforms/ScalarRepl/
lifetime.ll 6 declare void @llvm.lifetime.start(i64, i8*)
7 declare void @llvm.lifetime.end(i64, i8*)
19 call void @llvm.lifetime.start(i64 -1, i8* %B)
32 call void @llvm.lifetime.start(i64 -1, i8* %B)
46 call void @llvm.lifetime.start(i64 6, i8* %B)
60 call void @llvm.lifetime.start(i64 1, i8* %B)
89 call void @llvm.lifetime.start(i64 5, i8* %A2)
90 ; CHECK: llvm.lifetime{{.*}}i64 1
91 ; CHECK: llvm.lifetime{{.*}}i64 1
92 ; CHECK: llvm.lifetime{{.*}}i64
    [all...]
  /external/ipsec-tools/src/racoon/samples/
racoon.conf.sample-inherit 38 lifetime time 1 min; # sec,min,hour
51 lifetime time 12 hour;
racoon.conf.sample 29 lifetime time 24 hour ; # sec,min,hour
43 # to obey the initiator's lifetime and PFS group proposal,
57 lifetime time 12 hour ;
  /external/e2fsprogs/tests/
filter_dumpe2fs 11 /^Lifetime writes:/d
  /external/ipsec-tools/src/racoon/samples/roadwarrior/server/
racoon.conf 37 lifetime time 1 hour;
racoon.conf-radius 37 lifetime time 1 hour;
  /external/llvm/test/Feature/
memorymarkers.ll 7 declare void @llvm.lifetime.start(i64, i8* nocapture) nounwind
8 declare void @llvm.lifetime.end(i64, i8* nocapture) nounwind
19 call void @llvm.lifetime.start(i64 8, i8* %y)
34 call void @llvm.lifetime.end(i64 8, i8* %y)
  /external/valgrind/main/none/tests/
manythreads.c 1 /* Make sure there are no thread lifetime related leaks... */
  /external/clang/test/SemaObjC/
arc-jump-block.m 22 dispatch_async((&_dispatch_main_q), ^{ [self pageLeft]; }); // expected-note 3 {{jump enters lifetime of block which strongly captures a variable}}
25 dispatch_async((&_dispatch_main_q), ^{ [self pageRight]; }); // expected-note 2 {{jump enters lifetime of block which strongly captures a variable}}
87 int test2(id obj, int state) { // expected-note {{jump enters lifetime of block}} FIXME: wierd location
  /external/chromium/chrome/browser/
app_controller_cppsafe_mac.h 15 // different models of application lifetime.
  /external/chromium/net/proxy/
proxy_resolver_request_context.h 19 // this instance's lifetime.
  /external/ipsec-tools/src/racoon/samples/roadwarrior/client/
racoon.conf 29 lifetime time 1 hour;
  /external/valgrind/main/helgrind/tests/
tc02_simple_tls.c 8 thread lifetime segment handling. */
  /external/wpa_supplicant_6/wpa_supplicant/src/rsn_supp/
peerkey.c 398 be32 lifetime; local
401 2 + RSN_SELECTOR_LEN + sizeof(lifetime);
432 lifetime = host_to_be32(peerkey->lifetime);
434 (u8 *) &lifetime, sizeof(lifetime));
531 u32 lifetime; local
549 kde.lifetime == NULL || kde.lifetime_len < 4) {
551 "Lifetime KDE in SMK M4/M5");
581 lifetime = WPA_GET_BE32(kde.lifetime)
677 be32 lifetime; local
749 u32 lifetime; local
    [all...]
  /external/wpa_supplicant_8/src/rsn_supp/
peerkey.c 393 be32 lifetime; local
396 2 + RSN_SELECTOR_LEN + sizeof(lifetime);
427 lifetime = host_to_be32(peerkey->lifetime);
429 (u8 *) &lifetime, sizeof(lifetime));
526 u32 lifetime; local
544 kde.lifetime == NULL || kde.lifetime_len < 4) {
546 "Lifetime KDE in SMK M4/M5");
576 lifetime = WPA_GET_BE32(kde.lifetime)
674 be32 lifetime; local
746 u32 lifetime; local
    [all...]
  /external/chromium/base/memory/
scoped_native_library.h 27 // Opens the given library and manages its lifetime.
42 // caller must manage the lifetime of the handle.

Completed in 605 milliseconds

1 2 3 4 5 6 7 8 91011>>