Searched defs:si (Results 1 - 10 of 10) sorted by relevance

/hardware/broadcom/wlan/bcmdhd/wpa_supplicant_8_lib/
H A Ddriver_cmd_wext.c372 int wpa_driver_signal_poll(void *priv, struct wpa_signal_info *si) argument
379 os_memset(si, 0, sizeof(*si));
387 si->current_signal = atoi(prssi + strlen(RSSI_CMD) + 1);
393 si->current_txrate = atoi(buf + strlen(LINKSPEED_CMD) + 1) * 1000;
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/src/
H A Dvpx_codec.c159 vpx_codec_err_t vpx_validate_mmaps(const vpx_codec_stream_info_t *si, argument
171 /* Verify variable size segment is big enough for the current si. */
175 cfg.w = si->w;
176 cfg.h = si->h;
H A Dvpx_decoder.c79 vpx_codec_stream_info_t *si) {
82 if (!iface || !data || !data_sz || !si
83 || si->sz < sizeof(vpx_codec_stream_info_t))
87 si->w = 0;
88 si->h = 0;
90 res = iface->dec.peek_si(data, data_sz, si);
98 vpx_codec_stream_info_t *si) {
101 if (!ctx || !si || si->sz < sizeof(vpx_codec_stream_info_t))
107 si
76 vpx_codec_peek_stream_info(vpx_codec_iface_t *iface, const uint8_t *data, unsigned int data_sz, vpx_codec_stream_info_t *si) argument
97 vpx_codec_get_stream_info(vpx_codec_ctx_t *ctx, vpx_codec_stream_info_t *si) argument
[all...]
H A Dsvc_encodeframe.c218 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
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...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/
H A Dvp8_dx_iface.c42 static unsigned long vp8_priv_sz(const vpx_codec_dec_cfg_t *si, vpx_codec_flags_t);
55 vp8_stream_info_t si; member in struct:vpx_codec_alg_priv
76 static unsigned long vp8_priv_sz(const vpx_codec_dec_cfg_t *si, vpx_codec_flags_t flags) argument
83 (void)si;
101 ctx->priv->alg_priv->si.sz = sizeof(ctx->priv->alg_priv->si);
195 vpx_codec_stream_info_t *si,
221 si->is_kf = 0;
225 si->is_kf = 1;
231 si
193 vp8_peek_si_internal(const uint8_t *data, unsigned int data_sz, vpx_codec_stream_info_t *si, vp8_decrypt_cb *decrypt_cb, void *decrypt_state) argument
247 vp8_peek_si(const uint8_t *data, unsigned int data_sz, vpx_codec_stream_info_t *si) argument
253 vp8_get_si(vpx_codec_alg_priv_t *ctx, vpx_codec_stream_info_t *si) argument
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/
H A Dvp9_dx_iface.c29 vp9_stream_info_t si; member in struct:vpx_codec_alg_priv
68 ctx->priv->alg_priv->si.sz = sizeof(ctx->priv->alg_priv->si);
89 vpx_codec_stream_info_t *si) {
93 si->is_kf = 0;
94 si->w = si->h = 0;
110 si->is_kf = !vp9_rb_read_bit(&rb);
111 if (si->is_kf) {
141 si
88 vp9_peek_si(const uint8_t *data, unsigned int data_sz, vpx_codec_stream_info_t *si) argument
149 vp9_get_si(vpx_codec_alg_priv_t *ctx, vpx_codec_stream_info_t *si) argument
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
H A Dvpxdec.c276 vpx_codec_stream_info_t si; local
278 si.sz = sizeof(si);
287 buf + 4, 32 - 4, &si)) {
290 input->width = si.w;
291 input->height = si.h;
H A Dvpxenc.c485 const int si = mmin(i + bsize, img1->d_h) - i; local
487 for (k = 0; match && k < si; ++k) {
511 const int si = mmin(i + bsizey, c_h - i); local
513 for (k = 0; match && k < si; ++k) {
536 const int si = mmin(i + bsizey, c_h - i); local
538 for (k = 0; match && k < si; ++k) {
/hardware/ril/include/telephony/
H A Dril.h1023 char si; member in struct:__anon2446
/hardware/ril/reference-ril/
H A Dril.h1023 char si; member in struct:__anon2611

Completed in 210 milliseconds