HomeSort by: relevance | last modified time | path
    Searched refs:start (Results 1 - 25 of 1810) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /xsrc/external/mit/MesaLib/dist/src/intel/common/
intel_clflush.h 31 intel_clflush_range(void *start, size_t size)
33 void *p = (void *) (((uintptr_t) start) & ~CACHELINE_MASK);
34 void *end = start + size;
43 intel_flush_range(void *start, size_t size)
46 intel_clflush_range(start, size);
50 intel_invalidate_range(void *start, size_t size)
52 intel_clflush_range(start, size);
64 __builtin_ia32_clflush(start + size - 1);
intel_disasm.h 34 const void *assembly, int start, FILE *out);
  /xsrc/external/mit/MesaLib.old/dist/src/intel/common/
gen_clflush.h 31 gen_clflush_range(void *start, size_t size)
33 void *p = (void *) (((uintptr_t) start) & ~CACHELINE_MASK);
34 void *end = start + size;
43 gen_flush_range(void *start, size_t size)
46 gen_clflush_range(start, size);
50 gen_invalidate_range(void *start, size_t size)
52 gen_clflush_range(start, size);
64 __builtin_ia32_clflush(start + size - 1);
  /xsrc/external/mit/libX11/dist/src/
SetLocale.c 120 char *start; local
127 start = osname;
130 --n >= 0 && start && (start = strchr (start, STARTCHAR));
131 start++)
133 if (!start)
134 start = osname;
137 if (start && (start = strchr (start, STARTCHAR))
    [all...]
TextToStr.c 49 char *start; /* start of thing to copy */ local
78 start = Xmalloc ((datalen + 1) * sizeof (char)); /* for <NUL> */
79 if (!start) {
87 memcpy (start, (char *) tp->value, tp->nitems);
88 start[datalen] = '\0';
93 for (cp = start, i = datalen + 1, j = 0; i > 0; cp++, i--) {
95 list[j] = start;
96 start = (cp + 1);
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/util/
u_range.h 42 unsigned start; /* inclusive */ member in struct:util_range
53 range->start = ~0;
59 util_range_add(struct util_range *range, unsigned start, unsigned end)
61 if (start < range->start || end > range->end) {
63 range->start = MIN2(start, range->start);
71 unsigned start, unsigned end)
73 return MAX2(start, range->start) < MIN2(end, range->end)
    [all...]
u_index_modify.h 33 unsigned start,
41 unsigned start, unsigned count,
48 unsigned start, unsigned count,
u_draw.h 54 uint start,
61 info.start = start;
63 info.min_index = start;
64 info.max_index = start + count - 1;
74 uint start,
84 info.start = start;
94 uint start,
103 info.start = start
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/broadcom/cle/
v3d_packet_helpers.h 60 __gen_mbo(uint32_t start, uint32_t end)
62 return (~0ull >> (64 - (end - start + 1))) << start;
66 __gen_uint(uint64_t v, uint32_t start, uint32_t end)
71 const int width = end - start + 1;
78 return v << start;
82 __gen_sint(int64_t v, uint32_t start, uint32_t end)
84 const int width = end - start + 1;
98 return (v & mask) << start;
102 __gen_offset(uint64_t v, uint32_t start, uint32_t end
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/util/
u_range.h 45 unsigned start; /* inclusive */ member in struct:util_range
56 range->start = ~0;
63 unsigned start, unsigned end)
65 if (start < range->start || end > range->end) {
68 range->start = MIN2(start, range->start);
72 range->start = MIN2(start, range->start)
    [all...]
u_index_modify.h 37 unsigned start,
45 unsigned start, unsigned count,
52 unsigned start, unsigned count,
  /xsrc/external/mit/MesaLib/dist/src/panfrost/bifrost/
bi_layout.c 91 bi_block_offset(bi_context *ctx, bi_clause *start, bi_block *target)
98 bool forwards = target->name > start->block->name;
101 /* We have to jump through this block from the start of this
103 bi_foreach_clause_in_block_from(start->block, clause, start) {
109 bi_foreach_block_from(ctx, start->block, blk) {
111 if (blk == start->block)
124 /* We start at the beginning of the clause but have to jump
126 bi_foreach_clause_in_block_from_rev(start->block, clause, start) {
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r300/
r300_render_translate.c 32 unsigned *start, unsigned count)
45 *start, count, ptr);
48 *start = out_offset / 2;
59 index_offset, *start,
62 *start = out_offset / 2;
74 index_offset, *start,
77 *start = out_offset / 4;
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r300/
r300_render_translate.c 32 unsigned *start, unsigned count)
45 *start, count, ptr);
48 *start = out_offset / 2;
59 index_offset, *start,
62 *start = out_offset / 2;
74 index_offset, *start,
77 *start = out_offset / 4;
  /xsrc/external/mit/xf86-video-intel-old/dist/src/reg_dumper/
gtt.c 45 int start, aper_size; local
75 for (start = 0; start < aper_size; start += KB(4)) {
76 uint32_t start_pte = INGTT(start);
82 for (end = start + KB(4); end < aper_size; end += KB(4)) {
84 if (end_pte == start_pte + (end - start))
92 start, end - KB(4),
93 start_pte, start_pte + (end - start) - KB(4));
94 start = end - KB(4)
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/broadcom/cle/
v3d_packet_helpers.h 63 __gen_mbo(uint32_t start, uint32_t end)
65 return (~0ull >> (64 - (end - start + 1))) << start;
69 __gen_uint(uint64_t v, uint32_t start, uint32_t end)
74 const int width = end - start + 1;
81 return v << start;
85 __gen_sint(int64_t v, uint32_t start, uint32_t end)
87 const int width = end - start + 1;
101 return (v & mask) << start;
105 __gen_offset(uint64_t v, uint32_t start, uint32_t end
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/util/
bitscan.h 165 * int start, count, i;
167 * u_bit_scan_consecutive_range(&mask, &start, &count);
170 * ... process element (start+i)
174 u_bit_scan_consecutive_range(unsigned *mask, int *start, int *count)
177 *start = 0;
182 *start = ffs(*mask) - 1;
183 *count = ffs(~(*mask >> *start)) - 1;
184 *mask &= ~(((1u << *count) - 1) << *start);
188 u_bit_scan_consecutive_range64(uint64_t *mask, int *start, int *count)
191 *start = 0
    [all...]
os_time.h 78 os_time_timeout(int64_t start,
82 if (start <= end)
83 return !(start <= curr && curr < end);
85 return !((start <= curr) || (curr < end));
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/freedreno/
freedreno_texture.h 33 enum pipe_shader_type shader, unsigned start,
37 enum pipe_shader_type shader, unsigned start,
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/
nouveau_heap.h 41 * The pattern to free the whole heap is to start with the first node and then
52 unsigned start; member in struct:nouveau_heap
59 nouveau_heap_init(struct nouveau_heap **heap, unsigned start,
  /xsrc/external/mit/MesaLib/dist/src/mesa/math/
m_translate.h 40 * \param start first element in source array to convert
51 GLuint start,
58 GLuint start,
65 GLuint start,
73 GLuint start,
81 GLuint start,
90 GLuint start,
99 GLuint start,
106 GLuint start,
  /xsrc/external/mit/MesaLib/dist/src/panfrost/shared/
pan_minmax_cache.h 42 panfrost_minmax_cache_get(struct panfrost_minmax_cache *cache, unsigned start, unsigned count,
46 panfrost_minmax_cache_add(struct panfrost_minmax_cache *cache, unsigned start, unsigned count,
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/freedreno/
freedreno_texture.h 33 enum pipe_shader_type shader, unsigned start,
38 unsigned start, unsigned nr,
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/nouveau/
nouveau_heap.h 41 * The pattern to free the whole heap is to start with the first node and then
52 unsigned start; member in struct:nouveau_heap
59 nouveau_heap_init(struct nouveau_heap **heap, unsigned start,
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/math/
m_translate.h 40 * \param start first element in source array to convert
51 GLuint start,
58 GLuint start,
65 GLuint start,
73 GLuint start,
81 GLuint start,
90 GLuint start,
99 GLuint start,
106 GLuint start,

Completed in 16 milliseconds

1 2 3 4 5 6 7 8 91011>>