HomeSort by relevance Sort by last modified time
    Searched defs:ht (Results 1 - 25 of 89) sorted by null

1 2 3 4

  /cts/tests/tests/os/src/android/os/cts/
HandlerThreadTest.java 36 MockHandlerThread ht = new MockHandlerThread("test"); local
37 assertEquals(-1, ht.getThreadId());
38 ht.start();
41 assertEquals(ht.getMyTid(), ht.getThreadId());
43 assertTrue(ht.isRunCalled());
45 assertTrue(ht.isOnLooperPreparedCalled());
47 assertNotNull(ht.getLooper());
48 Looper looper = ht.getLooper();
50 assertSame(ht.getMyLooper(), looper)
    [all...]
  /external/libmpeg2/common/
ideint_debug.c 96 WORD32 wd, ht, strd; local
99 ht = ps_pic->ai4_ht[i];
103 for (j = 0; j < ht; j++)
  /external/libavc/encoder/
ih264e_half_pel.c 190 WORD32 ht = HP_PL_HT, wd = HP_PL_WD; local
192 for (row = 0; row < ht; row++)
207 for (row = 0; row < ht; row++)
ih264e_mc.c 143 UWORD32 wd, ht; local
221 ht = (ps_curr_pu->b4_ht + 1) << 2;
265 i4_pred_strd, ht, wd, NULL,
322 UWORD32 wd, ht; local
360 ht = (ps_curr_pu->b4_ht + 1) << 1;
381 i4_pred_strd, u1_dx, u1_dy, ht, wd);
422 ht = (ps_curr_pu->b4_ht + 1) << 1;
439 u1_dy, ht, wd);
  /external/libavc/test/encoder/
