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

1 2 3 4 5 6 7 8 910

  /bionic/libc/bionic/
malloc_debug_backtrace.h 34 #define GET_BACKTRACE(bt, depth) \
35 (g_backtrace_enabled ? get_backtrace(bt, depth) : 0)
  /external/iproute2/ip/
iplink_can.c 100 struct can_bittiming bt; local
103 memset(&bt, 0, sizeof(bt));
107 if (get_u32(&bt.bitrate, *argv, 0))
116 bt.sample_point = (__u32)(sp * 1000);
119 if (get_u32(&bt.tq, *argv, 0))
123 if (get_u32(&bt.prop_seg, *argv, 0))
127 if (get_u32(&bt.phase_seg1, *argv, 0))
131 if (get_u32(&bt.phase_seg2, *argv, 0))
135 if (get_u32(&bt.sjw, *argv, 0)
229 struct can_bittiming *bt = RTA_DATA(tb[IFLA_CAN_BITTIMING]); local
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
AlgorithmParametersSpiTest.java 38 byte[] bt = new byte[10];
44 algParSpi.engineInit(bt);
45 algParSpi.engineInit(bt, "Format");
  /external/chromium_org/v8/test/cctest/compiler/
test-run-machops.cc 361 Int32BinopTester bt(&m);
372 m.Branch(m.WordXor(phi, bt.param0), &body, end);
379 bt.AddReturn(phi);
381 CHECK_EQ(11, bt.call(11, 0));
382 CHECK_EQ(110, bt.call(110, 0));
383 CHECK_EQ(176, bt.call(176, 0));
389 Int32BinopTester bt(&m);
400 m.Branch(m.Int32LessThan(phi, bt.param0), &body, end);
407 bt.AddReturn(phi);
409 CHECK_EQ(11, bt.call(11, 0))
    [all...]
  /external/linux-tools-perf/perf-3.12.0/arch/sh/lib/
memcpy.S 17 bt/s 9f ! if n=0, do nothing
23 bt/s 7f ! if it's too small, copy a byte at once
57 bt/s 8b ! while (r0>r2)
71 bt/s 2f
85 bt/s 3b
90 bt/s 9b
103 bt/s 2f
125 bt/s 3b
136 bt/s 3b
142 bt/s 9
    [all...]
memset.S 17 bt/s 5f ! if n=0, do nothing
21 bt/s 4f ! if it's too small, set a byte at once
25 bt/s 2f ! It's aligned
50 bt 5f
  /external/compiler-rt/test/builtins/Unit/
divti3_test.c 30 twords bt; local
31 bt.all = b;
38 at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low,
modti3_test.c 30 twords bt; local
31 bt.all = b;
38 at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low,
subvti3_test.c 34 twords bt; local
35 bt.all = b;
42 at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low,
udivti3_test.c 30 utwords bt; local
31 bt.all = b;
38 at.s.high, at.s.low, bt.s.high, bt.s.low, qt.s.high, qt.s.low,
umodti3_test.c 30 utwords bt; local
31 bt.all = b;
38 at.s.high, at.s.low, bt.s.high, bt.s.low, rt.s.high, rt.s.low,
addvti3_test.c 33 twords bt; local
34 bt.all = b;
41 at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low,
cmpti2_test.c 32 twords bt; local
33 bt.all = b;
35 at.s.high, at.s.low, bt.s.high, bt.s.low, x, expected);
ucmpti2_test.c 32 utwords bt; local
33 bt.all = b;
36 at.s.high, at.s.low, bt.s.high, bt.s.low, x, expected);
multi3_test.c 28 twords bt; local
29 bt.all = b;
36 at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low,
  /external/clang/test/CodeGenCXX/
debug-info.cpp 116 typedef b bt; typedef in namespace:pr16214
120 bt *b_ptr_inst;
121 const bt *b_cnst_ptr_inst;
  /hardware/ti/omap4-aah/
heaptracker.c 48 intptr_t bt[MAX_BACKTRACE_DEPTH]; member in struct:hdr
99 void print_backtrace(const intptr_t *bt, int depth)
105 if (!bt) {
107 bt = self_bt;
112 mi = pc_to_mapinfo(milist, bt[cnt], &rel_pc);
114 mi ? rel_pc : bt[cnt],
280 print_backtrace(hdr->bt, hdr->bt_depth);
354 hdr->bt, MAX_BACKTRACE_DEPTH);
370 intptr_t bt[MAX_BACKTRACE_DEPTH]; local
372 depth = heaptracker_stacktrace(bt, MAX_BACKTRACE_DEPTH)
418 intptr_t bt[MAX_BACKTRACE_DEPTH]; local
    [all...]
  /hardware/ti/omap4xxx/
