Home
last modified time | relevance | path

Searched refs:d (Results 1 – 21 of 21) sorted by relevance

/rockchip-linux_mpp/utils/
H A Ddictionary.c68 static int dictionary_grow(dictionary * d) in dictionary_grow() argument
74 new_val = (char**) calloc(d->size * 2, sizeof * d->val); in dictionary_grow()
75 new_key = (char**) calloc(d->size * 2, sizeof * d->key); in dictionary_grow()
76 new_hash = (unsigned*) calloc(d->size * 2, sizeof * d->hash); in dictionary_grow()
88 memcpy(new_val, d->val, d->size * sizeof(char *)); in dictionary_grow()
89 memcpy(new_key, d->key, d->size * sizeof(char *)); in dictionary_grow()
90 memcpy(new_hash, d->hash, d->size * sizeof(unsigned)); in dictionary_grow()
92 free(d->val); in dictionary_grow()
93 free(d->key); in dictionary_grow()
94 free(d->hash); in dictionary_grow()
[all …]
H A Diniparser.c164 int iniparser_getnsec(const dictionary * d) in iniparser_getnsec() argument
169 if (d == NULL) return -1 ; in iniparser_getnsec()
171 for (i = 0 ; i < d->size ; i++) { in iniparser_getnsec()
172 if (d->key[i] == NULL) in iniparser_getnsec()
174 if (strchr(d->key[i], ':') == NULL) { in iniparser_getnsec()
195 const char * iniparser_getsecname(const dictionary * d, int n) in iniparser_getsecname() argument
200 if (d == NULL || n < 0) return NULL ; in iniparser_getsecname()
202 for (i = 0 ; i < d->size ; i++) { in iniparser_getsecname()
203 if (d->key[i] == NULL) in iniparser_getsecname()
205 if (strchr(d->key[i], ':') == NULL) { in iniparser_getsecname()
[all …]
H A Diniparser.h65 int iniparser_getnsec(const dictionary * d);
83 const char * iniparser_getsecname(const dictionary * d, int n);
98 void iniparser_dump_ini(const dictionary * d, FILE * f);
113 void iniparser_dumpsection_ini(const dictionary * d, const char * s, FILE * f);
128 void iniparser_dump(const dictionary * d, FILE * f);
138 int iniparser_getsecnkeys(const dictionary * d, const char * s);
156 const char ** iniparser_getseckeys(const dictionary * d, const char * s, const char ** keys);
174 const char * iniparser_getstring(const dictionary * d, const char * key, const char * def);
203 int iniparser_getint(const dictionary * d, const char * key, int notfound);
230 long int iniparser_getlongint(const dictionary * d, const char * key, long int notfound);
[all …]
H A Ddictionary.h110 const char * dictionary_get(const dictionary * d, const char * key, const char * def);
152 void dictionary_unset(dictionary * d, const char * key);
167 void dictionary_dump(const dictionary * d, FILE * out);
/rockchip-linux_mpp/osal/inc/
H A Dmpp_common.h17 #define MPP_MAX4(a, b, c, d) MPP_MAX((a), MPP_MAX3((b), (c), (d))) argument
21 #define MPP_MIN4(a, b, c, d) MPP_MIN((a), MPP_MIN3((b), (c), (d))) argument
39 #define MPP_WB16(p, d) do { \ argument
40 ((RK_U8*)(p))[1] = (d); \
41 ((RK_U8*)(p))[0] = (d)>>8; } while(0)
45 #define MPP_WL16(p, d) do { \ argument
46 ((RK_U8*)(p))[0] = (d); \
47 ((RK_U8*)(p))[1] = (d)>>8; } while(0)
53 #define MPP_WB32(p, d) do { \ argument
54 ((RK_U8*)(p))[3] = (d); \
[all …]
/rockchip-linux_mpp/kmpp/base/inc/
H A Dkmpp_obj_macro.h24 #define CONCAT_4(a,b,c,d) a##b##c##d argument
25 #define CONCAT_5(a,b,c,d,e) a##b##c##d##e argument
26 #define CONCAT_6(a,b,c,d,e,f) a##b##c##d##e##f argument
35 #define CONCAT_US4(a,b,c,d) a##_##b##_##c##_##d argument
36 #define CONCAT_US5(a,b,c,d,e) a##_##b##_##c##_##d##_##e argument
37 #define CONCAT_US6(a,b,c,d,e,f) a##_##b##_##c##_##d##_##e##_##f argument
46 #define CONCAT_DOT4(a,b,c,d) a.b.c.d argument
47 #define CONCAT_DOT5(a,b,c,d,e) a.b.c.d.e argument
48 #define CONCAT_DOT6(a,b,c,d,e,f) a.b.c.d.e.f argument
57 #define CONCAT_STR4(a,b,c,d) TO_STR(a:b:c:d) argument
[all …]
/rockchip-linux_mpp/mpp/codec/
H A Dmpp_rc.c131 p->d = 0; in mpp_pid_reset()
151 mpp_rc_dbg_rc("RC: pid ctx %p before update P %d I %d D %d\n", ctx, ctx->p, ctx->i, ctx->d); in mpp_pid_update()
153 ctx->d = val - ctx->p; /* Derivative */ in mpp_pid_update()
157 mpp_rc_dbg_rc("RC: pid ctx %p after update P %d I %d D %d\n", ctx, ctx->p, ctx->i, ctx->d); in mpp_pid_update()
168 RK_S32 a = p->p * p->coef_p + p->i * p->coef_i + p->d * p->coef_d; in mpp_pid_calc()
173 mpp_rc_dbg_rc("RC: pid ctx %p d %10d coef %d\n", p, p->d, p->coef_d); in mpp_pid_calc()
/rockchip-linux_mpp/
H A DAndroid.bp151 …; git log HEAD~0 -1 --oneline --date=short --pretty=format:\"%h author: %<|(30)%an %cd %s %d\"`;" +
152 …; git log HEAD~1 -1 --oneline --date=short --pretty=format:\"%h author: %<|(30)%an %cd %s %d\"`;" +
153 …; git log HEAD~2 -1 --oneline --date=short --pretty=format:\"%h author: %<|(30)%an %cd %s %d\"`;" +
154 …; git log HEAD~3 -1 --oneline --date=short --pretty=format:\"%h author: %<|(30)%an %cd %s %d\"`;" +
155 …; git log HEAD~4 -1 --oneline --date=short --pretty=format:\"%h author: %<|(30)%an %cd %s %d\"`;" +
156 …; git log HEAD~5 -1 --oneline --date=short --pretty=format:\"%h author: %<|(30)%an %cd %s %d\"`;" +
157 …; git log HEAD~6 -1 --oneline --date=short --pretty=format:\"%h author: %<|(30)%an %cd %s %d\"`;" +
158 …; git log HEAD~7 -1 --oneline --date=short --pretty=format:\"%h author: %<|(30)%an %cd %s %d\"`;" +
159 …; git log HEAD~8 -1 --oneline --date=short --pretty=format:\"%h author: %<|(30)%an %cd %s %d\"`;" +
160 …; git log HEAD~9 -1 --oneline --date=short --pretty=format:\"%h author: %<|(30)%an %cd %s %d\"`;" +
H A Dreadme.txt22 d. module header
H A DCMakeLists.txt224 set(GIT_LOG_FORMAT "%h author: %<|(30)%an %cd %s %d")
/rockchip-linux_mpp/mpp/base/
H A Dmpp_enc_ref.c355 MppEncRefCfgImpl *d = (MppEncRefCfgImpl *)dst; in mpp_enc_ref_cfg_copy() local
361 MPP_FREE(d->lt_cfg); in mpp_enc_ref_cfg_copy()
362 MPP_FREE(d->st_cfg); in mpp_enc_ref_cfg_copy()
365 memcpy(d, s, sizeof(*d)); in mpp_enc_ref_cfg_copy()
377 d->lt_cfg = lt_cfg; in mpp_enc_ref_cfg_copy()
389 d->st_cfg = st_cfg; in mpp_enc_ref_cfg_copy()
/rockchip-linux_mpp/mpp/codec/dec/jpeg/
H A Djpegd_parser.h28 #define JPEG_IDENTIFIER(a, b, c, d) \ argument
29 ((RK_U32)(d) | ((RK_U32)(c) << 8) | \
/rockchip-linux_mpp/inc/
H A Dmpp_meta.h12 #define FOURCC_META(a, b, c, d) ((RK_U32)(a) << 24 | \ argument
15 ((RK_U32)(d) << 0))
/rockchip-linux_mpp/mpp/codec/inc/
H A Dmpp_rc.h46 RK_S32 d; member
/rockchip-linux_mpp/mpp/codec/dec/vp9/
H A Dvp9d_parser.c505 RK_S32 d; in update_prob() local
523 d = vpx_rac_get_uint(c, 4) + 0; in update_prob()
525 d = vpx_rac_get_uint(c, 4) + 16; in update_prob()
527 d = vpx_rac_get_uint(c, 5) + 32; in update_prob()
529 d = vpx_rac_get_uint(c, 7); in update_prob()
530 if (d >= 65) in update_prob()
531 d = (d << 1) - 65 + vpx_rac_get(c); in update_prob()
532 d += 64; in update_prob()
535 *delta = d; in update_prob()
536 return p <= 128 ? 1 + inv_recenter_nonneg(inv_map_table[d], p - 1) : in update_prob()
[all …]
/rockchip-linux_mpp/mpp/hal/vpu/jpegd/
H A Dhal_jpegd_vdpu1.c362 unsigned int d = 100; in jpegd_setup_pp() local
378 d = 86; in jpegd_setup_pp()
491 tmp = (satur * (int) d) / 64; in jpegd_setup_pp()
H A Dhal_jpegd_vdpu2.c381 unsigned int d = 100; in jpegd_setup_pp() local
397 d = 86; in jpegd_setup_pp()
510 tmp = (satur * (int) d) / 64; in jpegd_setup_pp()
/rockchip-linux_mpp/mpp/codec/dec/av1/
H A Dav1d_parser.c233 static RK_S16 resolve_divisor(RK_U32 d, RK_S16 *shift) in resolve_divisor() argument
237 *shift = mpp_log2(d); in resolve_divisor()
238 e = d - (1 << (*shift)); in resolve_divisor()
/rockchip-linux_mpp/LICENSES/
H A DApache-2.0114 d. If the Work includes a "NOTICE" text file as part of its
/rockchip-linux_mpp/kmpp/base/
H A Dkmpp_obj.c252 MPP_OBJ_ACCESS_IMPL(s32, rk_s32, % d)
/rockchip-linux_mpp/tools/
H A Dmpp_doxyfile762 # *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, *.m, *.markdown,