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

1 2 3 4 5 6 7 8 91011>>

  /external/strace/tests/
sysinfo.c 42 TAIL_ALLOC_OBJECT_CONST_PTR(struct sysinfo, si);
44 if (sysinfo(si))
59 , (unsigned long long) si->uptime
60 , (unsigned long long) si->loads[0]
61 , (unsigned long long) si->loads[1]
62 , (unsigned long long) si->loads[2]
63 , (unsigned long long) si->totalram
64 , (unsigned long long) si->freeram
65 , (unsigned long long) si->sharedram
66 , (unsigned long long) si->bufferra
    [all...]
  /external/strace/tests-m32/
sysinfo.c 42 TAIL_ALLOC_OBJECT_CONST_PTR(struct sysinfo, si);
44 if (sysinfo(si))
59 , (unsigned long long) si->uptime
60 , (unsigned long long) si->loads[0]
61 , (unsigned long long) si->loads[1]
62 , (unsigned long long) si->loads[2]
63 , (unsigned long long) si->totalram
64 , (unsigned long long) si->freeram
65 , (unsigned long long) si->sharedram
66 , (unsigned long long) si->bufferra
    [all...]
  /external/strace/tests-mx32/
sysinfo.c 42 TAIL_ALLOC_OBJECT_CONST_PTR(struct sysinfo, si);
44 if (sysinfo(si))
59 , (unsigned long long) si->uptime
60 , (unsigned long long) si->loads[0]
61 , (unsigned long long) si->loads[1]
62 , (unsigned long long) si->loads[2]
63 , (unsigned long long) si->totalram
64 , (unsigned long long) si->freeram
65 , (unsigned long long) si->sharedram
66 , (unsigned long long) si->bufferra
    [all...]
  /external/strace/
