Home
last modified time | relevance | path

Searched refs:tic (Results 1 – 25 of 30) sorted by relevance

12

/external/mesa3d/src/gallium/drivers/nouveau/nv50/
Dnv50_tex.c34 case PIPE_SWIZZLE_X : return fmt->tic.src_x; in nv50_tic_swizzle()
35 case PIPE_SWIZZLE_Y: return fmt->tic.src_y; in nv50_tic_swizzle()
36 case PIPE_SWIZZLE_Z : return fmt->tic.src_z; in nv50_tic_swizzle()
37 case PIPE_SWIZZLE_W: return fmt->tic.src_w; in nv50_tic_swizzle()
70 uint32_t *tic; in nv50_create_texture_view() local
90 tic = &view->tic[0]; in nv50_create_texture_view()
104 tic[0] = (fmt->tic.format << G80_TIC_0_COMPONENTS_SIZES__SHIFT) | in nv50_create_texture_view()
105 (fmt->tic.type_r << G80_TIC_0_R_DATA_TYPE__SHIFT) | in nv50_create_texture_view()
106 (fmt->tic.type_g << G80_TIC_0_G_DATA_TYPE__SHIFT) | in nv50_create_texture_view()
107 (fmt->tic.type_b << G80_TIC_0_B_DATA_TYPE__SHIFT) | in nv50_create_texture_view()
[all …]
Dnv50_screen.h90 } tic; member
174 } tic; member
187 nv50_screen_tic_unlock(struct nv50_screen *screen, struct nv50_tic_entry *tic) in nv50_screen_tic_unlock() argument
189 if (tic->id >= 0) in nv50_screen_tic_unlock()
190 screen->tic.lock[tic->id / 32] &= ~(1 << (tic->id % 32)); in nv50_screen_tic_unlock()
201 nv50_screen_tic_free(struct nv50_screen *screen, struct nv50_tic_entry *tic) in nv50_screen_tic_free() argument
203 if (tic->id >= 0) { in nv50_screen_tic_free()
204 screen->tic.entries[tic->id] = NULL; in nv50_screen_tic_free()
205 screen->tic.lock[tic->id / 32] &= ~(1 << (tic->id % 32)); in nv50_screen_tic_free()
Dnv50_screen.c502 FREE(screen->tic.entries); in nv50_screen_destroy()
1035 screen->tic.entries = CALLOC(4096, sizeof(void *)); in nv50_screen_create()
1036 screen->tsc.entries = screen->tic.entries + 2048; in nv50_screen_create()
1061 int i = screen->tic.next; in nv50_screen_tic_alloc()
1063 while (screen->tic.lock[i / 32] & (1 << (i % 32))) in nv50_screen_tic_alloc()
1066 screen->tic.next = (i + 1) & (NV50_TIC_MAX_ENTRIES - 1); in nv50_screen_tic_alloc()
1068 if (screen->tic.entries[i]) in nv50_screen_tic_alloc()
1069 nv50_tic_entry(screen->tic.entries[i])->id = -1; in nv50_screen_tic_alloc()
1071 screen->tic.entries[i] = entry; in nv50_screen_tic_alloc()
Dnv50_stateobj_tex.h22 uint32_t tic[8]; member
/external/mesa3d/src/gallium/drivers/nouveau/nvc0/
Dnvc0_tex.c39 case PIPE_SWIZZLE_X : return fmt->tic.src_x; in nv50_tic_swizzle()
40 case PIPE_SWIZZLE_Y: return fmt->tic.src_y; in nv50_tic_swizzle()
41 case PIPE_SWIZZLE_Z : return fmt->tic.src_z; in nv50_tic_swizzle()
42 case PIPE_SWIZZLE_W: return fmt->tic.src_w; in nv50_tic_swizzle()
74 uint32_t *tic; in gm107_create_texture_view() local
97 tic = &view->tic[0]; in gm107_create_texture_view()
108 tic[0] = fmt->tic.format << GM107_TIC2_0_COMPONENTS_SIZES__SHIFT; in gm107_create_texture_view()
109 tic[0] |= fmt->tic.type_r << GM107_TIC2_0_R_DATA_TYPE__SHIFT; in gm107_create_texture_view()
110 tic[0] |= fmt->tic.type_g << GM107_TIC2_0_G_DATA_TYPE__SHIFT; in gm107_create_texture_view()
111 tic[0] |= fmt->tic.type_b << GM107_TIC2_0_B_DATA_TYPE__SHIFT; in gm107_create_texture_view()
[all …]
Dnvc0_screen.h92 } tic; member
187 } tic; member
200 nvc0_screen_tic_unlock(struct nvc0_screen *screen, struct nv50_tic_entry *tic) in nvc0_screen_tic_unlock() argument
202 if (tic->bindless) in nvc0_screen_tic_unlock()
204 if (tic->id >= 0) in nvc0_screen_tic_unlock()
205 screen->tic.lock[tic->id / 32] &= ~(1 << (tic->id % 32)); in nvc0_screen_tic_unlock()
216 nvc0_screen_tic_free(struct nvc0_screen *screen, struct nv50_tic_entry *tic) in nvc0_screen_tic_free() argument
218 if (tic->id >= 0) { in nvc0_screen_tic_free()
219 screen->tic.entries[tic->id] = NULL; in nvc0_screen_tic_free()
220 screen->tic.lock[tic->id / 32] &= ~(1 << (tic->id % 32)); in nvc0_screen_tic_free()
Dnve4_compute.c202 struct nv50_tic_entry *tic; in gm107_compute_validate_surfaces() local
206 tic = nv50_tic_entry(nvc0->images_tic[s][slot]); in gm107_compute_validate_surfaces()
208 res = nv04_resource(tic->pipe.texture); in gm107_compute_validate_surfaces()
209 nvc0_update_tic(nvc0, tic, res); in gm107_compute_validate_surfaces()
211 if (tic->id < 0) { in gm107_compute_validate_surfaces()
212 tic->id = nvc0_screen_tic_alloc(nvc0->screen, tic); in gm107_compute_validate_surfaces()
217 PUSH_DATAh(push, txc->offset + (tic->id * 32)); in gm107_compute_validate_surfaces()
218 PUSH_DATA (push, txc->offset + (tic->id * 32)); in gm107_compute_validate_surfaces()
224 PUSH_DATAp(push, &tic->tic[0], 8); in gm107_compute_validate_surfaces()
227 PUSH_DATA (push, (tic->id << 4) | 1); in gm107_compute_validate_surfaces()
[all …]
Dnvc0_screen.c574 FREE(screen->tic.entries); in nvc0_screen_destroy()
1134 screen->tic.maxwell = true; in nvc0_screen_create()
1136 screen->tic.maxwell = in nvc0_screen_create()
1138 IMMED_NVC0(push, SUBC_3D(0x0f10), screen->tic.maxwell); in nvc0_screen_create()
1280 screen->tic.entries = CALLOC( in nvc0_screen_create()
1283 screen->tsc.entries = screen->tic.entries + NVC0_TIC_MAX_ENTRIES; in nvc0_screen_create()
1304 int i = screen->tic.next; in nvc0_screen_tic_alloc()
1306 while (screen->tic.lock[i / 32] & (1 << (i % 32))) in nvc0_screen_tic_alloc()
1309 screen->tic.next = (i + 1) & (NVC0_TIC_MAX_ENTRIES - 1); in nvc0_screen_tic_alloc()
1311 if (screen->tic.entries[i]) in nvc0_screen_tic_alloc()
[all …]
Dnvc0_state_validate.c769 struct nv50_tic_entry *tic = nv50_tic_entry(new_view); in nvc0_validate_fbread() local
770 assert(tic->id < 0); in nvc0_validate_fbread()
771 tic->id = nvc0_screen_tic_alloc(screen, tic); in nvc0_validate_fbread()
772 nvc0->base.push_data(&nvc0->base, screen->txc, tic->id * 32, in nvc0_validate_fbread()
773 NV_VRAM_DOMAIN(&screen->base), 32, tic->tic); in nvc0_validate_fbread()
774 screen->tic.lock[tic->id / 32] |= 1 << (tic->id % 32); in nvc0_validate_fbread()
783 PUSH_DATA (push, (screen->default_tsc->id << 20) | tic->id); in nvc0_validate_fbread()
786 PUSH_DATA (push, (tic->id << 9) | 1); in nvc0_validate_fbread()
Dnvc0_vbo.c1028 struct nv50_tic_entry *tic = nv50_tic_entry(nvc0->textures[s][i]); in nvc0_draw_vbo() local
1033 PUSH_DATA (push, (tic->id << 4) | 1); in nvc0_draw_vbo()
/external/icu/icu4c/source/data/lang/
Dca.txt207 got{"gòtic"}
550 uga{"ugarític"}
563 vot{"vòtic"}
640 Egyd{"demòtic egipci"}
641 Egyh{"hieràtic egipci"}
647 Glag{"glagolític"}
648 Goth{"gòtic"}
699 Mero{"meroític"}
765 Ugar{"ugarític"}
960 FONIPA{"alfabet fonètic internacional"}
[all …]
/external/arm-optimized-routines/test/
Dmathbench.c242 tic (void) in tic() function
255 uint64_t t0 = tic (); \
258 uint64_t t1 = tic (); \
/external/hyphenation-patterns/en-US/
Dushyphex.tex35 anach-ro-nis-tic
303 dia-lec-tic
338 dys-lec-tic
416 ga-lac-tic
490 hy-per-elas-tic-ity
493 hy-po-elas-tic-ity
525 in-ter-ga-lac-tic
838 poro-elas-tic
1111 sto-chas-tic
1170 ther-mo-elas-tic
Dhyph-en-us.hyp.txt36 anach-ro-nis-tic
304 dia-lec-tic
339 dys-lec-tic
417 ga-lac-tic
491 hy-per-elas-tic-ity
494 hy-po-elas-tic-ity
526 in-ter-ga-lac-tic
839 poro-elas-tic
1112 sto-chas-tic
1171 ther-mo-elas-tic
/external/mesa3d/src/gallium/drivers/nouveau/codegen/
Dnv50_ir_build_util.cpp246 uint16_t tic, uint16_t tsc, in mkTex() argument
257 tex->setTexture(targ, tic, tsc); in mkTex()
Dnv50_ir_build_util.h79 uint16_t tic, uint16_t tsc,
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/data/transformtest/
Dsr-Latn-t-sr-m0-bgn.txt250 заштићена zaštićena
Daz-t-az-cyrl-m0-bgn.txt118 нәтиҹәсиндә nəticəsində
/external/python/cpython3/Doc/tutorial/
Ddatastructures.rst575 >>> for i, v in enumerate(['tic', 'tac', 'toe']):
578 0 tic
/external/python/cpython2/Doc/tutorial/
Ddatastructures.rst614 >>> for i, v in enumerate(['tic', 'tac', 'toe']):
617 0 tic
/external/icu/icu4c/source/data/curr/
Dca.txt928 "ruble soviètic",
2225 one{"ruble soviètic"}
/external/hyphenation-patterns/es/
Dhyph-es.pat.txt3277tic
/external/icu/icu4c/source/data/locales/
Dca.txt1396 phonetic_alphabet{"alfabet fonètic"}
/external/hyphenation-patterns/de/
Dhyph-de-1996.pat.txt20145 2tic
/external/cldr/tools/java/org/unicode/cldr/util/data/
Diso-639-3_Name_Index.tab6602 tic Tira Tira

12