/third_party/mesa3d/src/gallium/drivers/nouveau/nv50/ |
D | nv50_tex.c | 34 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() 69 uint32_t *tic; in nv50_create_texture_view() local 89 tic = &view->tic[0]; in nv50_create_texture_view() 103 tic[0] = (fmt->tic.format << G80_TIC_0_COMPONENTS_SIZES__SHIFT) | in nv50_create_texture_view() 104 (fmt->tic.type_r << G80_TIC_0_R_DATA_TYPE__SHIFT) | in nv50_create_texture_view() 105 (fmt->tic.type_g << G80_TIC_0_G_DATA_TYPE__SHIFT) | in nv50_create_texture_view() 106 (fmt->tic.type_b << G80_TIC_0_B_DATA_TYPE__SHIFT) | in nv50_create_texture_view() [all …]
|
D | nv50_screen.h | 90 } 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()
|
D | nv50_screen.c | 622 FREE(screen->tic.entries); in nv50_screen_destroy() 1206 screen->tic.entries = CALLOC(4096, sizeof(void *)); in nv50_screen_create() 1207 screen->tsc.entries = screen->tic.entries + 2048; in nv50_screen_create() 1232 int i = screen->tic.next; in nv50_screen_tic_alloc() 1234 while (screen->tic.lock[i / 32] & (1 << (i % 32))) in nv50_screen_tic_alloc() 1237 screen->tic.next = (i + 1) & (NV50_TIC_MAX_ENTRIES - 1); in nv50_screen_tic_alloc() 1239 if (screen->tic.entries[i]) in nv50_screen_tic_alloc() 1240 nv50_tic_entry(screen->tic.entries[i])->id = -1; in nv50_screen_tic_alloc() 1242 screen->tic.entries[i] = entry; in nv50_screen_tic_alloc()
|
D | nv50_stateobj_tex.h | 22 uint32_t tic[8]; member
|
/third_party/mesa3d/src/gallium/drivers/nouveau/nvc0/ |
D | nvc0_tex.c | 39 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() 73 uint32_t *tic; in gm107_create_texture_view() local 96 tic = &view->tic[0]; in gm107_create_texture_view() 107 tic[0] = fmt->tic.format << GM107_TIC2_0_COMPONENTS_SIZES__SHIFT; in gm107_create_texture_view() 108 tic[0] |= fmt->tic.type_r << GM107_TIC2_0_R_DATA_TYPE__SHIFT; in gm107_create_texture_view() 109 tic[0] |= fmt->tic.type_g << GM107_TIC2_0_G_DATA_TYPE__SHIFT; in gm107_create_texture_view() 110 tic[0] |= fmt->tic.type_b << GM107_TIC2_0_B_DATA_TYPE__SHIFT; in gm107_create_texture_view() [all …]
|
D | nvc0_screen.h | 97 } tic; member 198 } tic; member 211 nvc0_screen_tic_unlock(struct nvc0_screen *screen, struct nv50_tic_entry *tic) in nvc0_screen_tic_unlock() argument 213 if (tic->bindless) in nvc0_screen_tic_unlock() 215 if (tic->id >= 0) in nvc0_screen_tic_unlock() 216 screen->tic.lock[tic->id / 32] &= ~(1 << (tic->id % 32)); in nvc0_screen_tic_unlock() 227 nvc0_screen_tic_free(struct nvc0_screen *screen, struct nv50_tic_entry *tic) in nvc0_screen_tic_free() argument 229 if (tic->id >= 0) { in nvc0_screen_tic_free() 230 screen->tic.entries[tic->id] = NULL; in nvc0_screen_tic_free() 231 screen->tic.lock[tic->id / 32] &= ~(1 << (tic->id % 32)); in nvc0_screen_tic_free()
|
D | nve4_compute.c | 227 struct nv50_tic_entry *tic; in gm107_compute_validate_surfaces() local 231 tic = nv50_tic_entry(nvc0->images_tic[s][slot]); in gm107_compute_validate_surfaces() 233 res = nv04_resource(tic->pipe.texture); in gm107_compute_validate_surfaces() 234 nvc0_update_tic(nvc0, tic, res); in gm107_compute_validate_surfaces() 236 if (tic->id < 0) { in gm107_compute_validate_surfaces() 237 tic->id = nvc0_screen_tic_alloc(nvc0->screen, tic); in gm107_compute_validate_surfaces() 242 PUSH_DATAh(push, txc->offset + (tic->id * 32)); in gm107_compute_validate_surfaces() 243 PUSH_DATA (push, txc->offset + (tic->id * 32)); in gm107_compute_validate_surfaces() 249 PUSH_DATAp(push, &tic->tic[0], 8); in gm107_compute_validate_surfaces() 252 PUSH_DATA (push, (tic->id << 4) | 1); in gm107_compute_validate_surfaces() [all …]
|
D | nvc0_screen.c | 727 FREE(screen->tic.entries); in nvc0_screen_destroy() 1381 screen->tic.maxwell = true; in nvc0_screen_create() 1383 screen->tic.maxwell = in nvc0_screen_create() 1385 IMMED_NVC0(push, SUBC_3D(0x0f10), screen->tic.maxwell); in nvc0_screen_create() 1552 screen->tic.entries = CALLOC( in nvc0_screen_create() 1555 screen->tsc.entries = screen->tic.entries + NVC0_TIC_MAX_ENTRIES; in nvc0_screen_create() 1573 int i = screen->tic.next; in nvc0_screen_tic_alloc() 1575 while (screen->tic.lock[i / 32] & (1 << (i % 32))) in nvc0_screen_tic_alloc() 1578 screen->tic.next = (i + 1) & (NVC0_TIC_MAX_ENTRIES - 1); in nvc0_screen_tic_alloc() 1580 if (screen->tic.entries[i]) in nvc0_screen_tic_alloc() [all …]
|
D | nvc0_state_validate.c | 844 struct nv50_tic_entry *tic = nv50_tic_entry(new_view); in nvc0_validate_fbread() local 845 assert(tic->id < 0); in nvc0_validate_fbread() 846 tic->id = nvc0_screen_tic_alloc(screen, tic); in nvc0_validate_fbread() 847 nvc0->base.push_data(&nvc0->base, screen->txc, tic->id * 32, in nvc0_validate_fbread() 848 NV_VRAM_DOMAIN(&screen->base), 32, tic->tic); in nvc0_validate_fbread() 849 screen->tic.lock[tic->id / 32] |= 1 << (tic->id % 32); in nvc0_validate_fbread() 858 PUSH_DATA (push, (0 << 20) | tic->id); in nvc0_validate_fbread() 861 PUSH_DATA (push, (tic->id << 9) | 1); in nvc0_validate_fbread()
|
D | nvc0_vbo.c | 1070 struct nv50_tic_entry *tic = nv50_tic_entry(nvc0->textures[s][i]); in nvc0_draw_vbo() local 1075 PUSH_DATA (push, (tic->id << 4) | 1); in nvc0_draw_vbo()
|
/third_party/flutter/skia/third_party/externals/icu/source/data/lang/ |
D | ca.txt | 207 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 …]
|
/third_party/skia/third_party/externals/icu/source/data/lang/ |
D | ca.txt | 210 got{"gòtic"} 552 uga{"ugarític"} 565 vot{"vòtic"} 652 Egyd{"demòtic egipci"} 653 Egyh{"hieràtic egipci"} 659 Glag{"glagolític"} 660 Goth{"gòtic"} 711 Mero{"meroític"} 778 Ugar{"ugarític"} 973 FONIPA{"alfabet fonètic internacional"} [all …]
|
/third_party/icu/icu4c/source/data/lang/ |
D | ca.txt | 210 got{"gòtic"} 552 uga{"ugarític"} 565 vot{"vòtic"} 652 Egyd{"demòtic egipci"} 653 Egyh{"hieràtic egipci"} 659 Glag{"glagolític"} 660 Goth{"gòtic"} 711 Mero{"meroític"} 778 Ugar{"ugarític"} 973 FONIPA{"alfabet fonètic internacional"} [all …]
|
/third_party/optimized-routines/math/test/ |
D | mathbench.c | 512 tic (void) in tic() function 525 uint64_t t0 = tic (); \ 528 uint64_t t1 = tic (); \
|
/third_party/mesa3d/docs/relnotes/ |
D | 11.0.1.rst | 81 - nv50,nvc0: detect underlying resource changes and update tic
|
/third_party/mesa3d/src/gallium/drivers/nouveau/codegen/ |
D | nv50_ir_build_util.cpp | 248 uint16_t tic, uint16_t tsc, in mkTex() argument 259 tex->setTexture(targ, tic, tsc); in mkTex()
|
D | nv50_ir_build_util.h | 80 uint16_t tic, uint16_t tsc,
|
/third_party/python/Doc/tutorial/ |
D | datastructures.rst | 582 >>> for i, v in enumerate(['tic', 'tac', 'toe']): 585 0 tic
|
/third_party/skia/third_party/externals/icu/source/data/curr/ |
D | ca.txt | 929 "ruble soviètic", 2226 one{"ruble soviètic"}
|
/third_party/flutter/skia/third_party/externals/icu/source/data/curr/ |
D | ca.txt | 928 "ruble soviètic", 2225 one{"ruble soviètic"}
|
/third_party/icu/icu4c/source/data/curr/ |
D | ca.txt | 929 "ruble soviètic", 2226 one{"ruble soviètic"}
|
/third_party/skia/third_party/externals/icu/source/data/locales/ |
D | ca.txt | 1174 phonetic_alphabet{"alfabet fonètic"}
|
/third_party/flutter/skia/third_party/externals/icu/source/data/locales/ |
D | ca.txt | 1396 phonetic_alphabet{"alfabet fonètic"}
|
/third_party/icu/icu4c/source/data/locales/ |
D | ca.txt | 1174 phonetic_alphabet{"alfabet fonètic"}
|
/third_party/pulseaudio/po/ |
D | ca.po | 2720 msgstr "Control de guany automàtic" 2724 msgstr "Sense control de guany automàtic"
|