Home
last modified time | relevance | path

Searched refs:si (Results 1 – 25 of 549) sorted by relevance

12345678910>>...22

/external/libvpx/libvpx/vpx/src/
Dsvc_encodeframe.c152 SvcInternal *const si = (SvcInternal *)malloc(sizeof(*si)); in get_svc_internal() local
153 if (si != NULL) { in get_svc_internal()
154 memset(si, 0, sizeof(*si)); in get_svc_internal()
156 svc_ctx->internal = si; in get_svc_internal()
167 SvcInternal *const si = (SvcInternal *)svc_ctx->internal; in svc_log_reset() local
168 si->message_buffer[0] = '\0'; in svc_log_reset()
176 SvcInternal *const si = get_svc_internal(svc_ctx); in svc_log() local
189 strncat(si->message_buffer, buf, in svc_log()
190 sizeof(si->message_buffer) - strlen(si->message_buffer) - 1); in svc_log()
194 si->codec_ctx->err_detail = si->message_buffer; in svc_log()
[all …]
Dvpx_decoder.c69 vpx_codec_stream_info_t *si) { in vpx_codec_peek_stream_info() argument
72 if (!iface || !data || !data_sz || !si in vpx_codec_peek_stream_info()
73 || si->sz < sizeof(vpx_codec_stream_info_t)) in vpx_codec_peek_stream_info()
77 si->w = 0; in vpx_codec_peek_stream_info()
78 si->h = 0; in vpx_codec_peek_stream_info()
80 res = iface->dec.peek_si(data, data_sz, si); in vpx_codec_peek_stream_info()
88 vpx_codec_stream_info_t *si) { in vpx_codec_get_stream_info() argument
91 if (!ctx || !si || si->sz < sizeof(vpx_codec_stream_info_t)) in vpx_codec_get_stream_info()
97 si->w = 0; in vpx_codec_get_stream_info()
98 si->h = 0; in vpx_codec_get_stream_info()
[all …]
/external/strace/
Dsysinfo.c6 struct sysinfo si; in SYS_FUNC() local
12 umove(tcp, tcp->u_arg[0], &si) < 0) { in SYS_FUNC()
34 (unsigned long long) si.uptime in SYS_FUNC()
35 , (unsigned long long) si.loads[0] in SYS_FUNC()
36 , (unsigned long long) si.loads[1] in SYS_FUNC()
37 , (unsigned long long) si.loads[2] in SYS_FUNC()
38 , (unsigned long long) si.totalram in SYS_FUNC()
39 , (unsigned long long) si.freeram in SYS_FUNC()
40 , (unsigned long long) si.sharedram in SYS_FUNC()
41 , (unsigned long long) si.bufferram in SYS_FUNC()
[all …]
/external/icu/icu4c/source/samples/layout/
Dlayout.cpp52 SCROLLINFO si; in InitParagraph() local
61 si.cbSize = sizeof si; in InitParagraph()
62 si.fMask = SIF_RANGE | SIF_PAGE | SIF_DISABLENOSCROLL; in InitParagraph()
63 si.nMin = 0; in InitParagraph()
64 si.nMax = context->paragraph->getLineCount() - 1; in InitParagraph()
65 si.nPage = context->height / context->paragraph->getLineHeight(); in InitParagraph()
66 SetScrollInfo(hwnd, SB_VERT, &si, TRUE); in InitParagraph()
170 SCROLLINFO si; in WndProc() local
173 si.cbSize = sizeof si; in WndProc()
174 si.fMask = SIF_ALL; in WndProc()
[all …]
Dclayout.c53 SCROLLINFO si; in InitParagraph() local
62 si.cbSize = sizeof si; in InitParagraph()
63 si.fMask = SIF_RANGE | SIF_PAGE | SIF_DISABLENOSCROLL; in InitParagraph()
64 si.nMin = 0; in InitParagraph()
65 si.nMax = pf_getLineCount(context->paragraph) - 1; in InitParagraph()
66 si.nPage = context->height / pf_getLineHeight(context->paragraph); in InitParagraph()
67 SetScrollInfo(hwnd, SB_VERT, &si, TRUE); in InitParagraph()
172 SCROLLINFO si; in WndProc() local
175 si.cbSize = sizeof si; in WndProc()
176 si.fMask = SIF_ALL; in WndProc()
[all …]
/external/jemalloc/test/include/test/
DSFMT-sse2.h89 r1 = _mm_load_si128(&ctx->sfmt[N - 2].si); in gen_rand_all()
90 r2 = _mm_load_si128(&ctx->sfmt[N - 1].si); in gen_rand_all()
92 r = mm_recursion(&ctx->sfmt[i].si, &ctx->sfmt[i + POS1].si, r1, r2, in gen_rand_all()
94 _mm_store_si128(&ctx->sfmt[i].si, r); in gen_rand_all()
99 r = mm_recursion(&ctx->sfmt[i].si, &ctx->sfmt[i + POS1 - N].si, r1, r2, in gen_rand_all()
101 _mm_store_si128(&ctx->sfmt[i].si, r); in gen_rand_all()
119 r1 = _mm_load_si128(&ctx->sfmt[N - 2].si); in gen_rand_array()
120 r2 = _mm_load_si128(&ctx->sfmt[N - 1].si); in gen_rand_array()
122 r = mm_recursion(&ctx->sfmt[i].si, &ctx->sfmt[i + POS1].si, r1, r2, in gen_rand_array()
124 _mm_store_si128(&array[i].si, r); in gen_rand_array()
[all …]
/external/clang/test/CodeGen/
DAtomics.c9 signed int si; variable
20 (void) __sync_fetch_and_add (&si, 1); // CHECK: atomicrmw add i32 in test_op_ignore()
29 (void) __sync_fetch_and_sub (&si, 1); // CHECK: atomicrmw sub i32 in test_op_ignore()
38 (void) __sync_fetch_and_or (&si, 1); // CHECK: atomicrmw or i32 in test_op_ignore()
47 (void) __sync_fetch_and_xor (&si, 1); // CHECK: atomicrmw xor i32 in test_op_ignore()
56 (void) __sync_fetch_and_nand (&si, 1); // CHECK: atomicrmw nand i32 in test_op_ignore()
65 (void) __sync_fetch_and_and (&si, 1); // CHECK: atomicrmw and i32 in test_op_ignore()
78 si = __sync_fetch_and_add (&si, 11); // CHECK: atomicrmw add in test_fetch_and_op()
87 si = __sync_fetch_and_sub (&si, 11); // CHECK: atomicrmw sub in test_fetch_and_op()
96 si = __sync_fetch_and_or (&si, 11); // CHECK: atomicrmw or in test_fetch_and_op()
[all …]
/external/ipsec-tools/src/racoon/
Dsainfo.c179 delsainfo(si) in delsainfo() argument
180 struct sainfo *si; in delsainfo()
185 delsainfoalg(si->algs[i]);
187 if (si->idsrc)
188 vfree(si->idsrc);
189 if (si->iddst)
190 vfree(si->iddst);
193 if (si->group)
194 vfree(si->group);
197 racoon_free(si);
[all …]
/external/libpcap/
Dpcap-snit.c242 struct strioctl si; in nit_setflags() local
251 si.ic_cmd = NIOCSCHUNK; in nit_setflags()
252 si.ic_len = sizeof(zero); in nit_setflags()
253 si.ic_dp = (char *)&zero; in nit_setflags()
254 if (ioctl(p->fd, I_STR, (char *)&si) < 0) { in nit_setflags()
260 si.ic_timout = INFTIM; in nit_setflags()
264 si.ic_cmd = NIOCSTIME; in nit_setflags()
265 si.ic_len = sizeof(timeout); in nit_setflags()
266 si.ic_dp = (char *)&timeout; in nit_setflags()
267 if (ioctl(p->fd, I_STR, (char *)&si) < 0) { in nit_setflags()
[all …]
/external/dhcpcd/
Dif-pref.c37 ifcmp(struct interface *si, struct interface *ti) in ifcmp() argument
41 if (si->state && !ti->state) in ifcmp()
43 if (!si->state && ti->state) in ifcmp()
45 if (!si->state && !ti->state) in ifcmp()
48 if (si->state->new && !ti->state->new) in ifcmp()
50 if (!si->state->new && ti->state->new) in ifcmp()
54 if (si->state->new && ti->state->new) { in ifcmp()
55 sill = (si->state->new->cookie == htonl(MAGIC_COOKIE)); in ifcmp()
63 if (si->carrier > ti->carrier) in ifcmp()
65 if (si->carrier < ti->carrier) in ifcmp()
[all …]
/external/valgrind/memcheck/tests/linux/
Dsigqueue.c13 siginfo_t *si; in main() local
14 const size_t sz = sizeof(*si); in main()
27 si = calloc(1, sz); in main()
28 si->si_signo = SIGWINCH; in main()
29 si->si_code = SI_QUEUE; in main()
30 si->si_pid = getpid(); in main()
31 si->si_uid = getuid(); in main()
32 syscall(__NR_rt_sigqueueinfo, getpid(), SIGWINCH, si); in main()
33 free(si); in main()
/external/llvm/test/MC/X86/
Dx86-16.s796 outsb %ds:(%si), %dx
797 outsb (%si), %dx
803 outsw %ds:(%si), %dx
804 outsw (%si), %dx
809 outsl %ds:(%si), %dx
810 outsl (%si), %dx
831 movsb %ds:(%si), %es:(%di)
832 movsb (%si), %es:(%di)
838 movsw %ds:(%si), %es:(%di)
839 movsw (%si), %es:(%di)
[all …]
Daddress-size.s10 movb $0x0, (%si)
14 movw $0x1234, (%si)
16 movl $0x12345678, (%bx,%si,1)
22 movb $0x0, (%si)
/external/icu/icu4c/source/data/locales/
Dee.txt312 "kɔsiɖa",
350 "kɔsiɖa",
600 "-1"{"etsɔ si va yi"}
601 "-2"{"nyitsɔ si va yi"}
603 "1"{"etsɔ si gbɔna"}
604 "2"{"nyitsɔ si gbɔna"}
612 one{"ŋkeke {0} si va yi"}
613 other{"ŋkeke {0} si wo va yi"}
625 "-1"{"fiɖa si va yi"}
627 "1"{"fiɖa si gbɔ na"}
[all …]
/external/valgrind/VEX/priv/
Dguest_generic_x87.c853 UInt si, ci; in compute_PCMPxSTRx() local
860 for (si = 0; si < 16; si++) { in compute_PCMPxSTRx()
861 if ((validL & (1 << si)) == 0) in compute_PCMPxSTRx()
867 if (argR[ci] == argL[si]) { m = 1; break; } in compute_PCMPxSTRx()
869 boolRes |= (m << si); in compute_PCMPxSTRx()
932 UInt ri, si; in compute_PCMPxSTRx() local
938 for (si = 0; si < 16; si++) { in compute_PCMPxSTRx()
939 if ((validL & (1 << si)) == 0) in compute_PCMPxSTRx()
945 if (argR[ri] <= argL[si] && argL[si] <= argR[ri+1]) { in compute_PCMPxSTRx()
949 boolRes |= (m << si); in compute_PCMPxSTRx()
[all …]
/external/lldb/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/map/
Dmain.cpp26 strint_map si; in main() local
28 si["zero"] = 0;// Set break point at this line. in main()
29 si["one"] = 1;// Set break point at this line. in main()
30 si["two"] = 2; in main()
31 si["three"] = 3; in main()
32 si["four"] = 4; in main()
34 si.clear();// Set break point at this line. in main()
/external/libvncserver/x11vnc/misc/enhanced_tightvnc_viewer/src/patches/
Dtight-vncviewer-newfbsize.patch20 + si.framebufferWidth, si.framebufferHeight,
50 - si.framebufferWidth, si.framebufferHeight,
100 + XtResizeWidget(desktop, si.framebufferWidth, si.framebufferHeight, 0);
113 + w = si.framebufferWidth;
114 + h = si.framebufferHeight;
125 + XtVaSetValues(desktop, XtNwidth, si.framebufferWidth,
126 + XtNheight, si.framebufferHeight, NULL);
131 + XtResizeWidget(desktop, si.framebufferWidth, si.framebufferHeight, 0);
147 if (si.framebufferWidth > dpyWidth || si.framebufferHeight > dpyHeight) {
231 + si.framebufferWidth = rect.r.w;
[all …]
/external/emma/core/java12/com/vladium/util/
DWCMatcher.java245 int si = 0, pi = 0; in matches() local
260 si += i; in matches()
267 final int si_i = si + i; in matches()
276 ++ si; in matches()
283 if (si + i == stringLength) return true; in matches()
286 ++ si; in matches()
304 int si = 0, pi = 0; in matches() local
319 si += i; in matches()
326 final int si_i = si + i; in matches()
335 ++ si; in matches()
[all …]
/external/libvpx/libvpx/vp8/
Dvp8_dx_iface.c43 static unsigned long vp8_priv_sz(const vpx_codec_dec_cfg_t *si, vpx_codec_flags_t);
49 vp8_stream_info_t si; member
70 static unsigned long vp8_priv_sz(const vpx_codec_dec_cfg_t *si, vpx_codec_flags_t flags) in vp8_priv_sz() argument
77 (void)si; in vp8_priv_sz()
89 ctx->priv->alg_priv->si.sz = sizeof(ctx->priv->alg_priv->si); in vp8_init_ctx()
161 vpx_codec_stream_info_t *si, in vp8_peek_si_internal() argument
187 si->is_kf = 0; in vp8_peek_si_internal()
191 si->is_kf = 1; in vp8_peek_si_internal()
197 si->w = (clear[6] | (clear[7] << 8)) & 0x3fff; in vp8_peek_si_internal()
198 si->h = (clear[8] | (clear[9] << 8)) & 0x3fff; in vp8_peek_si_internal()
[all …]
/external/lldb/test/functionalities/data-formatter/data-formatter-stl/libcxx/map/
Dmain.cpp44 strint_map si; in main() local
47 si["zero"] = 0; in main()
49 si["one"] = 1; in main()
50 si["two"] = 2; in main()
51 si["three"] = 3; in main()
53 si["four"] = 4; in main()
55 si.clear(); in main()
/external/lldb/test/functionalities/data-formatter/data-formatter-stl/libcxx/multimap/
Dmain.cpp44 strint_map si; in main() local
47 si.emplace("zero",0); in main()
49 si.emplace("one",1); in main()
50 si.emplace("two",2); in main()
51 si.emplace("three",3); in main()
53 si.emplace("four",4); in main()
55 si.clear(); in main()
/external/libvpx/libvpx/vp9/
Dvp9_dx_iface.c35 vp9_stream_info_t si; member
71 ctx->priv->alg_priv->si.sz = sizeof(ctx->priv->alg_priv->si); in decoder_init()
127 vpx_codec_stream_info_t *si, in decoder_peek_si_internal() argument
137 si->is_kf = 0; in decoder_peek_si_internal()
138 si->w = si->h = 0; in decoder_peek_si_internal()
166 si->is_kf = !vp9_rb_read_bit(&rb); in decoder_peek_si_internal()
170 if (si->is_kf) { in decoder_peek_si_internal()
176 vp9_read_frame_size(&rb, (int *)&si->w, (int *)&si->h); in decoder_peek_si_internal()
190 vp9_read_frame_size(&rb, (int *)&si->w, (int *)&si->h); in decoder_peek_si_internal()
201 vpx_codec_stream_info_t *si) { in decoder_peek_si() argument
[all …]
/external/mesa3d/src/gallium/drivers/nvc0/
Dnvc0_program.c38 if (var->si <= 7) /* gl_TexCoord */ in nvc0_mesa_varying_hack()
40 var->slot[c] = (0x300 + var->si * 0x10 + c * 0x4) / 4; in nvc0_mesa_varying_hack()
42 if (var->si == 9) /* gl_PointCoord */ in nvc0_mesa_varying_hack()
51 nvc0_shader_input_address(unsigned sn, unsigned si, unsigned ubase) in nvc0_shader_input_address() argument
54 case NV50_SEMANTIC_TESSFACTOR: return 0x000 + si * 0x4; in nvc0_shader_input_address()
58 case TGSI_SEMANTIC_GENERIC: return ubase + si * 0x10; in nvc0_shader_input_address()
60 case TGSI_SEMANTIC_COLOR: return 0x280 + si * 0x10; in nvc0_shader_input_address()
61 case TGSI_SEMANTIC_BCOLOR: return 0x2a0 + si * 0x10; in nvc0_shader_input_address()
62 case NV50_SEMANTIC_CLIPDISTANCE: return 0x2c0 + si * 0x4; in nvc0_shader_input_address()
63 case TGSI_SEMANTIC_CLIPDIST: return 0x2c0 + si * 0x10; in nvc0_shader_input_address()
[all …]
/external/libvncserver/
Dtightvnc-1.3dev5-vncviewer-alpha-cursor.patch31 + if (iwidth > si.framebufferWidth) {
32 + iwidth = si.framebufferWidth;
34 + if (iwidth > si.framebufferHeight) {
35 + iwidth = si.framebufferHeight;
80 + } else if (x + rsW > si.framebufferWidth) {
81 + rsW = si.framebufferWidth - x;
89 + } else if (y + rsH > si.framebufferHeight) {
90 + rsH = si.framebufferHeight - y;
99 + if (y0 < 0 || y0 >= si.framebufferHeight) {
106 + if (x0 < 0 || x0 >= si.framebufferWidth) {
/external/jpeg/
Djmemdosa.asm46 push si ; save all registers for safety
67 pop si
81 push si ; save all registers for safety
99 pop si
113 push si ; save all registers for safety
133 pop si
147 push si ; save all registers for safety
171 pop si
185 push si ; save all registers for safety
209 pop si
[all …]

12345678910>>...22