HomeSort by relevance Sort by last modified time
    Searched defs:lr (Results 1 - 25 of 198) sorted by null

1 2 3 4 5 6 7 8

  /external/clang/test/Modules/
diamond-pch.c 23 struct left_and_right lr; local
24 lr.left = 17;
diamond.c 24 struct left_and_right lr; local
25 lr.left = 17;
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_fmaf.c 46 uint32_t hr, lr; local
50 EXTRACT_WORDS(hr, lr, result);
52 if ((lr & 0x1fffffff) != 0x10000000 || /* not a halfway case */
67 SET_LOW_WORD(adjusted_result, lr + 1);
  /external/clang/test/PCH/
cxx-reference.h 3 typedef char (&LR);
8 char &lr = c; variable
10 LR &lrlr = c;
11 LR &&rrlr = c;
  /libcore/luni/src/test/java/libcore/java/util/logging/
OldLogRecordTest.java 28 private LogRecord lr = new LogRecord(Level.CONFIG, MSG); field in class:OldLogRecordTest
31 long before = lr.getMillis();
43 assertSame(lr.getLevel(), Level.CONFIG);
44 lr.setLevel(Level.ALL);
45 assertSame(lr.getLevel(), Level.ALL);
46 lr.setLevel(Level.FINEST);
47 assertSame(lr.getLevel(), Level.FINEST);
51 lr.getThreadID();
70 assertTrue(lr.getThreadID() != thread.lr.getThreadID())
76 public LogRecord lr = null; \/\/will be update by the thread field in class:OldLogRecordTest.MockThread
    [all...]
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
LogRecordTest.java 37 private LogRecord lr; field in class:LogRecordTest
43 lr = new LogRecord(Level.CONFIG, MSG);
64 assertNull(lr.getLoggerName());
65 lr.setLoggerName(null);
66 assertNull(lr.getLoggerName());
67 lr.setLoggerName("test logger name");
68 assertEquals("test logger name", lr.getLoggerName());
72 assertNull(lr.getResourceBundleName());
73 assertNull(lr.getResourceBundle());
75 lr.setResourceBundle(null)
    [all...]
XMLFormatterTest.java 42 LogRecord lr = null; field in class:XMLFormatterTest
48 lr = new LogRecord(Level.SEVERE, "pattern");
57 lr.setResourceBundle(rb);
58 lr.setMessage("pattern");
59 String result = formatter.format(lr);
64 lr.setMessage("msg");
65 result = formatter.format(lr);
70 lr.setMessage("pattern {0, number}");
71 result = formatter.format(lr);
76 lr.setMessage("bad key")
    [all...]
SimpleFormatterTest.java 35 LogRecord lr; field in class:SimpleFormatterTest
45 lr = new LogRecord(Level.FINE, MSG);
61 lr.setResourceBundle(rb);
62 lr.setMessage("msg");
64 String str = sf.format(lr);
68 lr.setResourceBundle(null);
69 lr.setResourceBundleName("bundles/com/android/java/util/logging/res");
70 lr.setMessage("msg");
71 str = sf.format(lr);
77 String str = sf.format(lr);
    [all...]
  /external/adhd/cras/src/tests/
linear_resampler_unittest.cc 24 struct linear_resampler *lr; local
34 lr = linear_resampler_create(2, 4, 48000, 48001);
37 rc = linear_resampler_resample(lr, in_buf + 4 * in_offset, &count,
45 rc = linear_resampler_resample(lr, in_buf + 4 * in_offset, &count,
64 struct linear_resampler *lr; local
74 lr = linear_resampler_create(2, 4, 10, 11);
77 rc = linear_resampler_resample(lr, in_buf + 4 * in_offset, &count,
87 rc = linear_resampler_resample(lr, in_buf + 4 * in_offset, &count,
95 rc = linear_resampler_resample(lr, in_buf + 4 * in_offset, &count,
114 struct linear_resampler *lr; local
160 struct linear_resampler *lr; local
178 struct linear_resampler *lr; local
    [all...]
  /external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/
LineRegionTest.java 39 LineRegion lr = new LineRegion(0d, 0d); local
40 assertEquals(0d, lr.getMinVal());
41 assertEquals(0d, lr.getMaxVal());
43 lr = new LineRegion(1.5d, -2d);
44 assertEquals(-2d, lr.getMinVal());
45 assertEquals(1.5d, lr.getMaxVal());
47 lr = new LineRegion(10d, 20d);
48 assertEquals(10d, lr.getMinVal());
49 assertEquals(20d, lr.getMaxVal());
78 LineRegion lr = new LineRegion(0, 10); local
    [all...]
  /external/libunwind/src/aarch64/
Gstep.c 134 * in the middle of nowhere. In this case, try using the lr as
137 unw_word_t lr; local
138 if (dwarf_get(&c->dwarf, c->dwarf.loc[UNW_AARCH64_X30], &lr) >= 0)
140 if (lr != c->dwarf.ip)
143 c->dwarf.ip = lr;
  /prebuilts/go/darwin-x86/src/runtime/
defs_plan9_386.go 36 func (c *sigctxt) lr() uintptr { return uintptr(0) } func
defs_plan9_amd64.go 45 func (c *sigctxt) lr() uintptr { return uintptr(0) } func
defs_plan9_arm.go 39 func (c *sigctxt) lr() uintptr { return uintptr(c.u.link) } func
  /prebuilts/go/linux-x86/src/runtime/
defs_plan9_386.go 36 func (c *sigctxt) lr() uintptr { return uintptr(0) } func
defs_plan9_amd64.go 45 func (c *sigctxt) lr() uintptr { return uintptr(0) } func
defs_plan9_arm.go 39 func (c *sigctxt) lr() uintptr { return uintptr(c.u.link) } func
  /external/clang/test/CXX/expr/
p9.cpp 45 long &lr = l0; variable
  /system/netd/server/
PppController.cpp 85 char *lr; local
87 asprintf(&lr, "%s:%s", l, r);
96 lr, "ms-dns", d1, "ms-dns", d2, "lcp-max-configure", "99999", (char *) NULL)) {
99 free(lr);
  /device/google/contexthub/firmware/os/cpu/cortexm4/inc/cpu/
pendsv.h 27 uint32_t r12, lr, pc, cpsr; member in struct:PendsvRegsLow
  /external/adhd/cras/src/server/
linear_resampler.c 35 struct linear_resampler *lr; local
37 lr = (struct linear_resampler *)calloc(1, sizeof(*lr));
38 if (!lr)
40 lr->num_channels = num_channels;
41 lr->format_bytes = format_bytes;
43 linear_resampler_set_rates(lr, src_rate, dst_rate);
45 return lr;
48 void linear_resampler_destroy(struct linear_resampler *lr)
50 if (lr)
    [all...]
  /external/google-breakpad/src/google_breakpad/common/
minidump_cpu_ppc64.h 104 uint64_t lr; /* Link */ member in struct:__anon20826
  /external/iw/
link.c 22 static struct link_result lr = { .link_found = false }; variable in typeref:struct:link_result
109 nl_cb_set(cb, NL_CB_VALID, NL_CB_CUSTOM, link_bss_handler, &lr);
257 if (!lr.link_found) {
258 if (!lr.anything_found)
263 mac_addr_n2a(bssid_buf, lr.bssid);
  /external/libunwind/src/arm/
Gstep.c 298 * in the middle of nowhere. In this case, try using the lr as
301 unw_word_t lr; local
302 if (dwarf_get(&c->dwarf, c->dwarf.loc[UNW_ARM_R14], &lr) >= 0)
304 if (lr != c->dwarf.ip)
307 c->dwarf.ip = lr;
  /external/llvm/lib/Target/AArch64/
AArch64PBQPRegAlloc.cpp 269 const LiveInterval &lr = LIs.getInterval(r); local
270 if (ld.overlaps(lr)) {

Completed in 309 milliseconds

1 2 3 4 5 6 7 8