HomeSort by relevance Sort by last modified time
    Searched refs:stk (Results 1 - 25 of 158) sorted by null

1 2 3 4 5 6 7

  /prebuilts/go/darwin-x86/src/cmd/internal/obj/
line.go 50 func (stk *LineStack) fileLineAt(lineno int) int {
51 return stk.FileLine + lineno - stk.Lineno
68 // setFile sets stk.File = file and also derives stk.AbsFile.
69 func (h *LineHist) setFile(stk *LineStack, file string) {
70 // Note: The exclusion of stk.Directive may be wrong but matches what we've done before.
73 if h.Dir != "" && !filepath.IsAbs(file) && !strings.HasPrefix(file, "<") && !stk.Directive {
91 stk.AbsFile = abs
96 stk.File = fil
    [all...]
  /prebuilts/go/linux-x86/src/cmd/internal/obj/
line.go 50 func (stk *LineStack) fileLineAt(lineno int) int {
51 return stk.FileLine + lineno - stk.Lineno
68 // setFile sets stk.File = file and also derives stk.AbsFile.
69 func (h *LineHist) setFile(stk *LineStack, file string) {
70 // Note: The exclusion of stk.Directive may be wrong but matches what we've done before.
73 if h.Dir != "" && !filepath.IsAbs(file) && !strings.HasPrefix(file, "<") && !stk.Directive {
91 stk.AbsFile = abs
96 stk.File = fil
    [all...]
  /external/linux-kselftest/tools/testing/selftests/sigaltstack/
sas.c 37 stack_t stk; local
54 err = sigaltstack(NULL, &stk);
59 if (stk.ss_flags != SS_DISABLE)
61 stk.ss_flags);
101 stack_t stk; local
117 err = sigaltstack(NULL, &stk);
122 if (stk.ss_flags == SS_DISABLE) {
125 printf("[FAIL]\tInitial sigaltstack state was %i; should have been SS_DISABLE\n", stk.ss_flags);
129 stk.ss_sp = sstack;
130 stk.ss_size = SIGSTKSZ
    [all...]
  /external/valgrind/memcheck/tests/
sigaltstack.c 21 char *stk = (char *)mmap(0, size, PROT_READ|PROT_WRITE|PROT_EXEC, local
23 sigstk.ss_sp = stk;
  /packages/apps/Stk/src/com/android/stk/
StkDigitsKeyListener.java 17 package com.android.stk;
StkApp.java 17 package com.android.stk;
24 * Top-level Application class for STK app.
45 public static final String TAG = "STK App";
  /prebuilts/go/darwin-x86/src/runtime/
os_netbsd_386.go 9 func lwp_mcontext_init(mc *mcontextt, stk unsafe.Pointer, mp *m, gp *g, fn uintptr) {
12 mc.__gregs[_REG_UESP] = uint32(uintptr(stk))
os_netbsd_amd64.go 9 func lwp_mcontext_init(mc *mcontextt, stk unsafe.Pointer, mp *m, gp *g, fn uintptr) {
12 mc.__gregs[_REG_RSP] = uint64(uintptr(stk))
runtime_unix_test.go 45 stk := make([]runtime.StackRecord, 128)
47 _, ok := runtime.GoroutineProfile(stk)
mprof.go 124 // stk returns the slice in b holding the stack.
125 func (b *bucket) stk() []uintptr { func
126 stk := (*[maxStack]uintptr)(add(unsafe.Pointer(b), unsafe.Sizeof(*b)))
127 return stk[:b.nstk:b.nstk]
148 // Return the bucket for stk[0:nstk], allocating new bucket if needed.
149 func stkbucket(typ bucketType, size uintptr, stk []uintptr, alloc bool) *bucket {
159 for _, pc := range stk {
174 if b.typ == typ && b.hash == h && b.size == size && eqslice(b.stk(), stk) {
184 b := newBucket(typ, len(stk))
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
os_netbsd_386.go 9 func lwp_mcontext_init(mc *mcontextt, stk unsafe.Pointer, mp *m, gp *g, fn uintptr) {
12 mc.__gregs[_REG_UESP] = uint32(uintptr(stk))
os_netbsd_amd64.go 9 func lwp_mcontext_init(mc *mcontextt, stk unsafe.Pointer, mp *m, gp *g, fn uintptr) {
12 mc.__gregs[_REG_RSP] = uint64(uintptr(stk))
runtime_unix_test.go 45 stk := make([]runtime.StackRecord, 128)
47 _, ok := runtime.GoroutineProfile(stk)
  /prebuilts/go/darwin-x86/misc/nacl/
mkzip.go 120 var stk []stack
138 for len(stk) > 0 && depth <= stk[len(stk)-1].depth {
139 stk = stk[:len(stk)-1]
143 if len(stk) > 0 {
144 parent = stk[len(stk)-1].nam
    [all...]
  /prebuilts/go/linux-x86/misc/nacl/
mkzip.go 120 var stk []stack
138 for len(stk) > 0 && depth <= stk[len(stk)-1].depth {
139 stk = stk[:len(stk)-1]
143 if len(stk) > 0 {
144 parent = stk[len(stk)-1].nam
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_deadlock_detector1.cc 95 m->stk = cb->Unwind();
148 rep->loop[i].stk[0] = stk_to;
149 rep->loop[i].stk[1] = stk_from;
155 u32 stk = 0; local
157 stk = cb->Unwind();
158 // Printf("T%p MutexLock: %zx stk %u\n", lt, m->id, stk);
159 if (dd.onFirstLock(&lt->dd, m->id, stk))
161 if (dd.onLockFast(&lt->dd, m->id, stk))
169 dd.addEdges(&lt->dd, m->id, stk ? stk : cb->Unwind(), cb->UniqueTid())
    [all...]
sanitizer_deadlock_detector.h 60 bool addLock(uptr lock_id, uptr current_epoch, u32 stk) {
61 // Printf("addLock: %zx %zx stk %u\n", lock_id, current_epoch, stk);
72 LockWithContext l = {lock_id_short, stk};
105 return all_locks_with_contexts_[i].stk;
124 u32 stk; member in struct:__sanitizer::DeadlockDetectorTLS::LockWithContext
217 void onLockAfter(DeadlockDetectorTLS<BV> *dtls, uptr cur_node, u32 stk = 0) {
220 dtls->addLock(cur_idx, current_epoch_, stk);
244 uptr addEdges(DeadlockDetectorTLS<BV> *dtls, uptr cur_node, u32 stk,
254 dtls->findLockContext(added_edges[i]), stk,
307 dtls->addLock(nodeToIndexUnchecked(node), nodeToEpoch(node), stk); local
342 dtls->addLock(nodeToIndexUnchecked(node), nodeToEpoch(node), stk); local
    [all...]
sanitizer_deadlock_detector_interface.h 38 u32 stk; // creation stack member in struct:__sanitizer::DDMutex
60 u32 stk[2]; // stack ids for the edge member in struct:__sanitizer::DDReport::__anon16080
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
regexec.c 401 stk = stk_base;\
409 stk = stk_base;\
441 OnigStackType *x, *stk_base, *stk_end, *stk; local
445 stk = *arg_stk;
471 *arg_stk = x + (stk - stk_base);
478 if (stk_end - stk < (n)) {\
479 int r = stack_double(&stk_base, &stk_end, &stk, stk_alloc, msa);\
485 #define GET_STACK_INDEX(stk) ((OnigStackIndex)((stk) - stk_base))
489 stk->type = (stack_type);\
1265 OnigStackType *stk_alloc, *stk_base, *stk, *stk_end; local
    [all...]
  /external/compiler-rt/lib/tsan/dd/
dd_rtl.cc 32 static void PrintStackTrace(Thread *thr, u32 stk) {
33 StackTrace stack = StackDepotGet(stk);
48 PrintStackTrace(thr, rep->loop[i].stk[1]);
49 if (rep->loop[i].stk[0]) {
52 PrintStackTrace(thr, rep->loop[i].stk[0]);
  /external/libunwind/tests/
Gtest-bt.c 212 stack_t stk; local
233 stk.ss_sp = malloc (SIG_STACK_SIZE);
234 if (!stk.ss_sp)
236 stk.ss_size = SIG_STACK_SIZE;
237 stk.ss_flags = 0;
238 if (sigaltstack (&stk, NULL) < 0)
257 stk.ss_flags = SS_DISABLE;
258 sigaltstack (&stk, NULL);
259 free (stk.ss_sp);
Gtest-trace.c 226 stack_t stk; local
247 stk.ss_sp = malloc (SIG_STACK_SIZE);
248 if (!stk.ss_sp)
250 stk.ss_size = SIG_STACK_SIZE;
251 stk.ss_flags = 0;
252 if (sigaltstack (&stk, NULL) < 0)
272 stk.ss_flags = SS_DISABLE;
273 sigaltstack (&stk, NULL);
274 free (stk.ss_sp);
  /external/pdfium/third_party/libopenjpeg20/
tgt.c 261 opj_tgt_node_t *stk[31]; local
266 stkptr = stk;
294 if (stkptr == stk)
301 opj_tgt_node_t *stk[31]; local
306 stkptr = stk;
328 if (stkptr == stk) {
  /prebuilts/go/darwin-x86/src/runtime/pprof/internal/protopprof/
protopprof.go 55 stk := data[2 : 2+nstk]
58 if count == 0 && nstk == 1 && stk[0] == 0 {
63 sloc := make([]*profile.Location, len(stk))
64 for i, addr := range stk {
  /prebuilts/go/linux-x86/src/runtime/pprof/internal/protopprof/
protopprof.go 55 stk := data[2 : 2+nstk]
58 if count == 0 && nstk == 1 && stk[0] == 0 {
63 sloc := make([]*profile.Location, len(stk))
64 for i, addr := range stk {

Completed in 2454 milliseconds

1 2 3 4 5 6 7