/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/src/ |
D | svc_encodeframe.c | 218 SvcInternal *const si = (SvcInternal *)malloc(sizeof(*si)); in get_svc_internal() local 219 if (si != NULL) { in get_svc_internal() 220 memset(si, 0, sizeof(*si)); in get_svc_internal() 222 svc_ctx->internal = si; in get_svc_internal() 233 SvcInternal *const si = (SvcInternal *)svc_ctx->internal; in svc_log_reset() local 234 si->message_buffer[0] = '\0'; in svc_log_reset() 241 SvcInternal *const si = get_svc_internal(svc_ctx); in svc_log() local 254 strncat(si->message_buffer, buf, in svc_log() 255 sizeof(si->message_buffer) - strlen(si->message_buffer) - 1); in svc_log() 259 si->codec_ctx->err_detail = si->message_buffer; in svc_log() [all …]
|
D | vpx_decoder.c | 79 vpx_codec_stream_info_t *si) { in vpx_codec_peek_stream_info() argument 82 if (!iface || !data || !data_sz || !si in vpx_codec_peek_stream_info() 83 || si->sz < sizeof(vpx_codec_stream_info_t)) in vpx_codec_peek_stream_info() 87 si->w = 0; in vpx_codec_peek_stream_info() 88 si->h = 0; in vpx_codec_peek_stream_info() 90 res = iface->dec.peek_si(data, data_sz, si); in vpx_codec_peek_stream_info() 98 vpx_codec_stream_info_t *si) { in vpx_codec_get_stream_info() argument 101 if (!ctx || !si || si->sz < sizeof(vpx_codec_stream_info_t)) in vpx_codec_get_stream_info() 107 si->w = 0; in vpx_codec_get_stream_info() 108 si->h = 0; in vpx_codec_get_stream_info() [all …]
|
D | vpx_codec.c | 159 vpx_codec_err_t vpx_validate_mmaps(const vpx_codec_stream_info_t *si, in vpx_validate_mmaps() argument 175 cfg.w = si->w; in vpx_validate_mmaps() 176 cfg.h = si->h; in vpx_validate_mmaps()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/ |
D | vp8_dx_iface.c | 42 static unsigned long vp8_priv_sz(const vpx_codec_dec_cfg_t *si, vpx_codec_flags_t); 55 vp8_stream_info_t si; member 76 static unsigned long vp8_priv_sz(const vpx_codec_dec_cfg_t *si, vpx_codec_flags_t flags) in vp8_priv_sz() argument 83 (void)si; in vp8_priv_sz() 101 ctx->priv->alg_priv->si.sz = sizeof(ctx->priv->alg_priv->si); in vp8_init_ctx() 195 vpx_codec_stream_info_t *si, in vp8_peek_si_internal() argument 221 si->is_kf = 0; in vp8_peek_si_internal() 225 si->is_kf = 1; in vp8_peek_si_internal() 231 si->w = (clear[6] | (clear[7] << 8)) & 0x3fff; in vp8_peek_si_internal() 232 si->h = (clear[8] | (clear[9] << 8)) & 0x3fff; in vp8_peek_si_internal() [all …]
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/ |
D | vp9_dx_iface.c | 29 vp9_stream_info_t si; member 68 ctx->priv->alg_priv->si.sz = sizeof(ctx->priv->alg_priv->si); in vp9_init() 89 vpx_codec_stream_info_t *si) { in vp9_peek_si() argument 93 si->is_kf = 0; in vp9_peek_si() 94 si->w = si->h = 0; in vp9_peek_si() 110 si->is_kf = !vp9_rb_read_bit(&rb); in vp9_peek_si() 111 if (si->is_kf) { in vp9_peek_si() 141 si->w = vp9_rb_read_literal(&rb, 16) + 1; in vp9_peek_si() 142 si->h = vp9_rb_read_literal(&rb, 16) + 1; in vp9_peek_si() 150 vpx_codec_stream_info_t *si) { in vp9_get_si() argument [all …]
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/ |
D | vpx_decoder.h | 174 vpx_codec_stream_info_t *si); 191 vpx_codec_stream_info_t *si);
|
/hardware/broadcom/wlan/bcmdhd/wpa_supplicant_8_lib/ |
D | driver_cmd_wext.c | 372 int wpa_driver_signal_poll(void *priv, struct wpa_signal_info *si) in wpa_driver_signal_poll() argument 379 os_memset(si, 0, sizeof(*si)); in wpa_driver_signal_poll() 387 si->current_signal = atoi(prssi + strlen(RSSI_CMD) + 1); in wpa_driver_signal_poll() 393 si->current_txrate = atoi(buf + strlen(LINKSPEED_CMD) + 1) * 1000; in wpa_driver_signal_poll()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/internal/ |
D | vpx_codec_internal.h | 117 vpx_codec_stream_info_t *si); 133 vpx_codec_stream_info_t *si); 534 vpx_codec_err_t vpx_validate_mmaps(const vpx_codec_stream_info_t *si,
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/ |
D | vpxdec.c | 276 vpx_codec_stream_info_t si; in file_is_raw() local 278 si.sz = sizeof(si); in file_is_raw() 287 buf + 4, 32 - 4, &si)) { in file_is_raw() 290 input->width = si.w; in file_is_raw() 291 input->height = si.h; in file_is_raw()
|
D | vpxenc.c | 485 const int si = mmin(i + bsize, img1->d_h) - i; in find_mismatch() local 487 for (k = 0; match && k < si; ++k) { in find_mismatch() 511 const int si = mmin(i + bsizey, c_h - i); in find_mismatch() local 513 for (k = 0; match && k < si; ++k) { in find_mismatch() 536 const int si = mmin(i + bsizey, c_h - i); in find_mismatch() local 538 for (k = 0; match && k < si; ++k) { in find_mismatch()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/x86inc/ |
D | x86inc.asm | 408 DECLARE_REG 8, rsi, esi, si, sil, 72 478 DECLARE_REG 1, rsi, esi, si, sil 522 DECLARE_REG 4, esi, esi, si, null, 20
|
/hardware/ril/reference-ril/ |
D | ril.h | 1166 char si; member
|
/hardware/ril/include/telephony/ |
D | ril.h | 1166 char si; member
|
/hardware/ril/libril/ |
D | ril.cpp | 2810 p.writeInt32(infoRec->rec.number.si); in responseCdmaInformationRecords() 2849 p.writeInt32(infoRec->rec.redir.redirectingNumber.si); in responseCdmaInformationRecords()
|