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

1 2 3 4 5 6 7 8 91011>>

  /external/openssl/crypto/pkcs7/
example.h 55 int add_signed_time(PKCS7_SIGNER_INFO *si);
56 ASN1_UTCTIME *get_signed_time(PKCS7_SIGNER_INFO *si);
57 int get_signed_seq2string(PKCS7_SIGNER_INFO *si, char **str1, char **str2);
  /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_and (&si, 1); // CHECK: atomicrmw and i32
69 si = __sync_fetch_and_add (&si, 11); // CHECK: atomicrmw add
78 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/main/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/valgrind/main/coregrind/m_coredump/
coredump-macho.c 39 void VG_(make_coredump)(ThreadId tid, const vki_siginfo_t *si, UInt max_size)
  /external/valgrind/main/coregrind/
pub_core_coredump.h 38 extern void VG_(make_coredump) ( ThreadId tid, const vki_siginfo_t *si,
  /external/dhcpcd/
if-pref.c 37 ifcmp(struct interface *si, struct interface *ti)
41 if (si->state && !ti->state)
43 if (!si->state && ti->state)
45 if (!si->state && !ti->state)
48 if (si->state->new && !ti->state->new)
50 if (!si->state->new && ti->state->new)
54 if (si->state->new && ti->state->new) {
55 sill = (si->state->new->cookie == htonl(MAGIC_COOKIE));
63 if (si->carrier > ti->carrier)
65 if (si->carrier < ti->carrier
    [all...]
  /frameworks/native/cmds/servicemanager/
service_manager.c 107 struct svcinfo *si; local
109 for (si = svclist; si; si = si->next) {
110 if ((len == si->len) &&
111 !memcmp(s16, si->name, len * sizeof(uint16_t))) {
112 return si;
120 struct svcinfo *si = ptr; local
121 ALOGI("service '%s' died\n", str8(si->name))
136 struct svcinfo *si; local
159 struct svcinfo *si; local
208 struct svcinfo *si; local
    [all...]
  /external/libffi/testsuite/libffi.call/
struct3.c 12 int si; member in struct:__anon10117
17 ts.si = -(ts.si*2);
48 ts3_arg.si = -123;
49 compare_value = ts3_arg.si;
53 printf ("%d %d\n", ts3_result->si, -(compare_value*2));
55 CHECK(ts3_result->si == -(compare_value*2));
negint.c 25 signed int si; local
30 values[0] = &si;
40 si = -6;
44 checking (si, ss, sc);
48 printf ("%d vs %d\n", (int)rint, checking (si, ss, sc));
  /bionic/linker/
linker.cpp 75 static bool soinfo_link_image(soinfo* si);
309 soinfo* si = gSoInfoFreeList; local
313 memset(si, 0, sizeof(soinfo));
314 strlcpy(si->name, name, sizeof(si->name));
315 sonext->next = si;
316 sonext = si;
318 TRACE("name %s: allocated soinfo @ %p", name, si);
319 return si;
322 static void soinfo_free(soinfo* si)
404 soinfo *si; local
720 soinfo* si = soinfo_alloc(bname ? bname + 1 : name); local
737 soinfo *si; local
759 soinfo* si = find_loaded_library(name); local
789 soinfo* si = find_library_internal(name); local
832 soinfo* si = find_library(name); local
1636 soinfo* si = soinfo_alloc(args.argv[0]); local
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/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...]
  /external/valgrind/main/coregrind/m_debuginfo/
priv_readmacho.h 45 extern Bool ML_(read_macho_debug_info) ( struct _DebugInfo* si );
  /external/llvm/test/MC/X86/
address-size.s 10 movb $0x0, (%si)
  /external/grub/stage1/
stage1.S 33 #define MSG(x) movw $ABS(x), %si; call message
186 movl 0x10(%si), %ecx
188 /* set %si to the disk address packet */
189 movw $ABS(disk_address_packet), %si
192 movb $1, -1(%si)
197 movw $0x0010, (%si)
200 movw $1, 2(%si)
203 movl %ebx, 8(%si)
206 movw $STAGE1_BUFFERSEG, 6(%si)
209 movw %ax, 4(%si)
    [all...]
  /external/icu4c/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...]
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
ScriptIntrinsicLUT.java 55 ScriptIntrinsicLUT si = new ScriptIntrinsicLUT(id, rs); local
56 si.mTables = Allocation.createSized(rs, Element.U8(rs), 1024);
58 si.mCache[ct] = (byte)ct;
59 si.mCache[ct + 256] = (byte)ct;
60 si.mCache[ct + 512] = (byte)ct;
61 si.mCache[ct + 768] = (byte)ct;
63 si.setVar(0, si.mTables);
64 return si;
  /external/libffi/testsuite/libffi.special/
unwindtest_ffi_call.cc 23 signed int si; local
28 values[0] = &si;
38 si = -6;
  /external/grub/stage2/
start.S 41 #define MSG(x) movw $ABS(x), %si; call message
69 pushw %si
71 popw %si
90 cmpb $0, -1(%si)
122 movw $0x0010, (%si)
125 movw %ax, 2(%si)
128 movl %ebx, 8(%si)
131 movw $BUFFERSEG, 6(%si)
140 movw %ax, 4(%si)
143 movl %eax, 12(%si)
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/nanox/
SDL_nxmodes.c 59 GR_SCREEN_INFO si ; local
61 GrGetScreenInfo (& si) ;
62 GrResizeWindow (FSwindow, si.cols, si.rows) ;

Completed in 500 milliseconds

1 2 3 4 5 6 7 8 91011>>