Searched refs:ht (Results 1 - 25 of 186) sorted by relevance

12345678

/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_handle_table.c64 struct handle_table *ht; local
66 ht = MALLOC_STRUCT(handle_table);
67 if(!ht)
70 ht->objects = (void **)CALLOC(HANDLE_TABLE_INITIAL_SIZE, sizeof(void *));
71 if(!ht->objects) {
72 FREE(ht);
76 ht->size = HANDLE_TABLE_INITIAL_SIZE;
77 ht->filled = 0;
79 ht->destroy = NULL;
81 return ht;
86 handle_table_set_destroy(struct handle_table *ht, void (*destroy)(void *object)) argument
100 handle_table_resize(struct handle_table *ht, unsigned minimum_size) argument
130 handle_table_clear(struct handle_table *ht, unsigned index) argument
152 handle_table_add(struct handle_table *ht, void *object) argument
190 handle_table_set(struct handle_table *ht, unsigned handle, void *object) argument
220 handle_table_get(struct handle_table *ht, unsigned handle) argument
237 handle_table_remove(struct handle_table *ht, unsigned handle) argument
261 handle_table_get_next_handle(struct handle_table *ht, unsigned handle) argument
276 handle_table_get_first_handle(struct handle_table *ht) argument
283 handle_table_destroy(struct handle_table *ht) argument
[all...]
H A Du_handle_table.h63 handle_table_set_destroy(struct handle_table *ht,
73 handle_table_add(struct handle_table *ht,
80 handle_table_set(struct handle_table *ht,
90 handle_table_get(struct handle_table *ht,
95 handle_table_remove(struct handle_table *ht,
100 handle_table_destroy(struct handle_table *ht);
104 handle_table_get_first_handle(struct handle_table *ht);
108 handle_table_get_next_handle(struct handle_table *ht,
H A Du_hash_table.c82 struct util_hash_table *ht; local
84 ht = MALLOC_STRUCT(util_hash_table);
85 if(!ht)
88 ht->cso = cso_hash_create();
89 if(!ht->cso) {
90 FREE(ht);
94 ht->hash = hash;
95 ht->compare = compare;
97 return ht;
102 util_hash_table_find_iter(struct util_hash_table *ht, argument
122 util_hash_table_find_item(struct util_hash_table *ht, void *key, unsigned key_hash) argument
142 util_hash_table_set(struct util_hash_table *ht, void *key, void *value) argument
181 util_hash_table_get(struct util_hash_table *ht, void *key) argument
202 util_hash_table_remove(struct util_hash_table *ht, void *key) argument
228 util_hash_table_clear(struct util_hash_table *ht) argument
247 util_hash_table_foreach(struct util_hash_table *ht, enum pipe_error (*callback) (void *key, void *value, void *data), void *data) argument
274 util_hash_table_destroy(struct util_hash_table *ht) argument
[all...]
H A Du_hash_table.h64 util_hash_table_set(struct util_hash_table *ht,
69 util_hash_table_get(struct util_hash_table *ht,
74 util_hash_table_remove(struct util_hash_table *ht,
79 util_hash_table_clear(struct util_hash_table *ht);
83 util_hash_table_foreach(struct util_hash_table *ht,
89 util_hash_table_destroy(struct util_hash_table *ht);
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_handle_table.c64 struct handle_table *ht; local
66 ht = MALLOC_STRUCT(handle_table);
67 if(!ht)
70 ht->objects = (void **)CALLOC(HANDLE_TABLE_INITIAL_SIZE, sizeof(void *));
71 if(!ht->objects) {
72 FREE(ht);
76 ht->size = HANDLE_TABLE_INITIAL_SIZE;
77 ht->filled = 0;
79 ht->destroy = NULL;
81 return ht;
86 handle_table_set_destroy(struct handle_table *ht, void (*destroy)(void *object)) argument
100 handle_table_resize(struct handle_table *ht, unsigned minimum_size) argument
130 handle_table_clear(struct handle_table *ht, unsigned index) argument
152 handle_table_add(struct handle_table *ht, void *object) argument
190 handle_table_set(struct handle_table *ht, unsigned handle, void *object) argument
220 handle_table_get(struct handle_table *ht, unsigned handle) argument
237 handle_table_remove(struct handle_table *ht, unsigned handle) argument
261 handle_table_get_next_handle(struct handle_table *ht, unsigned handle) argument
276 handle_table_get_first_handle(struct handle_table *ht) argument
283 handle_table_destroy(struct handle_table *ht) argument
[all...]
H A Du_handle_table.h63 handle_table_set_destroy(struct handle_table *ht,
73 handle_table_add(struct handle_table *ht,
80 handle_table_set(struct handle_table *ht,
90 handle_table_get(struct handle_table *ht,
95 handle_table_remove(struct handle_table *ht,
100 handle_table_destroy(struct handle_table *ht);
104 handle_table_get_first_handle(struct handle_table *ht);
108 handle_table_get_next_handle(struct handle_table *ht,
H A Du_hash_table.c82 struct util_hash_table *ht; local
84 ht = MALLOC_STRUCT(util_hash_table);
85 if(!ht)
88 ht->cso = cso_hash_create();
89 if(!ht->cso) {
90 FREE(ht);
94 ht->hash = hash;
95 ht->compare = compare;
97 return ht;
102 util_hash_table_find_iter(struct util_hash_table *ht, argument
122 util_hash_table_find_item(struct util_hash_table *ht, void *key, unsigned key_hash) argument
142 util_hash_table_set(struct util_hash_table *ht, void *key, void *value) argument
181 util_hash_table_get(struct util_hash_table *ht, void *key) argument
202 util_hash_table_remove(struct util_hash_table *ht, void *key) argument
228 util_hash_table_clear(struct util_hash_table *ht) argument
247 util_hash_table_foreach(struct util_hash_table *ht, enum pipe_error (*callback) (void *key, void *value, void *data), void *data) argument
274 util_hash_table_destroy(struct util_hash_table *ht) argument
[all...]
H A Du_hash_table.h64 util_hash_table_set(struct util_hash_table *ht,
69 util_hash_table_get(struct util_hash_table *ht,
74 util_hash_table_remove(struct util_hash_table *ht,
79 util_hash_table_clear(struct util_hash_table *ht);
83 util_hash_table_foreach(struct util_hash_table *ht,
89 util_hash_table_destroy(struct util_hash_table *ht);
/external/chromium_org/third_party/mesa/src/src/mesa/program/
H A Dhash_table.c60 struct hash_table *ht; local
68 ht = malloc(sizeof(*ht) + ((num_buckets - 1)
69 * sizeof(ht->buckets[0])));
70 if (ht != NULL) {
71 ht->hash = hash;
72 ht->compare = compare;
73 ht->num_buckets = num_buckets;
76 make_empty_list(& ht->buckets[i]);
80 return ht;
85 hash_table_dtor(struct hash_table *ht) argument
93 hash_table_clear(struct hash_table *ht) argument
112 get_node(struct hash_table *ht, const void *key) argument
130 hash_table_find(struct hash_table *ht, const void *key) argument
138 hash_table_insert(struct hash_table *ht, void *data, const void *key) argument
153 hash_table_replace(struct hash_table *ht, void *data, const void *key) argument
179 hash_table_remove(struct hash_table *ht, const void *key) argument
190 hash_table_call_foreach(struct hash_table *ht, void (*callback)(const void *key, void *data, void *closure), void *closure) argument
[all...]
H A Dhash_table.h73 extern void hash_table_dtor(struct hash_table *ht);
79 * \param ht Table to be cleared of its entries.
81 extern void hash_table_clear(struct hash_table *ht);
87 * \param ht Table to be searched
95 extern void *hash_table_find(struct hash_table *ht, const void *key);
112 extern void hash_table_insert(struct hash_table *ht, void *data,
129 extern bool hash_table_replace(struct hash_table *ht, void *data,
135 extern void hash_table_remove(struct hash_table *ht, const void *key);
185 hash_table_call_foreach(struct hash_table *ht,
212 this->ht
284 struct hash_table *ht; member in struct:string_to_uint_map
[all...]
/external/mesa3d/src/mesa/program/
H A Dhash_table.c60 struct hash_table *ht; local
68 ht = malloc(sizeof(*ht) + ((num_buckets - 1)
69 * sizeof(ht->buckets[0])));
70 if (ht != NULL) {
71 ht->hash = hash;
72 ht->compare = compare;
73 ht->num_buckets = num_buckets;
76 make_empty_list(& ht->buckets[i]);
80 return ht;
85 hash_table_dtor(struct hash_table *ht) argument
93 hash_table_clear(struct hash_table *ht) argument
112 get_node(struct hash_table *ht, const void *key) argument
130 hash_table_find(struct hash_table *ht, const void *key) argument
138 hash_table_insert(struct hash_table *ht, void *data, const void *key) argument
153 hash_table_replace(struct hash_table *ht, void *data, const void *key) argument
179 hash_table_remove(struct hash_table *ht, const void *key) argument
190 hash_table_call_foreach(struct hash_table *ht, void (*callback)(const void *key, void *data, void *closure), void *closure) argument
[all...]
H A Dhash_table.h73 extern void hash_table_dtor(struct hash_table *ht);
79 * \param ht Table to be cleared of its entries.
81 extern void hash_table_clear(struct hash_table *ht);
87 * \param ht Table to be searched
95 extern void *hash_table_find(struct hash_table *ht, const void *key);
112 extern void hash_table_insert(struct hash_table *ht, void *data,
129 extern bool hash_table_replace(struct hash_table *ht, void *data,
135 extern void hash_table_remove(struct hash_table *ht, const void *key);
185 hash_table_call_foreach(struct hash_table *ht,
212 this->ht
284 struct hash_table *ht; member in struct:string_to_uint_map
[all...]
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dir_clone.cpp31 ir_rvalue::clone(void *mem_ctx, struct hash_table *ht) const
45 ir_variable::clone(void *mem_ctx, struct hash_table *ht) const
78 var->constant_value = this->constant_value->clone(mem_ctx, ht);
82 this->constant_initializer->clone(mem_ctx, ht);
84 if (ht) {
85 hash_table_insert(ht, var, (void *)const_cast<ir_variable *>(this));
92 ir_swizzle::clone(void *mem_ctx, struct hash_table *ht) const
94 return new(mem_ctx) ir_swizzle(this->val->clone(mem_ctx, ht), this->mask);
98 ir_return::clone(void *mem_ctx, struct hash_table *ht) const
103 new_value = this->value->clone(mem_ctx, ht);
391 fixup_ir_call_visitor(struct hash_table *ht) argument
413 struct hash_table *ht; member in class:fixup_ir_call_visitor
418 fixup_function_calls(struct hash_table *ht, exec_list *instructions) argument
428 struct hash_table *ht = local
[all...]
/external/mesa3d/src/glsl/
H A Dir_clone.cpp31 ir_rvalue::clone(void *mem_ctx, struct hash_table *ht) const
45 ir_variable::clone(void *mem_ctx, struct hash_table *ht) const
78 var->constant_value = this->constant_value->clone(mem_ctx, ht);
82 this->constant_initializer->clone(mem_ctx, ht);
84 if (ht) {
85 hash_table_insert(ht, var, (void *)const_cast<ir_variable *>(this));
92 ir_swizzle::clone(void *mem_ctx, struct hash_table *ht) const
94 return new(mem_ctx) ir_swizzle(this->val->clone(mem_ctx, ht), this->mask);
98 ir_return::clone(void *mem_ctx, struct hash_table *ht) const
103 new_value = this->value->clone(mem_ctx, ht);
391 fixup_ir_call_visitor(struct hash_table *ht) argument
413 struct hash_table *ht; member in class:fixup_ir_call_visitor
418 fixup_function_calls(struct hash_table *ht, exec_list *instructions) argument
428 struct hash_table *ht = local
[all...]
/external/chromium_org/third_party/npapi/npspy/extern/nspr/
H A Dplhash.h111 PL_HashTableDestroy(PLHashTable *ht); variable
115 PL_HashTableAdd(PLHashTable *ht, const void *key, void *value);
118 PL_HashTableRemove(PLHashTable *ht, const void *key);
121 PL_HashTableLookup(PLHashTable *ht, const void *key);
124 PL_HashTableLookupConst(PLHashTable *ht, const void *key);
127 PL_HashTableEnumerateEntries(PLHashTable *ht, PLHashEnumerator f, void *arg);
143 PL_HashTableRawLookup(PLHashTable *ht, PLHashNumber keyHash, const void *key);
146 PL_HashTableRawLookupConst(PLHashTable *ht, PLHashNumber keyHash,
150 PL_HashTableRawAdd(PLHashTable *ht, PLHashEntry **hep, PLHashNumber keyHash,
154 PL_HashTableRawRemove(PLHashTable *ht, PLHashEntr
[all...]
/external/libhevc/common/
H A Dihevc_padding.c66 * @param[in] ht
75 * @param[in] ht
91 WORD32 ht,
100 memcpy(pu1_src + (ht + row - 1) * src_strd,
101 pu1_src + (ht - 1) * src_strd, wd);
120 * @param[in] ht
129 * @param[in] ht
145 WORD32 ht,
157 for(row = 0; row < ht; row++)
187 * @param[in] ht
89 ihevc_pad_vert(UWORD8 *pu1_src, WORD32 src_strd, WORD32 ht, WORD32 wd, WORD32 pad_size) argument
143 ihevc_pad_horz_chroma(UWORD8 *pu1_src, WORD32 src_strd, WORD32 ht, WORD32 wd, WORD32 pad_size) argument
210 ihevc_pad_horz_luma(UWORD8 *pu1_src, WORD32 src_strd, WORD32 ht, WORD32 wd, WORD32 pad_size) argument
377 ihevc_pad_left_luma(UWORD8 *pu1_src, WORD32 src_strd, WORD32 ht, WORD32 pad_size) argument
433 ihevc_pad_left_chroma(UWORD8 *pu1_src, WORD32 src_strd, WORD32 ht, WORD32 pad_size) argument
498 ihevc_pad_right_luma(UWORD8 *pu1_src, WORD32 src_strd, WORD32 ht, WORD32 pad_size) argument
554 ihevc_pad_right_chroma(UWORD8 *pu1_src, WORD32 src_strd, WORD32 ht, WORD32 pad_size) argument
[all...]
H A Dihevc_sao.c80 WORD32 ht)
88 for(row = 0; row < ht; row++)
95 pu1_src_top[col] = pu1_src[(ht - 1) * src_strd + col];
108 for(row = 0; row < ht; row++)
134 WORD32 ht)
143 for(row = 0; row < ht; row++)
152 pu1_src_top[col] = pu1_src[(ht - 1) * src_strd + col];
168 for(row = 0; row < ht; row++)
196 WORD32 ht)
212 for(row = 0; row < ht; ro
72 ihevc_sao_band_offset_luma(UWORD8 *pu1_src, WORD32 src_strd, UWORD8 *pu1_src_left, UWORD8 *pu1_src_top, UWORD8 *pu1_src_top_left, WORD32 sao_band_pos, WORD8 *pi1_sao_offset, WORD32 wd, WORD32 ht) argument
124 ihevc_sao_band_offset_chroma(UWORD8 *pu1_src, WORD32 src_strd, UWORD8 *pu1_src_left, UWORD8 *pu1_src_top, UWORD8 *pu1_src_top_left, WORD32 sao_band_pos_u, WORD32 sao_band_pos_v, WORD8 *pi1_sao_offset_u, WORD8 *pi1_sao_offset_v, WORD32 wd, WORD32 ht) argument
186 ihevc_sao_edge_offset_class0(UWORD8 *pu1_src, WORD32 src_strd, UWORD8 *pu1_src_left, UWORD8 *pu1_src_top, UWORD8 *pu1_src_top_left, UWORD8 *pu1_src_top_right, UWORD8 *pu1_src_bot_left, UWORD8 *pu1_avail, WORD8 *pi1_sao_offset, WORD32 wd, WORD32 ht) argument
268 ihevc_sao_edge_offset_class0_chroma(UWORD8 *pu1_src, WORD32 src_strd, UWORD8 *pu1_src_left, UWORD8 *pu1_src_top, UWORD8 *pu1_src_top_left, UWORD8 *pu1_src_top_right, UWORD8 *pu1_src_bot_left, UWORD8 *pu1_avail, WORD8 *pi1_sao_offset_u, WORD8 *pi1_sao_offset_v, WORD32 wd, WORD32 ht) argument
365 ihevc_sao_edge_offset_class1(UWORD8 *pu1_src, WORD32 src_strd, UWORD8 *pu1_src_left, UWORD8 *pu1_src_top, UWORD8 *pu1_src_top_left, UWORD8 *pu1_src_top_right, UWORD8 *pu1_src_bot_left, UWORD8 *pu1_avail, WORD8 *pi1_sao_offset, WORD32 wd, WORD32 ht) argument
458 ihevc_sao_edge_offset_class1_chroma(UWORD8 *pu1_src, WORD32 src_strd, UWORD8 *pu1_src_left, UWORD8 *pu1_src_top, UWORD8 *pu1_src_top_left, UWORD8 *pu1_src_top_right, UWORD8 *pu1_src_bot_left, UWORD8 *pu1_avail, WORD8 *pi1_sao_offset_u, WORD8 *pi1_sao_offset_v, WORD32 wd, WORD32 ht) argument
557 ihevc_sao_edge_offset_class2(UWORD8 *pu1_src, WORD32 src_strd, UWORD8 *pu1_src_left, UWORD8 *pu1_src_top, UWORD8 *pu1_src_top_left, UWORD8 *pu1_src_top_right, UWORD8 *pu1_src_bot_left, UWORD8 *pu1_avail, WORD8 *pi1_sao_offset, WORD32 wd, WORD32 ht) argument
745 ihevc_sao_edge_offset_class2_chroma(UWORD8 *pu1_src, WORD32 src_strd, UWORD8 *pu1_src_left, UWORD8 *pu1_src_top, UWORD8 *pu1_src_top_left, UWORD8 *pu1_src_top_right, UWORD8 *pu1_src_bot_left, UWORD8 *pu1_avail, WORD8 *pi1_sao_offset_u, WORD8 *pi1_sao_offset_v, WORD32 wd, WORD32 ht) argument
981 ihevc_sao_edge_offset_class3(UWORD8 *pu1_src, WORD32 src_strd, UWORD8 *pu1_src_left, UWORD8 *pu1_src_top, UWORD8 *pu1_src_top_left, UWORD8 *pu1_src_top_right, UWORD8 *pu1_src_bot_left, UWORD8 *pu1_avail, WORD8 *pi1_sao_offset, WORD32 wd, WORD32 ht) argument
1157 ihevc_sao_edge_offset_class3_chroma(UWORD8 *pu1_src, WORD32 src_strd, UWORD8 *pu1_src_left, UWORD8 *pu1_src_top, UWORD8 *pu1_src_top_left, UWORD8 *pu1_src_top_right, UWORD8 *pu1_src_bot_left, UWORD8 *pu1_avail, WORD8 *pi1_sao_offset_u, WORD8 *pi1_sao_offset_v, WORD32 wd, WORD32 ht) argument
[all...]
H A Dihevc_padding.h44 WORD32 ht,
51 WORD32 ht,
58 WORD32 ht,
65 WORD32 ht,
72 WORD32 ht,
79 WORD32 ht,
105 WORD32 ht,
110 WORD32 ht,
115 WORD32 ht,
120 WORD32 ht,
[all...]
H A Dihevc_inter_pred_filters.c75 * Copies the array of width 'wd' and height 'ht' from the location pointed
93 * @param[in] ht
113 WORD32 ht,
118 for(row = 0; row < ht; row++)
156 * @param[in] ht
175 WORD32 ht,
181 for(row = 0; row < ht; row++)
228 * @param[in] ht
248 WORD32 ht,
254 for(row = 0; row < ht; ro
108 ihevc_inter_pred_luma_copy(UWORD8 *pu1_src, UWORD8 *pu1_dst, WORD32 src_strd, WORD32 dst_strd, WORD8 *pi1_coeff, WORD32 ht, WORD32 wd) argument
170 ihevc_inter_pred_luma_horz(UWORD8 *pu1_src, UWORD8 *pu1_dst, WORD32 src_strd, WORD32 dst_strd, WORD8 *pi1_coeff, WORD32 ht, WORD32 wd) argument
243 ihevc_inter_pred_luma_vert(UWORD8 *pu1_src, UWORD8 *pu1_dst, WORD32 src_strd, WORD32 dst_strd, WORD8 *pi1_coeff, WORD32 ht, WORD32 wd) argument
316 ihevc_inter_pred_luma_copy_w16out(UWORD8 *pu1_src, WORD16 *pi2_dst, WORD32 src_strd, WORD32 dst_strd, WORD8 *pi1_coeff, WORD32 ht, WORD32 wd) argument
382 ihevc_inter_pred_luma_horz_w16out(UWORD8 *pu1_src, WORD16 *pi2_dst, WORD32 src_strd, WORD32 dst_strd, WORD8 *pi1_coeff, WORD32 ht, WORD32 wd) argument
453 ihevc_inter_pred_luma_vert_w16out(UWORD8 *pu1_src, WORD16 *pi2_dst, WORD32 src_strd, WORD32 dst_strd, WORD8 *pi1_coeff, WORD32 ht, WORD32 wd) argument
523 ihevc_inter_pred_luma_vert_w16inp(WORD16 *pi2_src, UWORD8 *pu1_dst, WORD32 src_strd, WORD32 dst_strd, WORD8 *pi1_coeff, WORD32 ht, WORD32 wd) argument
598 ihevc_inter_pred_luma_vert_w16inp_w16out(WORD16 *pi2_src, WORD16 *pi2_dst, WORD32 src_strd, WORD32 dst_strd, WORD8 *pi1_coeff, WORD32 ht, WORD32 wd) argument
670 ihevc_inter_pred_chroma_copy(UWORD8 *pu1_src, UWORD8 *pu1_dst, WORD32 src_strd, WORD32 dst_strd, WORD8 *pi1_coeff, WORD32 ht, WORD32 wd) argument
735 ihevc_inter_pred_chroma_horz(UWORD8 *pu1_src, UWORD8 *pu1_dst, WORD32 src_strd, WORD32 dst_strd, WORD8 *pi1_coeff, WORD32 ht, WORD32 wd) argument
817 ihevc_inter_pred_chroma_vert(UWORD8 *pu1_src, UWORD8 *pu1_dst, WORD32 src_strd, WORD32 dst_strd, WORD8 *pi1_coeff, WORD32 ht, WORD32 wd) argument
892 ihevc_inter_pred_chroma_copy_w16out(UWORD8 *pu1_src, WORD16 *pi2_dst, WORD32 src_strd, WORD32 dst_strd, WORD8 *pi1_coeff, WORD32 ht, WORD32 wd) argument
958 ihevc_inter_pred_chroma_horz_w16out(UWORD8 *pu1_src, WORD16 *pi2_dst, WORD32 src_strd, WORD32 dst_strd, WORD8 *pi1_coeff, WORD32 ht, WORD32 wd) argument
1034 ihevc_inter_pred_chroma_vert_w16out(UWORD8 *pu1_src, WORD16 *pi2_dst, WORD32 src_strd, WORD32 dst_strd, WORD8 *pi1_coeff, WORD32 ht, WORD32 wd) argument
1105 ihevc_inter_pred_chroma_vert_w16inp(WORD16 *pi2_src, UWORD8 *pu1_dst, WORD32 src_strd, WORD32 dst_strd, WORD8 *pi1_coeff, WORD32 ht, WORD32 wd) argument
1182 ihevc_inter_pred_chroma_vert_w16inp_w16out(WORD16 *pi2_src, WORD16 *pi2_dst, WORD32 src_strd, WORD32 dst_strd, WORD8 *pi1_coeff, WORD32 ht, WORD32 wd) argument
[all...]
H A Dihevc_sao.h60 WORD32 ht);
70 WORD32 ht,
83 WORD32 ht);
95 WORD32 ht,
108 WORD32 ht);
120 WORD32 ht,
134 WORD32 ht);
147 WORD32 ht,
160 WORD32 ht);
172 WORD32 ht,
[all...]
/external/chromium_org/third_party/polymer/components-chromium/core-animation/
H A Dcore-animation-group-extracted.js83 var ht = this.target !== null;
84 if (!ht) {
86 ht = ht || c.hasTarget();
89 return ht;
/external/libhevc/common/x86/
H A Dihevc_padding_ssse3_intr.c68 * @param[in] ht
77 * @param[in] ht
93 WORD32 ht,
105 for(row = 0; row < ht; row++)
139 * @param[in] ht
148 * @param[in] ht
164 WORD32 ht,
176 for(row = 0; row < ht; row++)
211 * @param[in] ht
220 * @param[in] ht
91 ihevc_pad_left_luma_ssse3(UWORD8 *pu1_src, WORD32 src_strd, WORD32 ht, WORD32 pad_size) argument
162 ihevc_pad_left_chroma_ssse3(UWORD8 *pu1_src, WORD32 src_strd, WORD32 ht, WORD32 pad_size) argument
234 ihevc_pad_right_luma_ssse3(UWORD8 *pu1_src, WORD32 src_strd, WORD32 ht, WORD32 pad_size) argument
304 ihevc_pad_right_chroma_ssse3(UWORD8 *pu1_src, WORD32 src_strd, WORD32 ht, WORD32 pad_size) argument
[all...]
/external/libhevc/decoder/
H A Dihevcd_fmt_conv.h50 WORD32 ht,
60 WORD32 ht,
72 WORD32 ht,
83 WORD32 ht,
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DLooperTest.java69 HandlerThread ht = new HandlerThread("test1");
70 ht.start();
71 Looper looper = ht.getLooper();
88 HandlerThread ht = new HandlerThread("test1");
89 ht.start();
90 Looper looper = ht.getLooper();
/external/chromium_org/third_party/sqlite/src/src/
H A Dhash.c28 pNew->ht = 0;
41 sqlite3_free(pH->ht);
42 pH->ht = 0;
123 sqlite3_free(pH->ht);
124 pH->ht = new_ht;
148 if( pH->ht ){
149 struct _ht *pEntry = &pH->ht[h];
182 if( pH->ht ){
183 pEntry = &pH->ht[h];
210 if( pH->ht ){
[all...]

Completed in 1185 milliseconds

12345678