OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:cx_data_sz
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/
vp9_cx_iface.c
72
size_t
cx_data_sz
;
member in struct:vpx_codec_alg_priv
766
if (ctx->pending_cx_data_sz + index_sz < ctx->
cx_data_sz
) {
850
ctx->
cx_data_sz
= ctx->cfg.g_w * ctx->cfg.g_h *
853
if (ctx->
cx_data_sz
< 4096) ctx->
cx_data_sz
= 4096;
855
ctx->cx_data = (unsigned char *)malloc(ctx->
cx_data_sz
);
890
size_t size,
cx_data_sz
;
local
[
all
...]
/external/libvpx/libvpx/vp9/
vp9_cx_iface.c
83
size_t
cx_data_sz
;
member in struct:vpx_codec_alg_priv
553
priv->
cx_data_sz
= priv->cfg.g_w * priv->cfg.g_h * 3 / 2 * 8;
555
if (priv->
cx_data_sz
< 4096) priv->
cx_data_sz
= 4096;
557
priv->cx_data = (unsigned char *)malloc(priv->
cx_data_sz
);
646
if (ctx->pending_cx_data_sz + index_sz < ctx->
cx_data_sz
) {
737
size_t size,
cx_data_sz
;
local
764
cx_data_sz
= ctx->
cx_data_sz
;
772
cx_data_sz
-= ctx->pending_cx_data_sz
[
all
...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/
vp8_cx_iface.c
75
unsigned int
cx_data_sz
;
member in struct:vpx_codec_alg_priv
652
priv->
cx_data_sz
= priv->cfg.g_w * priv->cfg.g_h * 3 / 2 * 2;
654
if (priv->
cx_data_sz
< 32768) priv->
cx_data_sz
= 32768;
656
priv->cx_data = malloc(priv->
cx_data_sz
);
858
unsigned long size,
cx_data_sz
;
local
893
cx_data_sz
= ctx->
cx_data_sz
;
894
cx_data_end = ctx->cx_data +
cx_data_sz
;
897
while (
cx_data_sz
>= ctx->cx_data_sz / 2
[
all
...]
/external/libvpx/libvpx/vp8/
vp8_cx_iface.c
85
unsigned int
cx_data_sz
;
member in struct:vpx_codec_alg_priv
620
priv->
cx_data_sz
= priv->cfg.g_w * priv->cfg.g_h * 3 / 2 * 2;
622
if (priv->
cx_data_sz
< 32768) priv->
cx_data_sz
= 32768;
624
priv->cx_data = malloc(priv->
cx_data_sz
);
827
unsigned long size,
cx_data_sz
;
local
862
cx_data_sz
= ctx->
cx_data_sz
;
863
cx_data_end = ctx->cx_data +
cx_data_sz
;
866
while (
cx_data_sz
>= ctx->cx_data_sz / 2
[
all
...]
Completed in 31 milliseconds