HomeSort by: relevance | last modified time | path
    Searched defs:copy (Results 1 - 25 of 144) sorted by relevancy

1 2 3 4 5 6

  /xsrc/external/mit/libX11/dist/src/
PeekEvent.c 5 Permission to use, copy, modify, distribute, and sell this software and its
43 XEvent copy; local
48 if (_XCopyEventCookie(dpy, &event->xcookie, &copy.xcookie)) {
49 _XStoreEventCookie(dpy, &copy);
50 *event = copy;
PeekIfEv.c 5 Permission to use, copy, modify, distribute, and sell this software and its
64 XEvent copy; local
66 if (_XCopyEventCookie(dpy, &event->xcookie, &copy.xcookie)) {
67 _XStoreEventCookie(dpy, &copy);
68 *event = copy;
PutBEvent.c 5 Permission to use, copy, modify, distribute, and sell this software and its
53 XEvent copy = {0}; local
58 } else { /* if claimed, copy, client must free */
59 _XCopyEventCookie(dpy, &event->xcookie, &copy.xcookie);
60 store = copy;
  /xsrc/external/mit/xorg-server/dist/os/
strndup.c 43 char *copy; local
48 if ((copy = malloc(len + 1)) == NULL)
50 memcpy(copy, str, len);
51 copy[len] = '\0';
52 return (copy);
  /xsrc/external/mit/MesaGLUT/dist/src/glut/beos/
glut_util.c 22 char *copy; local
24 copy = (char*) malloc(strlen(string) + 1);
25 if (copy == NULL)
27 strcpy(copy, string);
28 return copy;
  /xsrc/external/mit/MesaGLUT/dist/src/glut/glx/
glut_util.c 22 char *copy; local
24 copy = (char*) malloc(strlen(string) + 1);
25 if (copy == NULL)
27 strcpy(copy, string);
28 return copy;
  /xsrc/external/mit/MesaLib/dist/src/mesa/vbo/
vbo_exec.c 7 * copy of this software and associated documentation files (the "Software"),
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
254 * Copy zero, one or two vertices from the current vertex buffer into
255 * the temporary "copy" buffer.
258 * The temporary "copy" buffer holds the vertices which need to get
271 unsigned copy = 0; local
277 copy = count % 2;
280 copy = count % 3;
284 copy = count % 4;
287 copy = count % 6
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/compiler/nir/
nir_lower_var_copies.c 5 * copy of this software and associated documentation files (the "Software"),
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
34 * Lowers all copy intrinsics to sequences of load/store intrinsics.
98 nir_lower_deref_copy_instr(nir_builder *b, nir_intrinsic_instr *copy)
103 assert(copy->src[0].is_ssa && copy->src[1].is_ssa);
104 nir_deref_instr *dst = nir_instr_as_deref(copy->src[0].ssa->parent_instr);
105 nir_deref_instr *src = nir_instr_as_deref(copy->src[1].ssa->parent_instr);
111 b->cursor = nir_before_instr(&copy->instr);
114 nir_intrinsic_dst_access(copy),
134 nir_intrinsic_instr *copy = nir_instr_as_intrinsic(instr); local
    [all...]
nir_split_var_copies.c 5 * copy of this software and associated documentation files (the "Software"),
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
32 * Implements "copy splitting" which is similar to structure splitting only
33 * it works on copy operations rather than the datatypes themselves. The
34 * GLSL language allows you to copy one variable to another an entire
39 * regardlesss of what we do, we have to be able to copy to/from
44 * The primary issue here is that, if you lower the copy to a bunch of
45 * loads and stores, you loose a lot of information about the copy
47 * have a "copy splitting" pass that, instead of splitting the structures
48 * or lowering the copy into loads and storres, splits the copy operatio
102 nir_intrinsic_instr *copy = nir_instr_as_intrinsic(instr); local
    [all...]
nir_inline_functions.c 5 * copy of this software and associated documentation files (the "Software"),
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
40 nir_function_impl *copy = nir_function_impl_clone(b->shader, impl); local
42 exec_list_append(&b->impl->locals, &copy->locals);
43 exec_list_append(&b->impl->registers, &copy->registers);
45 nir_foreach_block(block, copy) {
108 bool nest_if = function_ends_in_jump(copy);
112 nir_cf_list_extract(&body, &copy->body);
227 * be lowered which lets us just copy+paste the callee directly into the
  /xsrc/external/mit/MesaLib.old/dist/src/compiler/nir/
nir_lower_var_copies.c 5 * copy of this software and associated documentation files (the "Software"),
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
34 * Lowers all copy intrinsics to sequences of load/store intrinsics.
98 nir_lower_deref_copy_instr(nir_builder *b, nir_intrinsic_instr *copy)
103 assert(copy->src[0].is_ssa && copy->src[1].is_ssa);
104 nir_deref_instr *dst = nir_instr_as_deref(copy->src[0].ssa->parent_instr);
105 nir_deref_instr *src = nir_instr_as_deref(copy->src[1].ssa->parent_instr);
111 b->cursor = nir_before_instr(&copy->instr);
114 nir_intrinsic_dst_access(copy),
134 nir_intrinsic_instr *copy = nir_instr_as_intrinsic(instr); local
    [all...]
nir_split_var_copies.c 5 * copy of this software and associated documentation files (the "Software"),
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
32 * Implements "copy splitting" which is similar to structure splitting only
33 * it works on copy operations rather than the datatypes themselves. The
34 * GLSL language allows you to copy one variable to another an entire
39 * regardlesss of what we do, we have to be able to copy to/from
44 * The primary issue here is that, if you lower the copy to a bunch of
45 * loads and stores, you loose a lot of information about the copy
47 * have a "copy splitting" pass that, instead of splitting the structures
48 * or lowering the copy into loads and storres, splits the copy operatio
102 nir_intrinsic_instr *copy = nir_instr_as_intrinsic(instr); local
    [all...]
nir_inline_functions.c 5 * copy of this software and associated documentation files (the "Software"),
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
33 nir_function_impl *copy = nir_function_impl_clone(b->shader, impl); local
42 exec_list_append(&b->impl->locals, &copy->locals);
43 exec_list_append(&b->impl->registers, &copy->registers);
45 nir_foreach_block(block, copy) {
73 nir_cf_list_extract(&body, &copy->body);
180 * be lowered which lets us just copy+paste the callee directly into the
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/renderonly/
renderonly.c 5 * copy of this software and associated documentation files (the "Software"),
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
43 struct renderonly *copy; local
45 copy = CALLOC_STRUCT(renderonly);
46 if (!copy)
49 memcpy(copy, ro, sizeof(*ro));
51 return copy;
  /xsrc/external/mit/MesaLib.old/dist/src/vulkan/util/
vk_alloc.h 5 * copy of this software and associated documentation files (the "Software"),
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
78 char *copy = vk_alloc(alloc, size, 1, scope); local
79 if (copy == NULL)
82 memcpy(copy, s, size);
84 return copy;
  /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/
lower_output_reads.cpp 6 * copy of this software and associated documentation files (the "Software"),
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
37 * main() function to copy the final values to the actual shader outputs.
104 /* copy flags which affect arithematical precision */
119 * Create an assignment to copy a temporary value back to the actual output.
122 copy(void *ctx, ir_variable *output, ir_variable *temp) function
129 /** Insert a copy-back assignment before a "return" statement or a call to
136 ir->insert_before(copy(ir, (ir_variable *) key, (ir_variable *) data));
139 /** Insert a copy-back assignment at the end of the main() function */
144 sig->body.push_tail(copy(sig, (ir_variable *) key, (ir_variable *) data))
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/
lower_output_reads.cpp 6 * copy of this software and associated documentation files (the "Software"),
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
37 * main() function to copy the final values to the actual shader outputs.
104 /* copy flags which affect arithematical precision */
119 * Create an assignment to copy a temporary value back to the actual output.
122 copy(void *ctx, ir_variable *output, ir_variable *temp) function
129 /** Insert a copy-back assignment before a "return" statement or a call to
136 ir->insert_before(copy(ir, (ir_variable *) key, (ir_variable *) data));
139 /** Insert a copy-back assignment at the end of the main() function */
144 sig->body.push_tail(copy(sig, (ir_variable *) key, (ir_variable *) data))
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/clover/util/
algorithm.hpp 5 // copy of this software and associated documentation files (the "Software"),
7 // the rights to use, copy, modify, merge, publish, distribute, sublicense,
107 /// Copy all elements from range \a r into an output container
112 copy(R &&r, I i) { function in namespace:clover
  /xsrc/external/mit/imake/dist/
mergelib.cpp 5 XCOMM Permission to use, copy, modify, distribute, and sell this software and variable
  /xsrc/external/mit/xinit/dist/launchd/privileged_startx/
20-font_cache.cpp 5 XCOMM obtaining a copy of this software and associated documentation files
7 XCOMM including without limitation the rights to use, copy, modify, merge, variable
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r300/compiler/
radeon_pair_translate.c 7 * a copy of this software and associated documentation files (the
9 * without limitation the rights to use, copy, modify, merge, publish,
364 struct rc_sub_instruction copy; local
374 copy = inst->U.I;
376 check_opcode_support(c, &copy);
378 final_rewrite(&copy);
380 set_pair_instruction(c, &inst->U.P, &copy);
  /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/clover/util/
algorithm.hpp 5 // copy of this software and associated documentation files (the "Software"),
7 // the rights to use, copy, modify, merge, publish, distribute, sublicense,
108 /// Copy all elements from range \a r into an output container
113 copy(R &&r, I i) { function in namespace:clover
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r300/compiler/
radeon_pair_translate.c 7 * a copy of this software and associated documentation files (the
9 * without limitation the rights to use, copy, modify, merge, publish,
362 struct rc_sub_instruction copy; local
372 copy = inst->U.I;
374 check_opcode_support(c, &copy);
376 final_rewrite(&copy);
378 set_pair_instruction(c, &inst->U.P, &copy);
  /xsrc/external/mit/MesaLib.old/dist/src/gtest/include/gtest/internal/
gtest-linked_ptr.h 60 // - it's safe to copy linked_ptr objects concurrently,
61 // - it's safe to copy *from* a linked_ptr and read its underlying
155 // Copy an existing linked_ptr<>, adding ourselves to the list of references.
156 template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); }
159 copy(&ptr);
165 copy(&ptr);
172 copy(&ptr);
213 template <typename U> void copy(linked_ptr<U> const* ptr) { function in class:testing::internal::linked_ptr
  /xsrc/external/mit/freetype/dist/src/base/
ftglyph.c 319 FT_Glyph copy; local
340 error = ft_new_glyph( source->library, clazz, &copy );
344 copy->advance = source->advance;
345 copy->format = source->format;
348 error = clazz->glyph_copy( source, copy );
351 FT_Done_Glyph( copy );
353 *target = copy;
419 /* copy advance while converting 26.6 to 16.16 format */
613 /* in case of success, copy the bitmap to the glyph bitmap */
618 /* copy advance *
    [all...]

Completed in 18 milliseconds

1 2 3 4 5 6