Home
last modified time | relevance | path

Searched refs:get_offset (Results 1 – 10 of 10) sorted by relevance

/external/clang/bindings/python/tests/cindex/
Dtest_type.py351 assert teststruct.type.get_offset(fields[0].spelling) == a1
352 assert teststruct.type.get_offset(fields[1].spelling) == a2
353 assert teststruct.type.get_offset(fields[2].spelling) == a3
354 assert teststruct.type.get_offset(fields[3].spelling) == a4
391 assert teststruct.type.get_offset("typeanon") == f1
392 assert teststruct.type.get_offset("bariton") == bariton
393 assert teststruct.type.get_offset("foo") == foo
394 assert teststruct.type.get_offset("bar") == bar
/external/mesa3d/src/mesa/tnl/
Dt_vertex_sse.c295 static GLint get_offset( const void *a, const void *b ) in get_offset() function
310 struct x86_reg ptr_to_src = x86_make_disp(vtxREG, get_offset(vtx, &a->inputptr)); in get_src_ptr()
324 struct x86_reg ptr_to_src = x86_make_disp(vtxREG, get_offset(vtx, &a->inputptr)); in update_src_ptr()
381 x86_mov(&p->func, vtxESI, x86_make_disp(vtxESI, get_offset(ctx, &ctx->swtnl_context))); in build_vertex_emit()
382 vtxESI = x86_make_disp(vtxESI, get_offset(tnl, &tnl->clipspace)); in build_vertex_emit()
388 sse_movups(&p->func, vp0, x86_make_disp(vtxESI, get_offset(vtx, &vtx->vp_scale[0]))); in build_vertex_emit()
389 sse_movups(&p->func, vp1, x86_make_disp(vtxESI, get_offset(vtx, &vtx->vp_xlate[0]))); in build_vertex_emit()
394 sse_movups(&p->func, p->chan0, x86_make_disp(vtxESI, get_offset(vtx, &vtx->chan_scale[0]))); in build_vertex_emit()
395 sse_movups(&p->func, p->identity, x86_make_disp(vtxESI, get_offset(vtx, &vtx->identity[0]))); in build_vertex_emit()
/external/mesa3d/src/gallium/auxiliary/translate/
Dtranslate_sse.c135 get_offset(const void *a, const void *b) in get_offset() function
170 get_offset(p, &p->consts[id][0]))); in get_const()
1077 x86_make_disp(p->machine_EDI, get_offset(p, &p->instance_id)); in init_inputs()
1079 x86_make_disp(p->machine_EDI, get_offset(p, &p->start_instance)); in init_inputs()
1087 x86_make_disp(p->machine_EDI, get_offset(p, &buffer->max_index)); in init_inputs()
1089 x86_make_disp(p->machine_EDI, get_offset(p, &buffer->stride)); in init_inputs()
1091 x86_make_disp(p->machine_EDI, get_offset(p, &variant->ptr)); in init_inputs()
1093 x86_make_disp(p->machine_EDI, get_offset(p, &buffer->base_ptr)); in init_inputs()
1169 return x86_make_disp(p->machine_EDI, get_offset(p, &p->instance_id)); in get_buffer_ptr()
1178 get_offset(p, &p->buffer_variant[var_idx].ptr)); in get_buffer_ptr()
[all …]
/external/mesa3d/src/intel/tools/
Daubinator.c260 get_offset(uint32_t *p, uint32_t start, uint32_t end) in get_offset() function
433 start = get_offset(&p[1], 6, 63); in handle_3dstate_vs()
436 start = get_offset(&p[1], 6, 31); in handle_3dstate_vs()
457 start = get_offset(&p[3], 6, 63); in handle_3dstate_hs()
459 start = get_offset(&p[3], 6, 31); in handle_3dstate_hs()
/external/mesa3d/src/compiler/glsl/
Dlink_varyings.h139 unsigned get_offset() const in get_offset() function
Dlink_varyings.cpp1061 return x->get_offset() - y->get_offset(); in cmp_xfb_offset()
/external/llvm/lib/DebugInfo/PDB/DIA/
DDIARawSymbol.cpp269 RAW_METHOD_DUMP(OS, get_offset) in dump()
733 return PrivateGetDIAValue(Symbol, &IDiaSymbol::get_offset); in getOffset()
/external/google-breakpad/src/common/windows/
Dpdb_source_line_writer.cc1068 if (FAILED(child->get_offset(&child_register_offset))) { in GetFunctionStackParamSize()
/external/valgrind/VEX/priv/
Dhost_s390_isel.c3690 UInt get_offset = stmt->Ist.Put.data->Iex.Get.offset; in s390_isel_stmt() local
3693 if (put_offset + size <= get_offset || in s390_isel_stmt()
3694 get_offset + size <= put_offset) { in s390_isel_stmt()
3695 s390_amode *from = s390_amode_for_guest_state(get_offset); in s390_isel_stmt()
/external/clang/bindings/python/clang/
Dcindex.py1971 def get_offset(self, fieldname): member in Type