| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/translate/ |
| translate.c | 35 #include "translate.h" 37 struct translate *translate_create( const struct translate_key *key ) 39 struct translate *translate = NULL; local 42 translate = translate_sse2_create( key ); 43 if (translate) 44 return translate; 46 (void)translate;
|
| translate_cache.c | 30 #include "translate.h" 57 struct translate *state = (struct translate*)cso_hash_iter_data(iter); 90 struct translate * translate_cache_find(struct translate_cache *cache, 94 struct translate *translate = (struct translate*) local 99 if (!translate) { 101 translate = translate_create(key); 102 cso_hash_insert(&cache->hash, hash_key, translate); [all...] |
| translate.h | 48 * Translate has to work on two more attributes because 86 struct translate; 89 typedef void (PIPE_CDECL *run_elts_func)(struct translate *, 96 typedef void (PIPE_CDECL *run_elts16_func)(struct translate *, 103 typedef void (PIPE_CDECL *run_elts8_func)(struct translate *, 110 typedef void (PIPE_CDECL *run_func)(struct translate *, 117 struct translate { struct 120 void (*release)( struct translate * ); 122 void (*set_buffer)( struct translate *, 136 struct translate *translate_create( const struct translate_key *key ) [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/translate/ |
| translate.c | 35 #include "translate.h" 37 struct translate *translate_create( const struct translate_key *key ) 39 struct translate *translate = NULL; local 42 translate = translate_sse2_create( key ); 43 if (translate) 44 return translate; 46 (void)translate;
|
| translate_cache.c | 30 #include "translate.h" 57 struct translate *state = (struct translate*)cso_hash_iter_data(iter); 90 struct translate * translate_cache_find(struct translate_cache *cache, 94 struct translate *translate = (struct translate*) local 99 if (!translate) { 101 translate = translate_create(key); 102 cso_hash_insert(cache->hash, hash_key, translate); [all...] |
| /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/gpio/ |
| gpio_service.h | 36 struct hw_translate translate; member in struct:gpio_service
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/ |
| st_atom_viewport.c | 59 float *translate = st->state.viewport[i].translate; local 61 _mesa_get_viewport_xform(ctx, i, scale, translate); 67 translate[1] = st->state.fb_height - translate[1];
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/ |
| st_atom_viewport.c | 53 float *translate = st->state.viewport[i].translate; local 55 _mesa_get_viewport_xform(ctx, i, scale, translate); 61 translate[1] = st->state.fb_height - translate[1];
|
| /xsrc/external/mit/xorg-server/dist/hw/sun/ |
| kbd_mode.c | 77 int code = 0, translate, direct = -1; local 93 translate = TR_ASCII; 98 translate = TR_EVENT; 102 translate = TR_NONE; 106 translate = TR_UNTRANS_EVENT; 121 if (ioctl(kbd_fd, KIOCTRANS, (caddr_t) &translate)) 138 int translate; local 140 if (ioctl(kbd_fd, KIOCGTRANS, (caddr_t) &translate)) { 147 ( translate == 0 ? "n (non-translated bytes)" : 148 ( translate == 1 ? "a (ascii bytes)" [all...] |
| /xsrc/external/mit/xorg-server.old/dist/hw/sun/ |
| kbd_mode.c | 77 int code = 0, translate, direct = -1; local 93 translate = TR_ASCII; 98 translate = TR_EVENT; 102 translate = TR_NONE; 106 translate = TR_UNTRANS_EVENT; 121 if (ioctl(kbd_fd, KIOCTRANS, (caddr_t) &translate)) 138 int translate; local 140 if (ioctl(kbd_fd, KIOCGTRANS, (caddr_t) &translate)) { 147 ( translate == 0 ? "n (non-translated bytes)" : 148 ( translate == 1 ? "a (ascii bytes)" [all...] |
| /src/sys/dev/wscons/ |
| wsemulvar.h | 49 int (*translate)(void *, keysym_t, const char **); member in struct:wsemul_ops
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/tnl/ |
| t_context.c | 197 float scale[3], translate[3]; local 198 _mesa_get_viewport_xform(ctx, 0, scale, translate); 199 _math_matrix_viewport(&tnl->_WindowMap, scale, translate,
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/tnl/ |
| t_context.c | 195 float scale[3], translate[3]; local 196 _mesa_get_viewport_xform(ctx, 0, scale, translate); 197 _math_matrix_viewport(&tnl->_WindowMap, scale, translate,
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/draw/ |
| draw_pt_fetch.c | 34 #include "translate/translate.h" 35 #include "translate/translate_cache.h" 41 struct translate *translate; member in struct:pt_fetch 133 if (!fetch->translate || 134 translate_key_compare(&fetch->translate->key, &key) != 0) 137 fetch->translate = translate_cache_find(fetch->cache, &key); 149 struct translate *translate = fetch->translate local 177 struct translate *translate = fetch->translate; local [all...] |
| draw_pt_emit.c | 34 #include "translate/translate.h" 35 #include "translate/translate_cache.h" 41 struct translate *translate; member in struct:pt_emit 81 /* Translate from pipeline vertices to hw vertices. 120 if (!emit->translate || 121 translate_key_compare(&emit->translate->key, &hw_key) != 0) { 123 emit->translate = translate_cache_find(emit->cache, &hw_key); 125 emit->translate->set_buffer(emit->translate, 2, &emit->zero4[0], 0, ~0) 146 struct translate *translate = emit->translate; local 220 struct translate *translate = emit->translate; local [all...] |
| draw_pipe_vbuf.c | 44 #include "translate/translate.h" 45 #include "translate/translate_cache.h" 61 struct translate *translate; member in struct:vbuf_stage 124 * translate. 128 vbuf->translate->set_buffer(vbuf->translate, 0, vertex->data[0], 0, ~0); 129 vbuf->translate->run(vbuf->translate, 0, 1, 0, 0, vbuf->vertex_ptr) [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/draw/ |
| draw_pt_fetch.c | 34 #include "translate/translate.h" 35 #include "translate/translate_cache.h" 41 struct translate *translate; member in struct:pt_fetch 55 * (draw_pt_fetch_emit.c) which has its own version to translate 138 if (!fetch->translate || 139 translate_key_compare(&fetch->translate->key, &key) != 0) 142 fetch->translate = translate_cache_find(fetch->cache, &key); 154 struct translate *translate = fetch->translate local 182 struct translate *translate = fetch->translate; local [all...] |
| draw_pt_emit.c | 34 #include "translate/translate.h" 35 #include "translate/translate_cache.h" 41 struct translate *translate; member in struct:pt_emit 79 /* Translate from pipeline vertices to hw vertices. 118 if (!emit->translate || 119 translate_key_compare(&emit->translate->key, &hw_key) != 0) { 121 emit->translate = translate_cache_find(emit->cache, &hw_key); 123 emit->translate->set_buffer(emit->translate, 2, &emit->zero4[0], 0, ~0) 144 struct translate *translate = emit->translate; local 216 struct translate *translate = emit->translate; local [all...] |
| draw_pt_fetch_emit.c | 40 #include "translate/translate.h" 41 #include "translate/translate_cache.h" 58 * - translate the vertex-shader output vertices to hw format 79 struct translate *translate; member in struct:fetch_emit_middle_end 153 if (!feme->translate || 154 translate_key_compare(&feme->translate->key, &key) != 0) 157 feme->translate = translate_cache_find(feme->cache, 160 feme->translate->set_buffer(feme->translate [all...] |
| /src/games/hunt/huntd/ |
| draw.c | 42 static char translate(char); 61 outch(pp, translate(*sp)); 275 outch(rpp, translate(ch)); 359 * translate: 364 translate(char ch) function
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/ |
| PPCBoolRetToInt.cpp | 90 // Translate a i1 value to an equivalent i32/i64 value: 91 Value *translate(Value *V) { function in class:__anon5029::PPCBoolRetToInt 249 BoolToIntMap[V] = translate(V); 252 // zero in the translate function.
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/nv30/ |
| nv30_push.c | 30 #include "translate/translate.h" 48 struct translate *translate; member in struct:push_context 102 ctx->translate->run_elts8(ctx->translate, elts, nr, 0, 0, ctx->push->cur); 134 ctx->translate->run_elts16(ctx->translate, elts, nr, 0, 0, ctx->push->cur); 166 ctx->translate->run_elts(ctx->translate, elts, nr, 0, 0, ctx->push->cur) [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/nv50/ |
| nv50_push.c | 6 #include "translate/translate.h" 24 struct translate *translate; member in struct:push_context 89 ctx->translate->run_elts8(ctx->translate, elts, nr, 128 ctx->translate->run_elts16(ctx->translate, elts, nr, 167 ctx->translate->run_elts(ctx->translate, elts, nr [all...] |
| nv50_stateobj.h | 55 struct translate *translate; member in struct:nv50_vertex_stateobj
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/nvc0/ |
| nvc0_stateobj.h | 48 uint32_t state_alt; /* buffer 0 and with source offset (for translate) */ 54 struct translate *translate; member in struct:nvc0_vertex_stateobj
|