psnr.c 100 WORD32 wd, ht, strd1, strd2; local
112 ht = ps_buf1->au4_ht[comp];
167 for(i = 0; i < ht; i++)
180 df_psnr[comp] /= (wd * ht);
recon.c 56 WORD32 wd, ht; local
69 ht = ps_raw_buf->au4_ht[comp];
71 for(i = 0; i < ht; i++)
input.c 122 WORD32 wd, ht, strd; local
131 ht = ps_raw_buf->au4_ht[0];
135 for(i = 0; i < ht; i++)
155 ht = ps_raw_buf->au4_ht[comp];
159 for(i = 0; i < ht; i++)
177 WORD32 wd, ht, strd; local
186 ht = ps_raw_buf->au4_ht[0];
190 for(i = 0; i < ht; i++)
210 ht = ps_raw_buf->au4_ht[comp];
214 for(i = 0; i < ht; i++
    [all...]
  /external/mesa3d/src/glsl/
ir_set_program_inouts.cpp 53 this->ht = hash_table_ctor(0,
59 hash_table_dtor(this->ht);
70 struct hash_table *ht; member in class:ir_set_program_inouts_visitor
109 if (hash_table_find(this->ht, ir->var) == NULL)
134 var = (ir_variable *)hash_table_find(this->ht, deref_var->var);
158 hash_table_insert(this->ht, ir, ir);
ir_validate.cpp 45 this->ht = hash_table_ctor(0, hash_table_pointer_hash,
51 this->data = ht;
56 hash_table_dtor(this->ht);
79 struct hash_table *ht; member in class:ir_validate
92 if (hash_table_find(ht, ir->var) == NULL) {
510 hash_table_insert(ht, ir, ir);
632 struct hash_table *ht = (struct hash_table *) data; local
634 if (hash_table_find(ht, ir)) {
640 hash_table_insert(ht, ir, ir);
link_functions.cpp 143 struct hash_table *ht = hash_table_ctor(0, hash_table_pointer_hash, local
150 ir_instruction *copy = original->clone(linked, ht);
159 ir_instruction *copy = original->clone(linked, ht);
164 hash_table_dtor(ht);
  /external/mesa3d/src/mesa/program/
hash_table.h 73 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 = hash_table_ctor(0, hash_table_string_hash
284 struct hash_table *ht; member in struct:string_to_uint_map
    [all...]
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
s_tmp3dec_file.h 97 huffcodetab ht[HUFF_TBL]; member in struct:__anon28209
  /frameworks/base/core/java/android/text/style/
IconMarginSpan.java 58 int ht = mBitmap.getHeight(); local
60 int need = ht - (v + fm.descent - fm.ascent - istartv);
64 need = ht - (v + fm.bottom - fm.top - istartv);
DrawableMarginSpan.java 61 int ht = mDrawable.getIntrinsicHeight(); local
63 int need = ht - (v + fm.descent - fm.ascent - istartv);
67 need = ht - (v + fm.bottom - fm.top - istartv);
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
LooperTest.java 69 HandlerThread ht = new HandlerThread("test1"); local
70 ht.start();
71 Looper looper = ht.getLooper();
88 HandlerThread ht = new HandlerThread("test1"); local
89 ht.start();
90 Looper looper = ht.getLooper();
  /external/libdrm/amdgpu/
util_hash_table.c 79 struct util_hash_table *ht; local
81 ht = malloc(sizeof(struct util_hash_table));
82 if(!ht)
85 ht->head = util_hash_create();
86 if(!ht->head) {
87 free(ht);
91 ht->make_hash = hash;
92 ht->compare = compare;
94 return ht;
98 util_hash_table_find_iter(struct util_hash_table *ht,
    [all...]
  /external/libmpeg2/decoder/
impeg2d_deinterlace.c 77 WORD32 ht,
84 ps_dst->ai4_ht[0] = ht;
85 ps_dst->ai4_ht[1] = ht / 2;
86 ps_dst->ai4_ht[2] = ht / 2;
235 WORD32 ht = ALIGN16(ps_dec->u2_vertical_size); local
238 pu1_buf_u = pu1_buf_y + wd * ht;
239 pu1_buf_v = pu1_buf_u + wd * ht / 4;
  /external/mesa3d/src/gallium/auxiliary/util/
u_handle_table.c 64 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;
    [all...]
u_hash_table.c 82 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,
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
symtab.h 40 typedef struct ht cpp_hash_table;
46 struct ht struct
97 extern void ht_load (cpp_hash_table *ht, hashnode *entries,
  /cts/tests/tests/database/src/android/database/cts/
ContentObserverTest.java 48 HandlerThread ht = new HandlerThread(getClass().getName()); local
49 ht.start();
50 Looper looper = ht.getLooper();
92 HandlerThread ht = new HandlerThread(getClass().getName()); local
93 ht.start();
94 Looper looper = ht.getLooper();
  /libcore/luni/src/test/java/libcore/java/util/
HashtableTest.java 74 Hashtable<String, String> ht = new Hashtable<>(); local
75 ht.put("one", "1");
76 ht.put("two", "2");
77 ht.put("three", "3");
79 ht.replaceAll((k, v) -> k + v);
80 assertEquals("one1", ht.get("one"));
81 assertEquals("two2", ht.get("two"));
82 assertEquals("three3", ht.get("three"));
83 assertEquals(3, ht.size());
86 ht.replaceAll(new java.util.function.BiFunction<String, String, String>()
    [all...]
  /packages/apps/LegacyCamera/src/com/android/camera/
CameraHolder.java 95 HandlerThread ht = new HandlerThread("CameraHolder"); local
96 ht.start();
97 mHandler = new MyHandler(ht.getLooper());
  /external/libvpx/libvpx/vp9/common/
vp9_idct.c 66 const transform_2d ht = IHT_8[tx_type]; local
70 ht.rows(input, outptr);
79 ht.cols(temp_in, temp_out);
100 const transform_2d ht = IHT_16[tx_type]; local
104 ht.rows(input, outptr);
113 ht.cols(temp_in, temp_out);
256 const highbd_transform_2d ht = HIGH_IHT_8[tx_type]; local
261 ht.rows(input, outptr, bd);
270 ht.cols(temp_in, temp_out, bd);
291 const highbd_transform_2d ht = HIGH_IHT_16[tx_type] local
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_tile_image.c 315 unsigned ht = (height + TILE_SIZE - 1) / TILE_SIZE; local
317 uint8_t *tiled = MALLOC(wt * ht * TILE_SIZE * TILE_SIZE * 4);

Completed in 936 milliseconds

1 2 3 4