Home
last modified time | relevance | path

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

12

/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/
Dnv50_tex.c55 nv50_init_tic_entry_linear(uint32_t *tic, struct pipe_resource *res) in nv50_init_tic_entry_linear() argument
58 tic[2] |= NV50_TIC_2_LINEAR | NV50_TIC_2_TARGET_BUFFER; in nv50_init_tic_entry_linear()
59 tic[4] = res->width0; in nv50_init_tic_entry_linear()
63 tic[2] |= NV50_TIC_2_LINEAR | NV50_TIC_2_TARGET_RECT; in nv50_init_tic_entry_linear()
65 tic[2] |= NV50_TIC_2_NORMALIZED_COORDS; in nv50_init_tic_entry_linear()
66 tic[3] = mt->level[0].pitch; in nv50_init_tic_entry_linear()
67 tic[4] = res->width0; in nv50_init_tic_entry_linear()
68 tic[5] = (1 << 16) | res->height0; in nv50_init_tic_entry_linear()
79 uint32_t *tic; in nv50_create_sampler_view() local
99 tic = &view->tic[0]; in nv50_create_sampler_view()
[all …]
Dnv50_screen.h52 } tic; member
110 uint32_t tic; member
118 nv50_screen_tic_unlock(struct nv50_screen *screen, struct nv50_tic_entry *tic) in nv50_screen_tic_unlock() argument
120 if (tic->id >= 0) in nv50_screen_tic_unlock()
121 screen->tic.lock[tic->id / 32] &= ~(1 << (tic->id % 32)); in nv50_screen_tic_unlock()
132 nv50_screen_tic_free(struct nv50_screen *screen, struct nv50_tic_entry *tic) in nv50_screen_tic_free() argument
134 if (tic->id >= 0) { in nv50_screen_tic_free()
135 screen->tic.entries[tic->id] = NULL; in nv50_screen_tic_free()
136 screen->tic.lock[tic->id / 32] &= ~(1 << (tic->id % 32)); in nv50_screen_tic_free()
Dnv50_screen.c286 if (screen->tic.entries) in nv50_screen_destroy()
287 FREE(screen->tic.entries); in nv50_screen_destroy()
765 screen->tic.entries = CALLOC(4096, sizeof(void *)); in nv50_screen_create()
766 screen->tsc.entries = screen->tic.entries + 2048; in nv50_screen_create()
785 int i = screen->tic.next; in nv50_screen_tic_alloc()
787 while (screen->tic.lock[i / 32] & (1 << (i % 32))) in nv50_screen_tic_alloc()
790 screen->tic.next = (i + 1) & (NV50_TIC_MAX_ENTRIES - 1); in nv50_screen_tic_alloc()
792 if (screen->tic.entries[i]) in nv50_screen_tic_alloc()
793 nv50_tic_entry(screen->tic.entries[i])->id = -1; in nv50_screen_tic_alloc()
795 screen->tic.entries[i] = entry; in nv50_screen_tic_alloc()
Dnv50_stateobj_tex.h21 uint32_t tic[8]; member
Dnv50_surface.c697 ent->tic[2] &= ~(1 << 31); /* scaled coordinates, ok with 3d textures ? */ in nv50_blit_fixup_tic_entry()
701 ent->tic[3] = 0x20000000; /* affects quality of near vertical edges in MS8 */ in nv50_blit_fixup_tic_entry()
/external/mesa3d/src/gallium/drivers/nv50/
Dnv50_tex.c55 nv50_init_tic_entry_linear(uint32_t *tic, struct pipe_resource *res) in nv50_init_tic_entry_linear() argument
58 tic[2] |= NV50_TIC_2_LINEAR | NV50_TIC_2_TARGET_BUFFER; in nv50_init_tic_entry_linear()
59 tic[4] = res->width0; in nv50_init_tic_entry_linear()
63 tic[2] |= NV50_TIC_2_LINEAR | NV50_TIC_2_TARGET_RECT; in nv50_init_tic_entry_linear()
65 tic[2] |= NV50_TIC_2_NORMALIZED_COORDS; in nv50_init_tic_entry_linear()
66 tic[3] = mt->level[0].pitch; in nv50_init_tic_entry_linear()
67 tic[4] = res->width0; in nv50_init_tic_entry_linear()
68 tic[5] = (1 << 16) | res->height0; in nv50_init_tic_entry_linear()
79 uint32_t *tic; in nv50_create_sampler_view() local
99 tic = &view->tic[0]; in nv50_create_sampler_view()
[all …]
Dnv50_screen.h52 } tic; member
110 uint32_t tic; member
118 nv50_screen_tic_unlock(struct nv50_screen *screen, struct nv50_tic_entry *tic) in nv50_screen_tic_unlock() argument
120 if (tic->id >= 0) in nv50_screen_tic_unlock()
121 screen->tic.lock[tic->id / 32] &= ~(1 << (tic->id % 32)); in nv50_screen_tic_unlock()
132 nv50_screen_tic_free(struct nv50_screen *screen, struct nv50_tic_entry *tic) in nv50_screen_tic_free() argument
134 if (tic->id >= 0) { in nv50_screen_tic_free()
135 screen->tic.entries[tic->id] = NULL; in nv50_screen_tic_free()
136 screen->tic.lock[tic->id / 32] &= ~(1 << (tic->id % 32)); in nv50_screen_tic_free()
Dnv50_screen.c286 if (screen->tic.entries) in nv50_screen_destroy()
287 FREE(screen->tic.entries); in nv50_screen_destroy()
765 screen->tic.entries = CALLOC(4096, sizeof(void *)); in nv50_screen_create()
766 screen->tsc.entries = screen->tic.entries + 2048; in nv50_screen_create()
785 int i = screen->tic.next; in nv50_screen_tic_alloc()
787 while (screen->tic.lock[i / 32] & (1 << (i % 32))) in nv50_screen_tic_alloc()
790 screen->tic.next = (i + 1) & (NV50_TIC_MAX_ENTRIES - 1); in nv50_screen_tic_alloc()
792 if (screen->tic.entries[i]) in nv50_screen_tic_alloc()
793 nv50_tic_entry(screen->tic.entries[i])->id = -1; in nv50_screen_tic_alloc()
795 screen->tic.entries[i] = entry; in nv50_screen_tic_alloc()
Dnv50_stateobj_tex.h21 uint32_t tic[8]; member
/external/mesa3d/src/gallium/drivers/nvc0/
Dnvc0_tex.c63 uint32_t *tic; in nvc0_create_sampler_view() local
84 tic = &view->tic[0]; in nvc0_create_sampler_view()
88 tic[0] = nvc0_format_table[view->pipe.format].tic; in nvc0_create_sampler_view()
92 swz[0] = nv50_tic_swizzle(tic[0], view->pipe.swizzle_r, tex_int); in nvc0_create_sampler_view()
93 swz[1] = nv50_tic_swizzle(tic[0], view->pipe.swizzle_g, tex_int); in nvc0_create_sampler_view()
94 swz[2] = nv50_tic_swizzle(tic[0], view->pipe.swizzle_b, tex_int); in nvc0_create_sampler_view()
95 swz[3] = nv50_tic_swizzle(tic[0], view->pipe.swizzle_a, tex_int); in nvc0_create_sampler_view()
96 tic[0] = (tic[0] & ~NV50_TIC_0_SWIZZLE__MASK) | in nvc0_create_sampler_view()
104 tic[2] = 0x10001000 | NV50_TIC_2_NO_BORDER; in nvc0_create_sampler_view()
107 tic[2] |= NV50_TIC_2_COLORSPACE_SRGB; in nvc0_create_sampler_view()
[all …]
Dnvc0_screen.h48 } tic; member
109 uint32_t tic; member
117 nvc0_screen_tic_unlock(struct nvc0_screen *screen, struct nv50_tic_entry *tic) in nvc0_screen_tic_unlock() argument
119 if (tic->id >= 0) in nvc0_screen_tic_unlock()
120 screen->tic.lock[tic->id / 32] &= ~(1 << (tic->id % 32)); in nvc0_screen_tic_unlock()
131 nvc0_screen_tic_free(struct nvc0_screen *screen, struct nv50_tic_entry *tic) in nvc0_screen_tic_free() argument
133 if (tic->id >= 0) { in nvc0_screen_tic_free()
134 screen->tic.entries[tic->id] = NULL; in nvc0_screen_tic_free()
135 screen->tic.lock[tic->id / 32] &= ~(1 << (tic->id % 32)); in nvc0_screen_tic_free()
Dnvc0_screen.c274 if (screen->tic.entries) in nvc0_screen_destroy()
275 FREE(screen->tic.entries); in nvc0_screen_destroy()
756 screen->tic.entries = CALLOC(4096, sizeof(void *)); in nvc0_screen_create()
757 screen->tsc.entries = screen->tic.entries + 2048; in nvc0_screen_create()
778 int i = screen->tic.next; in nvc0_screen_tic_alloc()
780 while (screen->tic.lock[i / 32] & (1 << (i % 32))) in nvc0_screen_tic_alloc()
783 screen->tic.next = (i + 1) & (NVC0_TIC_MAX_ENTRIES - 1); in nvc0_screen_tic_alloc()
785 if (screen->tic.entries[i]) in nvc0_screen_tic_alloc()
786 nv50_tic_entry(screen->tic.entries[i])->id = -1; in nvc0_screen_tic_alloc()
788 screen->tic.entries[i] = entry; in nvc0_screen_tic_alloc()
Dnvc0_surface.c763 ent->tic[2] &= ~(1 << 31); /* scaled coordinates, ok with 3d textures ? */ in nvc0_blit_fixup_tic_entry()
769 ent->tic[3] = 0x20000000; in nvc0_blit_fixup_tic_entry()
771 ent->tic[3] = 0; in nvc0_blit_fixup_tic_entry()
772 ent->tic[6] = 0; in nvc0_blit_fixup_tic_entry()
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/
Dnvc0_tex.c63 uint32_t *tic; in nvc0_create_sampler_view() local
84 tic = &view->tic[0]; in nvc0_create_sampler_view()
88 tic[0] = nvc0_format_table[view->pipe.format].tic; in nvc0_create_sampler_view()
92 swz[0] = nv50_tic_swizzle(tic[0], view->pipe.swizzle_r, tex_int); in nvc0_create_sampler_view()
93 swz[1] = nv50_tic_swizzle(tic[0], view->pipe.swizzle_g, tex_int); in nvc0_create_sampler_view()
94 swz[2] = nv50_tic_swizzle(tic[0], view->pipe.swizzle_b, tex_int); in nvc0_create_sampler_view()
95 swz[3] = nv50_tic_swizzle(tic[0], view->pipe.swizzle_a, tex_int); in nvc0_create_sampler_view()
96 tic[0] = (tic[0] & ~NV50_TIC_0_SWIZZLE__MASK) | in nvc0_create_sampler_view()
104 tic[2] = 0x10001000 | NV50_TIC_2_NO_BORDER; in nvc0_create_sampler_view()
107 tic[2] |= NV50_TIC_2_COLORSPACE_SRGB; in nvc0_create_sampler_view()
[all …]
Dnvc0_screen.h48 } tic; member
109 uint32_t tic; member
117 nvc0_screen_tic_unlock(struct nvc0_screen *screen, struct nv50_tic_entry *tic) in nvc0_screen_tic_unlock() argument
119 if (tic->id >= 0) in nvc0_screen_tic_unlock()
120 screen->tic.lock[tic->id / 32] &= ~(1 << (tic->id % 32)); in nvc0_screen_tic_unlock()
131 nvc0_screen_tic_free(struct nvc0_screen *screen, struct nv50_tic_entry *tic) in nvc0_screen_tic_free() argument
133 if (tic->id >= 0) { in nvc0_screen_tic_free()
134 screen->tic.entries[tic->id] = NULL; in nvc0_screen_tic_free()
135 screen->tic.lock[tic->id / 32] &= ~(1 << (tic->id % 32)); in nvc0_screen_tic_free()
Dnvc0_screen.c274 if (screen->tic.entries) in nvc0_screen_destroy()
275 FREE(screen->tic.entries); in nvc0_screen_destroy()
756 screen->tic.entries = CALLOC(4096, sizeof(void *)); in nvc0_screen_create()
757 screen->tsc.entries = screen->tic.entries + 2048; in nvc0_screen_create()
778 int i = screen->tic.next; in nvc0_screen_tic_alloc()
780 while (screen->tic.lock[i / 32] & (1 << (i % 32))) in nvc0_screen_tic_alloc()
783 screen->tic.next = (i + 1) & (NVC0_TIC_MAX_ENTRIES - 1); in nvc0_screen_tic_alloc()
785 if (screen->tic.entries[i]) in nvc0_screen_tic_alloc()
786 nv50_tic_entry(screen->tic.entries[i])->id = -1; in nvc0_screen_tic_alloc()
788 screen->tic.entries[i] = entry; in nvc0_screen_tic_alloc()
Dnvc0_surface.c763 ent->tic[2] &= ~(1 << 31); /* scaled coordinates, ok with 3d textures ? */ in nvc0_blit_fixup_tic_entry()
769 ent->tic[3] = 0x20000000; in nvc0_blit_fixup_tic_entry()
771 ent->tic[3] = 0; in nvc0_blit_fixup_tic_entry()
772 ent->tic[6] = 0; in nvc0_blit_fixup_tic_entry()
/external/chromium_org/ui/keyboard/
Dkeyboard_util.cc62 ui::TextInputClient* tic = input_method->GetTextInputClient(); in InsertText() local
63 if (!tic || tic->GetTextInputType() == ui::TEXT_INPUT_TYPE_NONE) in InsertText()
66 tic->InsertText(text); in InsertText()
135 ui::TextInputClient* tic = input_method->GetTextInputClient(); in SendKeyEvent() local
138 tic->InsertChar(static_cast<uint16>(key_value), ui::EF_NONE); in SendKeyEvent()
Dkeyboard_ui_handler.cc91 ui::TextInputClient* tic = input_method->GetTextInputClient(); in HandleGetInputContextMessage() local
93 tic ? tic->GetTextInputType() : ui::TEXT_INPUT_TYPE_NONE); in HandleGetInputContextMessage()
/external/chromium_org/third_party/icu/source/data/lang/
Dca.txt15 collation{"ordre alfabètic"}
188 got{"gòtic"}
489 uga{"ugarític"}
499 vot{"vòtic"}
554 Egyd{"demòtic egipci"}
555 Egyh{"hieràtic egipci"}
560 Glag{"glagolític"}
561 Goth{"gòtic"}
600 Mero{"meroític"}
647 Ugar{"ugarític"}
[all …]
/external/icu4c/data/lang/
Dca.txt23 collation{"ordre alfabètic"}
220 got{"gòtic"}
562 uga{"ugarític"}
572 vot{"vòtic"}
639 Egyd{"demòtic egipci"}
640 Egyh{"hieràtic egipci"}
645 Glag{"glagolític"}
646 Goth{"gòtic"}
694 Mero{"meroític"}
754 Ugar{"ugarític"}
[all …]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
Dnv50_ir_build_util.cpp245 BuildUtil::mkTex(operation op, TexTarget targ, uint8_t tic, uint8_t tsc, in mkTex() argument
255 tex->setTexture(targ, tic, tsc); in mkTex()
Dnv50_ir_build_util.h76 Instruction *mkTex(operation, TexTarget, uint8_t tic, uint8_t tsc,
/external/mesa3d/src/gallium/drivers/nv50/codegen/
Dnv50_ir_build_util.cpp245 BuildUtil::mkTex(operation op, TexTarget targ, uint8_t tic, uint8_t tsc, in mkTex() argument
255 tex->setTexture(targ, tic, tsc); in mkTex()
Dnv50_ir_build_util.h76 Instruction *mkTex(operation, TexTarget, uint8_t tic, uint8_t tsc,

12