heaptracker.c 48 intptr_t bt[MAX_BACKTRACE_DEPTH]; member in struct:hdr
99 void print_backtrace(const intptr_t *bt, int depth)
105 if (!bt) {
107 bt = self_bt;
112 mi = pc_to_mapinfo(milist, bt[cnt], &rel_pc);
114 mi ? rel_pc : bt[cnt],
280 print_backtrace(hdr->bt, hdr->bt_depth);
354 hdr->bt, MAX_BACKTRACE_DEPTH);
370 intptr_t bt[MAX_BACKTRACE_DEPTH]; local
372 depth = heaptracker_stacktrace(bt, MAX_BACKTRACE_DEPTH)
418 intptr_t bt[MAX_BACKTRACE_DEPTH]; local
    [all...]
  /external/jemalloc/src/
prof.c 81 bt_init(prof_bt_t *bt, void **vec)
86 bt->vec = vec;
87 bt->len = 0;
91 bt_destroy(prof_bt_t *bt)
96 idalloc(bt);
100 bt_dup(prof_bt_t *bt)
114 (bt->len * sizeof(void *)));
119 memcpy(ret->vec, bt->vec, bt->len * sizeof(void *));
120 ret->len = bt->len
1213 prof_bt_t *bt = (prof_bt_t *)key; local
    [all...]
  /external/chromium_org/third_party/boringssl/src/crypto/
cpu-x86-asm.pl 23 &bt ("ecx",21);
74 &bt ("edx",28);
118 &bt ("edx",28); # test hyper-threading bit
136 &bt ("ecx",27); # check OSXSAVE bit
164 &bt (&DWP(0,"ecx"),4);
176 &bt (&DWP(0,"ecx"),4);
185 &bt ("eax",9);
216 &bt ("eax",9);
246 &bt (&DWP(0,"ecx"),1);
  /external/openssl/crypto/
x86cpuid.pl 23 &bt ("ecx",21);
72 &bt ("edx",28);
106 &bt ("edx",28); # test hyper-threading bit
124 &bt ("ecx",27); # check OSXSAVE bit
150 &bt (&DWP(0,"ecx"),4);
162 &bt (&DWP(0,"ecx"),4);
171 &bt ("eax",9);
202 &bt ("eax",9);
232 &bt (&DWP(0,"ecx"),1);
  /external/lldb/source/Utility/
SharingPtr.cpp 81 Backtrace bt; local
82 bt.GetFrames();
83 g_map[sp_this] = std::make_pair(ptr, bt);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_gdb.py 602 bt = self.get_stack_trace(script=self.get_sample_script(),
613 bt)
617 bt = self.get_stack_trace(script=self.get_sample_script(),
624 bt)
628 bt = self.get_stack_trace(script=self.get_sample_script(),
634 bt)
642 bt = self.get_stack_trace(script=self.get_sample_script(),
644 self.assertMultilineMatches(bt,
653 bt = self.get_stack_trace(script=self.get_sample_script(),
655 self.assertEndsWith(bt,
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_gdb.py 602 bt = self.get_stack_trace(script=self.get_sample_script(),
613 bt)
617 bt = self.get_stack_trace(script=self.get_sample_script(),
624 bt)
628 bt = self.get_stack_trace(script=self.get_sample_script(),
634 bt)
642 bt = self.get_stack_trace(script=self.get_sample_script(),
644 self.assertMultilineMatches(bt,
653 bt = self.get_stack_trace(script=self.get_sample_script(),
655 self.assertEndsWith(bt,
    [all...]
  /external/arduino/hardware/arduino/
boards.txt 140 bt328.name=Arduino BT w/ ATmega328
150 bt328.bootloader.path=bt
161 bt.name=Arduino BT w/ ATmega168
163 bt.upload.protocol=stk500
164 bt.upload.maximum_size=14336
165 bt.upload.speed=19200
166 bt.upload.disable_flushing=true
168 bt.bootloader.low_fuses=0xff
169 bt.bootloader.high_fuses=0xd
    [all...]

Completed in 2379 milliseconds

1 2 3 4 5 6 7 8 910