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

1 2 3 4 5 6 7 8 91011>>

  /external/strace/tests/
sysinfo.c 34 struct sysinfo si; local
35 if (sysinfo(&si) == -1)
50 (unsigned long long) si.uptime
51 , (unsigned long long) si.loads[0]
52 , (unsigned long long) si.loads[1]
53 , (unsigned long long) si.loads[2]
54 , (unsigned long long) si.totalram
55 , (unsigned long long) si.freeram
56 , (unsigned long long) si.sharedram
57 , (unsigned long long) si.bufferra
    [all...]
  /external/strace/
sysinfo.c 43 sysinfo_t si; local
48 if (!umove_or_printaddr(tcp, tcp->u_arg[0], &si)) {
62 (unsigned long long) si.uptime
63 , (unsigned long long) si.loads[0]
64 , (unsigned long long) si.loads[1]
65 , (unsigned long long) si.loads[2]
66 , (unsigned long long) si.totalram
67 , (unsigned long long) si.freeram
68 , (unsigned long long) si.sharedram
69 , (unsigned long long) si.bufferra
    [all...]
  /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;
Atomics.c 9 signed int si; variable
20 (void) __sync_fetch_and_add (&si, 1); // CHECK: atomicrmw add i32
29 (void) __sync_fetch_and_sub (&si, 1); // CHECK: atomicrmw sub i32
38 (void) __sync_fetch_and_or (&si, 1); // CHECK: atomicrmw or i32
47 (void) __sync_fetch_and_xor (&si, 1); // CHECK: atomicrmw xor i32
56 (void) __sync_fetch_and_nand (&si, 1); // CHECK: atomicrmw nand i32
65 (void) __sync_fetch_and_and (&si, 1); // CHECK: atomicrmw and i32
78 si = __sync_fetch_and_add (&si, 11); // CHECK: atomicrmw add
87 si = __sync_fetch_and_sub (&si, 11); // CHECK: atomicrmw su
    [all...]
  /libcore/luni/src/test/java/libcore/java/io/
OldSequenceInputStreamTest.java 27 SequenceInputStream si; field in class:OldSequenceInputStreamTest
32 assertEquals("Returned incorrect number of bytes!", s1.length(), si.available());
35 si.available() == s1.length());
38 si.available();
48 si.close();
56 si.read();
58 s1.charAt(1), (char) si.read());
64 s1.charAt(2), (char) si.read());
71 si.read();
79 si.read()
    [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...]
  /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...]
