Searched defs:tokens (Results 1 - 8 of 8) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
H A Dvp9_treewriter.c13 static void tree2tok(struct vp9_token *tokens, const vp9_tree_index *tree, argument
21 tokens[-j].value = v;
22 tokens[-j].len = l;
24 tree2tok(tokens, tree, j, v, l);
29 void vp9_tokens_from_tree(struct vp9_token *tokens, argument
31 tree2tok(tokens, tree, 0, 0, 0);
H A Dvp9_encodemb.c96 // to scan previous tokens to work out the correct context.
115 vp9_token_state tokens[1025][2]; local
146 tokens[eob][0].rate = 0;
147 tokens[eob][0].error = 0;
148 tokens[eob][0].next = default_eob;
149 tokens[eob][0].token = EOB_TOKEN;
150 tokens[eob][0].qc = 0;
151 *(tokens[eob] + 1) = *(tokens[eob] + 0);
165 error0 = tokens[nex
[all...]
H A Dvp9_onyx_if.c609 unsigned int tokens = get_token_alloc(cm->mb_rows, cm->mb_cols); local
611 CHECK_MEM_ERROR(cm, cpi->tok, vpx_calloc(tokens, sizeof(*cpi->tok)));
/hardware/qcom/display/msm8084/libqdutils/
H A Dmdp_version.cpp169 char *tokens[10]; local
170 memset(tokens, 0, sizeof(tokens));
172 if(!tokenizeParams(readLine, TOKEN_PARAMS_DELIM, tokens,
174 if(!strncmp(tokens[0], "pu_en", strlen("pu_en"))) {
175 mPanelInfo.mPartialUpdateEnable = atoi(tokens[1]);
180 if(!strncmp(tokens[0], "xstart", strlen("xstart"))) {
181 mPanelInfo.mLeftAlign = atoi(tokens[1]);
184 if(!strncmp(tokens[0], "walign", strlen("walign"))) {
185 mPanelInfo.mWidthAlign = atoi(tokens[
246 char *tokens[10]; local
[all...]
/hardware/qcom/display/msm8226/libqdutils/
H A Dmdp_version.cpp175 char *tokens[10]; local
176 memset(tokens, 0, sizeof(tokens));
178 if(!tokenizeParams(readLine, TOKEN_PARAMS_DELIM, tokens,
180 if(!strncmp(tokens[0], "pu_en", strlen("pu_en"))) {
181 mPanelInfo.mPartialUpdateEnable = atoi(tokens[1]);
186 if(!strncmp(tokens[0], "xstart", strlen("xstart"))) {
187 mPanelInfo.mLeftAlign = atoi(tokens[1]);
190 if(!strncmp(tokens[0], "walign", strlen("walign"))) {
191 mPanelInfo.mWidthAlign = atoi(tokens[
252 char *tokens[10]; local
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
H A Dencodemb.c229 vp8_token_state tokens[17][2]; local
283 tokens[eob][0].rate = 0;
284 tokens[eob][0].error = 0;
285 tokens[eob][0].next = 16;
286 tokens[eob][0].token = DCT_EOB_TOKEN;
287 tokens[eob][0].qc = 0;
288 *(tokens[eob] + 1) = *(tokens[eob] + 0);
302 error0 = tokens[next][0].error;
303 error1 = tokens[nex
[all...]
H A Dbitstream.c400 int tokens = (int)(stop - p); local
402 vp8_pack_tokens_c(w, p, tokens);
419 int tokens = (int)(stop - p); local
421 vp8_pack_tokens_c(w, p, tokens);
H A Donyx_if.c1190 unsigned int tokens = 8 * 24 * 16; /* one MB for each thread */ local
1192 unsigned int tokens = cm->mb_rows * cm->mb_cols * 24 * 16; local
1194 CHECK_MEM_ERROR(cpi->tok, vpx_calloc(tokens, sizeof(*cpi->tok)));

Completed in 209 milliseconds