| /xsrc/external/mit/freetype/dist/builds/atari/ |
| H A D | gen-purec-patch.sh | 18 mkdir -p ${OBJ_DIR}/builds/atari/tmp/orig 21 ( cd ${OBJ_DIR}/builds/atari/tmp/orig && cpio -idum ) 26 cp -pr orig purec 27 for f in `cd orig && find . -type f` 30 env LANG=C awk -f deflinejoiner.awk < orig/$f > purec/$f 35 env LANG=C awk -f deflinejoiner.awk < orig/include/ft2build.h >> purec/include/ft2build.h 37 env LANG=C diff -ur orig purec > ../purec.diff
|
| /xsrc/external/mit/libxkbfile/dist/src/ |
| H A D | xkbmisc.c | 471 XkbConvertGetByNameComponents(Bool toXkm, unsigned orig) argument 477 if (orig & XkbGBN_TypesMask) 479 if (orig & XkbGBN_CompatMapMask) 481 if (orig & XkbGBN_SymbolsMask) 483 if (orig & XkbGBN_IndicatorMapMask) 485 if (orig & XkbGBN_KeyNamesMask) 487 if (orig & XkbGBN_GeometryMask) 491 if (orig & XkmTypesMask) 493 if (orig & XkmCompatMapMask) 495 if (orig 510 XkbConvertXkbComponents(Bool toXkm,unsigned orig) argument [all...] |
| /xsrc/external/mit/fontconfig/dist/fontconfig/ |
| H A D | fcprivate.h | 34 #define FcPatternVapBuild(result, orig, va) \ 36 FcPattern *__p__ = (orig); \ 91 if (!orig) \
|
| /xsrc/external/mit/pixman/dist/test/ |
| H A D | rotate-test.c | 64 uint32_t *bytes, *orig; local in function:make_image 68 orig = bytes = malloc (WIDTH * HEIGHT * 4); 82 pixman_image_set_destroy_function (image, on_destroy, orig);
|
| H A D | composite-traps-test.c | 100 uint32_t *bits, *orig; local in function:test_composite 107 orig = bits = (uint32_t *)make_random_bytes (src_stride * src_height); 118 pixman_image_set_destroy_function (src_img, destroy_bits, orig);
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r600/sfn/ |
| H A D | sfn_value_gpr.h | 43 GPRValue(GPRValue&& orig) = default; 44 GPRValue(const GPRValue& orig) = default; 50 GPRValue& operator = (const GPRValue& orig) = default; 51 GPRValue& operator = (GPRValue&& orig) = default; 80 GPRVector(GPRVector&& orig) = default; 81 GPRVector(const GPRVector& orig); 83 GPRVector(const GPRVector& orig, const std::array<uint8_t, 4>& swizzle); 87 GPRVector& operator = (const GPRVector& orig) = default; 88 GPRVector& operator = (GPRVector&& orig) = default;
|
| H A D | sfn_shaderio.cpp | 242 const ShaderInputVarying& orig, size_t location): 245 m_location_frac(orig.location_frac()), 247 m_sid(orig.m_sid), 248 m_spi_sid(orig.m_spi_sid), 249 m_interpolate(orig.m_interpolate), 250 m_interpolate_loc(orig.m_interpolate_loc), 251 m_ij_index(orig.m_ij_index), 241 ShaderInputVarying(tgsi_semantic name,const ShaderInputVarying & orig,size_t location) argument
|
| H A D | sfn_value_gpr.cpp | 84 GPRVector::GPRVector(const GPRVector& orig): argument 86 m_elms(orig.m_elms), 87 m_valid(orig.m_valid) 118 GPRVector::GPRVector(const GPRVector& orig, const std::array<uint8_t,4>& swizzle) argument 121 m_elms[i] = orig.reg_i(swizzle[i]); 122 m_valid = orig.m_valid;
|
| /xsrc/external/mit/xorg-server.old/dist/xkb/ |
| H A D | xkbfmisc.c | 385 XkbConvertGetByNameComponents(Bool toXkm,unsigned orig) argument 391 if (orig&XkbGBN_TypesMask) rtrn|= XkmTypesMask; 392 if (orig&XkbGBN_CompatMapMask) rtrn|= XkmCompatMapMask; 393 if (orig&XkbGBN_SymbolsMask) rtrn|= XkmSymbolsMask; 394 if (orig&XkbGBN_IndicatorMapMask) rtrn|= XkmIndicatorsMask; 395 if (orig&XkbGBN_KeyNamesMask) rtrn|= XkmKeyNamesMask; 396 if (orig&XkbGBN_GeometryMask) rtrn|= XkmGeometryMask; 399 if (orig&XkmTypesMask) rtrn|= XkbGBN_TypesMask; 400 if (orig&XkmCompatMapMask) rtrn|= XkbGBN_CompatMapMask; 401 if (orig [all...] |
| /xsrc/external/mit/xorg-server/dist/xkb/ |
| H A D | xkbfmisc.c | 399 XkbConvertGetByNameComponents(Bool toXkm, unsigned orig) argument 405 if (orig & XkbGBN_TypesMask) 407 if (orig & XkbGBN_CompatMapMask) 409 if (orig & XkbGBN_SymbolsMask) 411 if (orig & XkbGBN_IndicatorMapMask) 413 if (orig & XkbGBN_KeyNamesMask) 415 if (orig & XkbGBN_GeometryMask) 419 if (orig & XkmTypesMask) 421 if (orig & XkmCompatMapMask) 423 if (orig [all...] |
| /xsrc/external/mit/xorg-server.old/dist/Xext/ |
| H A D | panoramiXsrv.h | 15 extern _X_EXPORT VisualID PanoramiXTranslateVisualID(int screen, VisualID orig);
|
| /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/ |
| H A D | opt_function_inlining.cpp | 39 ir_variable *orig, 337 * Replaces references to the "orig" variable with a clone of "repl." 347 ir_variable_replacement_visitor(ir_variable *orig, ir_dereference *repl) argument 349 this->orig = orig; 368 ir_variable *orig; member in class:ir_variable_replacement_visitor 376 if (deref_var && deref_var->var == this->orig) { 460 ir_variable *orig, 463 ir_variable_replacement_visitor v(orig, repl); 459 do_variable_replacement(exec_list * instructions,ir_variable * orig,ir_dereference * repl) argument
|
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/ |
| H A D | opt_function_inlining.cpp | 39 ir_variable *orig, 337 * Replaces references to the "orig" variable with a clone of "repl." 347 ir_variable_replacement_visitor(ir_variable *orig, ir_dereference *repl) argument 349 this->orig = orig; 368 ir_variable *orig; member in class:ir_variable_replacement_visitor 376 if (deref_var && deref_var->var == this->orig) { 460 ir_variable *orig, 463 ir_variable_replacement_visitor v(orig, repl); 459 do_variable_replacement(exec_list * instructions,ir_variable * orig,ir_dereference * repl) argument
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/virgl/ |
| H A D | virgl_texture.c | 65 static unsigned temp_bind(unsigned orig) argument 69 if (orig & warn) 71 orig & warn); 73 return orig & (PIPE_BIND_DEPTH_STENCIL | PIPE_BIND_RENDER_TARGET); 77 struct pipe_resource *orig, 83 res->bind = temp_bind(orig->bind); 93 if (box->depth > 1 && util_max_layer(orig, level) > 0) 94 res->target = orig->target; 76 virgl_init_temp_resource_from_box(struct pipe_resource * res,struct pipe_resource * orig,const struct pipe_box * box,unsigned level,unsigned flags,enum pipe_format fmt) argument
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/virgl/ |
| H A D | virgl_texture.c | 68 static unsigned temp_bind(unsigned orig) argument 72 if (orig & warn) 74 orig & warn); 76 return orig & (PIPE_BIND_DEPTH_STENCIL | PIPE_BIND_RENDER_TARGET); 80 struct pipe_resource *orig, 86 res->bind = temp_bind(orig->bind); 96 if (box->depth > 1 && util_max_layer(orig, level) > 0) 97 res->target = orig->target; 79 virgl_init_temp_resource_from_box(struct pipe_resource * res,struct pipe_resource * orig,const struct pipe_box * box,unsigned level,unsigned flags,enum pipe_format fmt) argument
|
| /xsrc/external/mit/MesaLib/dist/src/freedreno/ir3/ |
| H A D | ir3_nir_lower_tg4_to_tex.c | 68 nir_ssa_def *orig = local in function:ir3_nir_lower_tg4_to_tex_instr 71 nir_src_for_ssa(nir_iadd(b, orig, offset));
|
| /xsrc/external/mit/fontconfig/dist/ |
| H A D | Makefile.am | 169 $(RM) $(PACKAGE)_$(VERSION).orig.tar.gz 170 $(RM) -r $(distdir).orig 171 cp -a $(distdir) $(distdir).orig 172 $(RM) -r $(distdir).orig/debian
|
| /xsrc/external/mit/xorg-server/dist/Xext/ |
| H A D | panoramiXsrv.h | 16 extern _X_EXPORT VisualID PanoramiXTranslateVisualID(int screen, VisualID orig);
|
| /xsrc/external/mit/setxkbmap/dist/ |
| H A D | setxkbmap.c | 190 static char *stringFromOptions(char *orig, list_t *newOpts); 693 stringFromOptions(char *orig, list_t *newOpts) argument 698 if (orig) 699 len = strlen(orig) + 1; 709 if (orig) 711 orig = (char *) realloc(orig, len); 712 OOM(orig); 717 orig = (char *) calloc(len, 1); 718 OOM(orig); [all...] |
| /xsrc/external/mit/xorg-server.old/dist/test/ |
| H A D | input.c | 1032 InputAttributes orig = {0}; local in function:dix_input_attributes 1039 new = DuplicateInputAttributes(&orig); 1040 g_assert(memcmp(&orig, new, sizeof(InputAttributes)) == 0); 1042 orig.product = "product name"; 1043 new = DuplicateInputAttributes(&orig); 1044 cmp_attr_fields(&orig, new); 1047 orig.vendor = "vendor name"; 1048 new = DuplicateInputAttributes(&orig); 1049 cmp_attr_fields(&orig, new); 1052 orig [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/freedreno/ir3/ |
| H A D | ir3_nir_lower_tg4_to_tex.c | 81 nir_ssa_def *orig = nir_ssa_for_src( local in function:lower_tg4 84 nir_src_for_ssa(nir_iadd(b, orig, offset));
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/radeonsi/glsl_tests/ |
| H A D | amdgcn_glslc.c | 175 const char *orig = getenv(name); local in function:addenv 176 if (orig) { 178 (void)!asprintf(&newval, "%s,%s", orig, value);
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/radeonsi/glsl_tests/ |
| H A D | amdgcn_glslc.c | 175 const char *orig = getenv(name); local in function:addenv 176 if (orig) { 178 (void)!asprintf(&newval, "%s,%s", orig, value);
|
| /xsrc/external/mit/MesaLib.old/dist/src/intel/blorp/ |
| H A D | blorp_blit.c | 2096 adjust_split_source_coords(const struct blt_axis *orig, argument 2105 double delta0 = scale * (split_coords->dst0 - orig->dst0); 2106 double delta1 = scale * (split_coords->dst1 - orig->dst1); 2107 split_coords->src0 = orig->src0 + (scale >= 0.0 ? delta0 : delta1); 2108 split_coords->src1 = orig->src1 + (scale >= 0.0 ? delta1 : delta0); 2189 const struct blt_coords *orig) 2193 struct blt_coords split_coords = *orig; 2194 double w = orig->x.dst1 - orig->x.dst0; 2195 double h = orig 2186 do_blorp_blit(struct blorp_batch * batch,const struct blorp_params * orig_params,struct brw_blorp_blit_prog_key * wm_prog_key,const struct blt_coords * orig) argument [all...] |
| /xsrc/external/mit/xorg-server/dist/test/ |
| H A D | input.c | 1189 InputAttributes *orig; local in function:dix_input_attributes 1195 orig = calloc(1, sizeof(InputAttributes)); 1196 assert(orig); 1198 new = DuplicateInputAttributes(orig); 1199 assert(memcmp(orig, new, sizeof(InputAttributes)) == 0); 1201 orig->product = xnfstrdup("product name"); 1202 new = DuplicateInputAttributes(orig); 1203 cmp_attr_fields(orig, new); 1206 orig->vendor = xnfstrdup("vendor name"); 1207 new = DuplicateInputAttributes(orig); [all...] |