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

1 2 3 4

  /xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/
st_glsl_to_tgsi_temprename.h 30 * begin == end == -1 indicates that the register can be reused without
31 * limitations. Otherwise, "begin" indicates the first instruction in which
34 * Hence, a register R2 can be merged with a register R1 if R1.end <= R2.begin.
37 int begin; member in struct:register_live_range
st_glsl_to_tgsi_array_merge.h 64 int begin() const { return first_access;} function in class:array_live_range
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/
st_glsl_to_tgsi_temprename.h 30 * begin == end == -1 indicates that the register can be reused without
31 * limitations. Otherwise, "begin" indicates the first instruction in which
34 * Hence, a register R2 can be merged with a register R1 if R1.end <= R2.begin.
37 int begin; member in struct:register_live_range
st_glsl_to_tgsi_array_merge.h 64 int begin() const { return first_access;} function in class:array_live_range
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/softpipe/
sp_quad_pipe.h 49 void (*begin)(struct quad_stage *qs); member in struct:quad_stage
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/softpipe/
sp_quad_pipe.h 49 void (*begin)(struct quad_stage *qs); member in struct:quad_stage
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r600/sfn/
sfn_instruction_block.h 43 std::vector<PInstruction>::const_iterator begin() const { function in class:r600::InstructionBlock
44 return m_block.begin();
sfn_valuepool.h 56 std::map<uint32_t, PValue>::const_iterator begin() const {return m_map.begin();} function in class:r600::ValueMap
  /xsrc/external/mit/MesaLib/dist/src/mesa/main/
draw.h 53 bool begin; member in struct:_mesa_prim
  /xsrc/external/mit/glu/dist/src/libnurbs/nurbtess/
primitiveStream.cc 62 void primStream::begin() function in class:primStream
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
draw.h 47 GLuint begin:1; member in struct:_mesa_prim
  /xsrc/external/mit/libX11/dist/modules/im/ximcp/
imInt.c 170 const char* begin = NULL; local
176 begin = _XimStrstr(lcd->core->modifiers, ximmodifier);
177 if (begin != NULL) {
178 end = begin += strlen(ximmodifier);
183 ret = Xmalloc(end - begin + 1);
185 if (begin != NULL && end != NULL) {
186 (void)strncpy(ret, begin, end - begin);
187 ret[end - begin] = '\0';
  /xsrc/external/mit/xorg-server/dist/hw/xfree86/os-support/linux/
lnx_video.c 121 int begin, end; local
140 begin = atoi(target);
146 ioperm(begin, end-begin+1, 0);
  /xsrc/external/mit/MesaLib/dist/src/amd/compiler/
aco_util.h 67 /*! \brief Returns an iterator to the begin of the span
70 constexpr iterator begin() noexcept { return (pointer)((uintptr_t)this + offset); }
72 /*! \brief Returns a const_iterator to the begin of the span
75 constexpr const_iterator begin() const noexcept
83 constexpr iterator end() noexcept { return std::next(begin(), length); }
88 constexpr const_iterator end() const noexcept { return std::next(begin(), length); }
90 /*! \brief Returns a const_iterator to the begin of the span
93 constexpr const_iterator cbegin() const noexcept { return begin(); }
98 constexpr const_iterator cend() const noexcept { return std::next(begin(), length); }
113 /*! \brief Returns a reverse_iterator to the begin of the spa
333 Iterator begin() const { return cbegin(); } function in struct:aco::IDSet
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/gallivm/
lp_bld_flow.h 152 LLVMBasicBlockRef begin; member in struct:lp_build_for_loop_state
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/svga/
svga_resource_buffer.c 106 int64_t begin = svga_get_time(svga); local
302 svga->hud.map_buffer_time += (svga_get_time(svga) - begin);
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/gallivm/
lp_bld_flow.h 142 LLVMBasicBlockRef begin; member in struct:lp_build_for_loop_state
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/svga/
svga_resource_buffer.c 101 int64_t begin = svga_get_time(svga); local
298 svga->hud.map_buffer_time += (svga_get_time(svga) - begin);
  /xsrc/external/mit/pixman/dist/test/
region-contains-test.c 38 int begin, end; local
56 begin = b->x1;
61 begin = b->y1;
68 return begin - prng_rand();
74 return begin;
76 return (end - begin) / 2 + begin;
  /xsrc/external/mit/MesaLib/dist/include/android_stub/log/
log_event_list.h 62 /* All lists must be braced by a begin and end call */
135 int begin() { function in class:android_log_event_list
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r600/
r600_streamout.c 84 struct r600_atom *begin = &rctx->streamout.begin_atom; local
96 begin->num_dw = 12; /* flush_vgt_streamout */
98 begin->num_dw += num_bufs * 7; /* SET_CONTEXT_REG */
101 begin->num_dw += num_bufs * 5; /* STRMOUT_BASE_UPDATE */
103 begin->num_dw +=
108 rctx->set_atom_dirty(rctx, begin, true);
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/radeonsi/
gfx10_query.c 367 unsigned begin = qbuf == query->first ? query->first_begin : 0; local
373 ssbo[0].buffer_offset = begin;
374 ssbo[0].buffer_size = end - begin;
376 consts.result_count = (end - begin) / sizeof(struct gfx10_sh_query_buffer_mem);
420 .begin = gfx10_sh_query_begin,
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r600/
r600_streamout.c 84 struct r600_atom *begin = &rctx->streamout.begin_atom; local
96 begin->num_dw = 12; /* flush_vgt_streamout */
98 begin->num_dw += num_bufs * 7; /* SET_CONTEXT_REG */
101 begin->num_dw += num_bufs * 5; /* STRMOUT_BASE_UPDATE */
103 begin->num_dw +=
108 rctx->set_atom_dirty(rctx, begin, true);
  /xsrc/external/mit/xorg-server/dist/exa/
exa_offscreen.c 93 ExaOffscreenArea *begin, *end, *best; local
98 begin = end = pExaScr->info->offScreenAreas;
105 while (begin != NULL && begin->state == ExaOffscreenLocked)
106 begin = end = begin->next;
108 if (begin == NULL)
112 real_size = size + (begin->base_offset + begin->size - size) % align;
119 begin = end
    [all...]
  /xsrc/external/mit/xorg-server.old/dist/exa/
exa_offscreen.c 94 ExaOffscreenArea *begin, *end, *best; local
99 begin = end = pExaScr->info->offScreenAreas;
107 while (begin != NULL && begin->state == ExaOffscreenLocked)
108 begin = end = begin->next;
110 if (begin == NULL)
114 real_size = size + (begin->base_offset + begin->size - size) % align;
122 begin = end
    [all...]

Completed in 43 milliseconds

1 2 3 4