pvmp3_get_side_info.h 90 mp3SideInfo *si,
pvmp3_get_scale_factors.h 90 mp3SideInfo *si,
  /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,
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/src/
svc_encodeframe.c 218 SvcInternal *const si = (SvcInternal *)malloc(sizeof(*si)); local
219 if (si != NULL) {
220 memset(si, 0, sizeof(*si));
222 svc_ctx->internal = si;
233 SvcInternal *const si = (SvcInternal *)svc_ctx->internal; local
234 si->message_buffer[0] = '\0';
241 SvcInternal *const si = get_svc_internal(svc_ctx); local
254 strncat(si->message_buffer, buf
291 SvcInternal *const si = get_svc_internal(svc_ctx); local
351 SvcInternal *const si = get_svc_internal(svc_ctx); local
438 SvcInternal *const si = get_svc_internal(svc_ctx); local
458 SvcInternal *const si = get_svc_internal(svc_ctx); local
470 SvcInternal *const si = get_svc_internal(svc_ctx); local
486 SvcInternal *const si = get_svc_internal(svc_ctx); local
500 SvcInternal *const si = get_svc_internal(svc_ctx); local
667 SvcInternal *const si = get_svc_internal(svc_ctx); local
740 const SvcInternal *const si = get_const_svc_internal(svc_ctx); local
769 SvcInternal *const si = get_svc_internal(svc_ctx); local
861 SvcInternal *const si = get_svc_internal(svc_ctx); local
1010 const SvcInternal *const si = get_const_svc_internal(svc_ctx); local
1016 const SvcInternal *const si = get_const_svc_internal(svc_ctx); local
1022 const SvcInternal *const si = get_const_svc_internal(svc_ctx); local
1028 const SvcInternal *const si = get_const_svc_internal(svc_ctx); local
1034 const SvcInternal *const si = get_const_svc_internal(svc_ctx); local
1040 SvcInternal *const si = get_svc_internal(svc_ctx); local
1060 SvcInternal *const si = get_svc_internal(svc_ctx); local
1117 SvcInternal *si; local
1133 const SvcInternal *const si = get_const_svc_internal(svc_ctx); local
1139 const SvcInternal *const si = get_const_svc_internal(svc_ctx); local
    [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...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/
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...]
att-regs.s 6 mov eax, ax ; add al, (bx,si)
7 mov rax, ax ; add al, (bx,si)
8 mov axl, ax ; add al, (bx,si)
9 mov r8b, ax ; add al, (bx,si)
10 mov r8w, ax ; add al, (bx,si)
11 mov r8d, ax ; add al, (bx,si)
12 mov r8, ax ; add al, (bx,si)
13 mov fs, ax ; add al, (bx,si)
14 mov st, ax ; add al, (bx,si)
15 mov cr0, ax ; add al, (bx,si)
    [all...]
  /external/compiler-rt/test/asan/TestCases/Windows/
dll_control_c.cc 60 STARTUPINFOW si; local
61 memset(&si, 0, sizeof(si));
62 si.cb = sizeof(si);
64 si.dwFlags |= STARTF_USESHOWWINDOW;
65 si.wShowWindow = SW_HIDE;
67 si.dwFlags |= STARTF_USESTDHANDLES;
68 si.hStdInput = GetStdHandle(STD_INPUT_HANDLE);
69 si.hStdOutput = GetStdHandle(STD_OUTPUT_HANDLE)
    [all...]
  /external/libvpx/libvpx/vpx/src/
svc_encodeframe.c 85 SvcInternal_t *const si = (SvcInternal_t *)malloc(sizeof(*si)); local
86 if (si != NULL) {
87 memset(si, 0, sizeof(*si));
89 svc_ctx->internal = si;
101 SvcInternal_t *const si = (SvcInternal_t *)svc_ctx->internal; local
102 si->message_buffer[0] = '\0';
110 SvcInternal_t *const si = get_svc_internal(svc_ctx); local
123 strncat(si->message_buffer, buf
208 SvcInternal_t *const si = get_svc_internal(svc_ctx); local
292 SvcInternal_t *const si = get_svc_internal(svc_ctx); local
304 const SvcInternal_t *const si = get_const_svc_internal(svc_ctx); local
389 SvcInternal_t *const si = get_svc_internal(svc_ctx); local
518 SvcInternal_t *const si = get_svc_internal(svc_ctx); local
584 const SvcInternal_t *const si = get_const_svc_internal(svc_ctx); local
604 SvcInternal_t *const si = get_svc_internal(svc_ctx); local
655 SvcInternal_t *si; local
    [all...]
  /external/valgrind/coregrind/m_debuginfo/
priv_readmacho.h 48 extern Bool ML_(read_macho_debug_info) ( DebugInfo* si );
  /system/core/debuggerd/test/
ptrace_fake.cpp 28 void ptrace_set_fake_getsiginfo(const siginfo_t& si) {
29 g_fake_si = si;
47 siginfo_t* si = va_arg(ap, siginfo*); local
49 *si = g_fake_si;
  /frameworks/native/cmds/servicemanager/
service_manager.c 153 struct svcinfo *si; local
155 for (si = svclist; si; si = si->next) {
156 if ((len == si->len) &&
157 !memcmp(s16, si->name, len * sizeof(uint16_t))) {
158 return si;
166 struct svcinfo *si = (struct svcinfo* ) ptr; local
168 ALOGI("service '%s' died\n", str8(si->name, si->len))
183 struct svcinfo *si = find_svc(s, len); local
210 struct svcinfo *si; local
260 struct svcinfo *si; local
    [all...]
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
ScriptIntrinsicLUT.java 56 ScriptIntrinsicLUT si = new ScriptIntrinsicLUT(id, rs);
57 si.setIncSupp(mUseIncSupp);
58 si.mTables = Allocation.createSized(rs, Element.U8(rs), 1024);
60 si.mCache[ct] = (byte)ct;
61 si.mCache[ct + 256] = (byte)ct;
62 si.mCache[ct + 512] = (byte)ct;
63 si.mCache[ct + 768] = (byte)ct;
65 si.setVar(0, si.mTables);
66 return si;
    [all...]
  /external/icu/icu4c/source/samples/layout/
clayout.c 53 SCROLLINFO si; local
62 si.cbSize = sizeof si;
63 si.fMask = SIF_RANGE | SIF_PAGE | SIF_DISABLENOSCROLL;
64 si.nMin = 0;
65 si.nMax = pf_getLineCount(context->paragraph) - 1;
66 si.nPage = context->height / pf_getLineHeight(context->paragraph);
67 SetScrollInfo(hwnd, SB_VERT, &si, TRUE);
172 SCROLLINFO si; local
175 si.cbSize = sizeof si
232 SCROLLINFO si; local
    [all...]
layout.cpp 52 SCROLLINFO si; local
61 si.cbSize = sizeof si;
62 si.fMask = SIF_RANGE | SIF_PAGE | SIF_DISABLENOSCROLL;
63 si.nMin = 0;
64 si.nMax = context->paragraph->getLineCount() - 1;
65 si.nPage = context->height / context->paragraph->getLineHeight();
66 SetScrollInfo(hwnd, SB_VERT, &si, TRUE);
170 SCROLLINFO si; local
173 si.cbSize = sizeof si
230 SCROLLINFO si; local
    [all...]

Completed in 1173 milliseconds

1 2 3 4 5 6 7 8 91011>>