sysinfo.c 44 sysinfo_t si; local
49 if (!umove_or_printaddr(tcp, tcp->u_arg[0], &si)) {
63 zero_extend_signed_to_ull(si.uptime)
64 , zero_extend_signed_to_ull(si.loads[0])
65 , zero_extend_signed_to_ull(si.loads[1])
66 , zero_extend_signed_to_ull(si.loads[2])
67 , zero_extend_signed_to_ull(si.totalram)
68 , zero_extend_signed_to_ull(si.freeram)
69 , zero_extend_signed_to_ull(si.sharedram)
70 , zero_extend_signed_to_ull(si.bufferram
    [all...]
  /external/syslinux/com32/samples/
serialinfo.c 26 const struct syslinux_serial_console_info *si; local
36 si = syslinux_serial_console_info();
38 printf("Serial port base: %#06x\n", si->iobase);
39 printf("Serial port divisor: %5d", si->divisor);
40 if (si->divisor)
41 printf(" (%d baud)", 115200 / si->divisor);
42 printf("\n" "Flow control bits: %#05x\n", si->flowctl);
  /external/clang/test/CodeGen/
unsigned-promotion.c 9 unsigned short si, sj, sk; variable
33 si = sj + sk;
55 si = sj - sk;
76 si = sj * sk;
  /external/syslinux/efi/
console.c 74 static int setup_gop(struct screen_info *si)
142 si->orig_video_isVGA = 0x70; /* EFI framebuffer */
144 si->lfb_base = lfb_base;
145 si->lfb_size = lfb_size;
146 si->lfb_width = lfb_width;
147 si->lfb_height = lfb_height;
148 si->pages = 1;
153 si->lfb_depth = 32;
154 si->lfb_linelength = pixel_scanline * 4;
155 si->red_size = 8
    [all...]
  /external/valgrind/memcheck/tests/linux/
sigqueue.c 13 siginfo_t *si; local
14 const size_t sz = sizeof(*si);
17 fprintf(stderr, "sizeof(*si) = %zu\n", sz);
27 si = calloc(1, sz);
28 si->si_signo = SIGWINCH;
29 si->si_code = SI_QUEUE;
30 si->si_pid = getpid();
31 si->si_uid = getuid();
32 syscall(__NR_rt_sigqueueinfo, getpid(), SIGWINCH, si);
33 free(si);
    [all...]
  /bionic/linker/
linker_cfi.cpp 134 for (soinfo* si = solist; si != nullptr; si = si->next) {
135 const char* soname = si->get_soname();
137 return si;
143 static uintptr_t soinfo_find_symbol(soinfo* si, const char* s) {
146 if (si->find_symbol_by_name(name, nullptr, &sym) && sym) {
147 return si->resolve_symbol_address(sym);
152 uintptr_t soinfo_find_cfi_check(soinfo* si) {
283 soinfo* si = find_containing_library(CallerPc); local
    [all...]
linker_namespaces.cpp 63 auto is_accessible_ftor = [this] (soinfo* si) {
66 if (!si->has_min_version(3)) {
68 si->get_soname());
72 if (si->get_primary_namespace() == this) {
76 const android_namespace_list_t& secondary_namespaces = si->get_secondary_namespaces();
88 return !s->get_parents().visit([&](soinfo* si) {
89 return !is_accessible_ftor(si);
102 soinfo_list().for_each([&](soinfo* si) {
103 if ((si->get_dt_flags_1() & DF_1_GLOBAL) != 0) {
104 global_group.push_back(si);
    [all...]
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
pvmp3_get_side_info.cpp 38 mp3SideInfo *si,
45 mp3SideInfo *si, side information
115 mp3SideInfo *si,
129 si->main_data_begin = (tmp << 18) >> 23; /* 9 */
130 si->private_bits = (tmp << 23) >> 27; /* 5 */
135 si->main_data_begin = (tmp << 20) >> 23; /* 9 */
136 si->private_bits = (tmp << 23) >> 29; /* 3 */
143 si->ch[ch].scfsi[0] = (tmp << 28) >> 31; /* 1 */
144 si->ch[ch].scfsi[1] = (tmp << 29) >> 31; /* 1 */
145 si->ch[ch].scfsi[2] = (tmp << 30) >> 31; /* 1 *
    [all...]
  /cts/tests/tests/shortcutmanager/src/android/content/pm/cts/shortcutmanager/
ShortcutManagerClientApiTest.java 134 ShortcutInfo si = new ShortcutInfo.Builder(getTestContext(), "id")
136 assertTrue(getManager().setDynamicShortcuts(list(si)));
142 ShortcutInfo si = new ShortcutInfo.Builder(getTestContext(), "id")
145 assertTrue(getManager().addDynamicShortcuts(list(si)));
149 ShortcutInfo si = new ShortcutInfo.Builder(getTestContext(), "id")
153 assertTrue(getManager().setDynamicShortcuts(list(si)));
158 ShortcutInfo si = new ShortcutInfo.Builder(getTestContext(), "id")
162 assertTrue(getManager().addDynamicShortcuts(list(si)));
167 ShortcutInfo si = new ShortcutInfo.Builder(getTestContext(), "id")
170 assertTrue(getManager().setDynamicShortcuts(list(si)));
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/pm/
ShortcutManagerTest2.java 149 ShortcutInfo si = new ShortcutInfo.Builder(getTestContext(), "id")
152 assertTrue(getManager().setDynamicShortcuts(list(si)));
158 ShortcutInfo si = new ShortcutInfo.Builder(getTestContext(), "id")
161 assertTrue(getManager().addDynamicShortcuts(list(si)));
165 ShortcutInfo si = new ShortcutInfo.Builder(getTestContext(), "id")
169 assertTrue(getManager().setDynamicShortcuts(list(si)));
174 ShortcutInfo si = new ShortcutInfo.Builder(getTestContext(), "id")
178 assertTrue(getManager().addDynamicShortcuts(list(si)));
183 ShortcutInfo si = new ShortcutInfo.Builder(getTestContext(), "id")
186 assertTrue(getManager().setDynamicShortcuts(list(si)));
228 ShortcutInfo si = parceled(new ShortcutInfo.Builder(mClientContext) local
288 ShortcutInfo si; local
358 ShortcutInfo si = sorig.clone(\/* clone flags*\/ 0); local
465 ShortcutInfo si = sorig.clone(\/* clone flags*\/ 0); local
569 ShortcutInfo si = sorig.clone(\/* clone flags*\/ 0); local
623 ShortcutInfo si; local
745 ShortcutInfo si; local
902 ShortcutInfo si; local
    [all...]
  /external/llvm/test/MC/X86/
address-size.s 10 movb $0x0, (%si)
14 movw $0x1234, (%si)
16 movl $0x12345678, (%bx,%si,1)
22 movb $0x0, (%si)
  /external/valgrind/coregrind/m_coredump/
coredump-macho.c 38 void VG_(make_coredump)(ThreadId tid, const vki_siginfo_t *si, ULong max_size)
  /external/valgrind/coregrind/
pub_core_coredump.h 41 extern void VG_(make_coredump) ( ThreadId tid, const vki_siginfo_t *si,
  /external/libffi/testsuite/libffi.call/
struct3.c 12 int si; member in struct:__anon24826
17 ts.si = -(ts.si*2);
49 ts3_arg.si = -123;
50 compare_value = ts3_arg.si;
54 printf ("%d %d\n", ts3_result->si, -(compare_value*2));
56 CHECK(ts3_result->si == -(compare_value*2));
  /external/python/cpython2/Modules/_ctypes/libffi/testsuite/libffi.call/
struct3.c 12 int si; member in struct:__anon32679
17 ts.si = -(ts.si*2);
49 ts3_arg.si = -123;
50 compare_value = ts3_arg.si;
54 printf ("%d %d\n", ts3_result->si, -(compare_value*2));
56 CHECK(ts3_result->si == -(compare_value*2));
  /external/python/cpython3/Modules/_ctypes/libffi/testsuite/libffi.call/
struct3.c 12 int si; member in struct:__anon33273
17 ts.si = -(ts.si*2);
49 ts3_arg.si = -123;
50 compare_value = ts3_arg.si;
54 printf ("%d %d\n", ts3_result->si, -(compare_value*2));
56 CHECK(ts3_result->si == -(compare_value*2));
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/i386/
mpx-inval-2.s 5 bndcl (%bx,%si), %bnd0
7 bndcu (%bp,%si), %bnd0
11 bndmov %bnd0, (%si)
15 bndcn %si, %bnd2
21 bndcu bnd0, [si]
23 bndmk bnd0, [bx+si]
25 bndmov [bp+si], bnd0
35 bndcl (%bx,%si), %bnd0
37 bndcu (%bp,%si), %bnd0
41 bndmov %bnd0, (%si)
    [all...]
intel-regs.s 6 mov ax, eax ; add [bx+si], al
7 mov ax, rax ; add [bx+si], al
8 mov ax, axl ; add [bx+si], al
9 mov ax, r8b ; add [bx+si], al
10 mov ax, r8w ; add [bx+si], al
11 mov ax, r8d ; add [bx+si], al
12 mov ax, r8 ; add [bx+si], al
13 mov ax, fs ; add [bx+si], al
14 mov ax, st ; add [bx+si], al
15 mov ax, cr0 ; add [bx+si], a
    [all...]
  /libcore/luni/src/test/java/libcore/java/io/
OldSequenceInputStreamTest.java 29 SequenceInputStream si; field in class:OldSequenceInputStreamTest
34 assertEquals("Returned incorrect number of bytes!", s1.length(), si.available());
37 si.available() == s1.length());
40 si.available();
50 si.close();
58 si.read();
60 s1.charAt(1), (char) si.read());
66 s1.charAt(2), (char) si.read());
73 si.read();
81 si.read()
    [all...]
  /external/python/cpython2/PC/
w9xpopen.c 30 STARTUPINFO si; local
85 ZeroMemory(&si, sizeof si);
86 si.cb = sizeof si;
87 si.dwFlags = STARTF_USESTDHANDLES;
88 si.hStdInput = GetStdHandle(STD_INPUT_HANDLE);
89 si.hStdOutput = GetStdHandle(STD_OUTPUT_HANDLE);
90 si.hStdError = GetStdHandle(STD_ERROR_HANDLE);
97 &si, &p
    [all...]
  /external/jemalloc/test/include/test/
SFMT-sse2.h 89 r1 = _mm_load_si128(&ctx->sfmt[N - 2].si);
90 r2 = _mm_load_si128(&ctx->sfmt[N - 1].si);
92 r = mm_recursion(&ctx->sfmt[i].si, &ctx->sfmt[i + POS1].si, r1, r2,
94 _mm_store_si128(&ctx->sfmt[i].si, r);
99 r = mm_recursion(&ctx->sfmt[i].si, &ctx->sfmt[i + POS1 - N].si, r1, r2,
101 _mm_store_si128(&ctx->sfmt[i].si, r);
119 r1 = _mm_load_si128(&ctx->sfmt[N - 2].si);
120 r2 = _mm_load_si128(&ctx->sfmt[N - 1].si);
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
SequenceInputStreamTest.java 29 SequenceInputStream si; field in class:SequenceInputStreamTest
51 si = new SequenceInputStream(null, null);
59 si = new SequenceInputStream(is, null);
88 si = new SequenceInputStream(new StreamEnumerator());
90 si.read(buf, 0, s1.length());
91 si.read(buf, s1.length(), s2.length());
107 assertTrue("Returned incorrect number of bytes: " + si.available(),
108 si.available() == s1.length());
118 si.close();
120 si.close()
    [all...]

Completed in 1309 milliseconds

1 2 3 4 5 6 7 8 91011>>