Home
last modified time | relevance | path

Searched refs:voffset (Results 1 – 21 of 21) sorted by relevance

/external/flatbuffers/js/
Dflatbuffers.js403 flatbuffers.Builder.prototype.addFieldInt8 = function(voffset, value, defaultValue) { argument
406 this.slot(voffset);
415 flatbuffers.Builder.prototype.addFieldInt16 = function(voffset, value, defaultValue) { argument
418 this.slot(voffset);
427 flatbuffers.Builder.prototype.addFieldInt32 = function(voffset, value, defaultValue) { argument
430 this.slot(voffset);
439 flatbuffers.Builder.prototype.addFieldInt64 = function(voffset, value, defaultValue) { argument
442 this.slot(voffset);
451 flatbuffers.Builder.prototype.addFieldFloat32 = function(voffset, value, defaultValue) { argument
454 this.slot(voffset);
[all …]
/external/mesa3d/src/mesa/drivers/dri/r200/
Dr200_cmdbuf.c242 uint32_t voffset; in r200EmitAOS() local
261 voffset = rmesa->radeon.tcl.aos[i + 0].offset + in r200EmitAOS()
263 OUT_BATCH(voffset); in r200EmitAOS()
264 voffset = rmesa->radeon.tcl.aos[i + 1].offset + in r200EmitAOS()
266 OUT_BATCH(voffset); in r200EmitAOS()
272 voffset = rmesa->radeon.tcl.aos[nr - 1].offset + in r200EmitAOS()
274 OUT_BATCH(voffset); in r200EmitAOS()
277 voffset = rmesa->radeon.tcl.aos[i + 0].offset + in r200EmitAOS()
283 voffset = rmesa->radeon.tcl.aos[i + 1].offset + in r200EmitAOS()
291 voffset = rmesa->radeon.tcl.aos[nr - 1].offset + in r200EmitAOS()
/external/mesa3d/src/mesa/drivers/dri/radeon/
Dradeon_ioctl.c312 uint32_t voffset; in radeonEmitAOS()
331 voffset = rmesa->radeon.tcl.aos[i + 0].offset + in radeonEmitAOS()
333 OUT_BATCH(voffset); in radeonEmitAOS()
334 voffset = rmesa->radeon.tcl.aos[i + 1].offset + in radeonEmitAOS()
336 OUT_BATCH(voffset); in radeonEmitAOS()
342 voffset = rmesa->radeon.tcl.aos[nr - 1].offset + in radeonEmitAOS()
344 OUT_BATCH(voffset); in radeonEmitAOS()
347 voffset = rmesa->radeon.tcl.aos[i + 0].offset + in radeonEmitAOS()
353 voffset = rmesa->radeon.tcl.aos[i + 1].offset + in radeonEmitAOS()
361 voffset = rmesa->radeon.tcl.aos[nr - 1].offset + in radeonEmitAOS()
/external/llvm/test/CodeGen/AMDGPU/
Dllvm.amdgcn.buffer.atomic.ll20 define amdgpu_ps float @test1(<4 x i32> inreg %rsrc, i32 %data, i32 %vindex, i32 %voffset) {
24 …%o3 = call i32 @llvm.amdgcn.buffer.atomic.swap(i32 %o2, <4 x i32> %rsrc, i32 0, i32 %voffset, i1 0)
25 …call i32 @llvm.amdgcn.buffer.atomic.swap(i32 %o3, <4 x i32> %rsrc, i32 %vindex, i32 %voffset, i1 0)
26 %ofs.5 = add i32 %voffset, 42
85 define amdgpu_ps float @test3(<4 x i32> inreg %rsrc, i32 %data, i32 %cmp, i32 %vindex, i32 %voffset
89 …2 @llvm.amdgcn.buffer.atomic.cmpswap(i32 %o2, i32 %cmp, <4 x i32> %rsrc, i32 0, i32 %voffset, i1 0)
90 …m.amdgcn.buffer.atomic.cmpswap(i32 %o3, i32 %cmp, <4 x i32> %rsrc, i32 %vindex, i32 %voffset, i1 0)
91 %ofs.5 = add i32 %voffset, 42
/external/flatbuffers/net/FlatBuffers/
DFlatBufferBuilder.cs348 public void Slot(int voffset) in Slot() argument
350 if (voffset >= _vtableSize) in Slot()
353 _vtable[voffset] = Offset; in Slot()
485 public void AddStruct(int voffset, int x, int d) in AddStruct() argument
490 Slot(voffset); in AddStruct()
/external/flatbuffers/php/
DFlatbufferBuilder.php772 public function addStructX($voffset, $x, $d) argument
776 $this->slot($voffset);
786 public function addStruct($voffset, $x, $d) argument
790 $this->slot($voffset);
797 public function slot($voffset) argument
799 $this->vtable[$voffset] = $this->offset();
/external/mesa3d/src/mesa/main/
Dvarray.c1327 GLint coffset = 0, noffset = 0, voffset;/* color, normal, vertex offsets */ in _mesa_InterleavedArrays() local
1346 voffset = 0; in _mesa_InterleavedArrays()
1352 voffset = 0; in _mesa_InterleavedArrays()
1360 voffset = c; in _mesa_InterleavedArrays()
1368 voffset = c; in _mesa_InterleavedArrays()
1376 voffset = 3*f; in _mesa_InterleavedArrays()
1383 voffset = 3*f; in _mesa_InterleavedArrays()
1392 voffset = 7*f; in _mesa_InterleavedArrays()
1398 voffset = 2*f; in _mesa_InterleavedArrays()
1404 voffset = 4*f; in _mesa_InterleavedArrays()
[all …]
/external/flatbuffers/java/com/google/flatbuffers/
DFlatBufferBuilder.java718 public void addStruct(int voffset, int x, int d) { in addStruct() argument
721 slot(voffset); in addStruct()
731 public void slot(int voffset) { in slot() argument
732 vtable[voffset] = offset(); in slot()
/external/flatbuffers/python/flatbuffers/
Dpacker.py42 voffset = uint16 variable
Dbuilder.py211 vt2Len = encode.Get(packer.voffset, self.Bytes, vt2Start)
662 encode.Write(packer.voffset, self.Bytes, self.Head(), x)
691 x = encode.Get(packer.voffset, b, i * N.VOffsetTFlags.bytewidth)
/external/libvpx/libvpx/vp8/common/
Dreconinter.c180 int voffset = 20 + i * 2 + j; in vp8_build_inter4x4_predictors_mbuv() local
202 x->block[voffset].bmi.mv.as_int = x->block[uoffset].bmi.mv.as_int; in vp8_build_inter4x4_predictors_mbuv()
456 int voffset = 20 + i * 2 + j; in build_4x4uvmvs() local
482 x->block[voffset].bmi.mv.as_int = x->block[uoffset].bmi.mv.as_int; in build_4x4uvmvs()
/external/flatbuffers/go/
Dbuilder.go528 func (b *Builder) PrependStructSlot(voffset int, x, d UOffsetT) {
534 b.Slot(voffset)
/external/llvm/lib/Target/AMDGPU/
DSIInstructions.td2173 (MUBUFIntrinsicVOffset i32:$soffset, i16:$offset, i32:$voffset),
2175 (!cast<MUBUF>(opcode # _OFFEN) $voffset, $rsrc, $soffset, (as_i16imm $offset),
2181 (MUBUFIntrinsicVOffset i32:$soffset, i16:$offset, i32:$voffset),
2184 (REG_SEQUENCE VReg_64, $vindex, sub0, $voffset, sub1),
2218 (MUBUFIntrinsicVOffset i32:$soffset, i16:$offset, i32:$voffset),
2220 (!cast<MUBUF>(opcode # _OFFEN) $vdata, $voffset, $rsrc, $soffset,
2227 (MUBUFIntrinsicVOffset i32:$soffset, i16:$offset, i32:$voffset),
2231 (REG_SEQUENCE VReg_64, $vindex, sub0, $voffset, sub1),
2266 (MUBUFIntrinsicVOffset i32:$soffset, i16:$offset, i32:$voffset),
2268 (!cast<MUBUF>(opcode # _RTN_OFFEN) $vdata_in, $voffset, $rsrc, $soffset,
[all …]
/external/mesa3d/src/gallium/drivers/radeonsi/
Dsi_shader.c884 LLVMValueRef voffset, in build_buffer_load() argument
907 if (voffset) { in build_buffer_load()
908 args[2] = LLVMBuildAdd(gallivm->builder, args[2], voffset, in build_buffer_load()
925 voffset ? voffset : vindex, in build_buffer_load()
928 LLVMConstInt(ctx->i32, voffset ? 1 : 0, 0), // offen in build_buffer_load()
941 if (voffset && vindex) { in build_buffer_load()
942 LLVMValueRef vaddr[] = {vindex, voffset}; in build_buffer_load()
5392 LLVMValueRef voffset = in si_llvm_emit_vertex() local
5397 voffset = lp_build_add(uint, voffset, gs_next_vertex); in si_llvm_emit_vertex()
5398 voffset = lp_build_mul_imm(uint, voffset, 4); in si_llvm_emit_vertex()
[all …]
/external/flatbuffers/tests/
Dtest.cpp845 flatbuffers::voffset_t voffset, in CompareTableFieldValue() argument
847 T read = table->GetField(voffset, static_cast<T>(0)); in CompareTableFieldValue()
/external/e2fsprogs/lib/et/
Dtexinfo.tex6876 % 3) voffset; 4) hoffset; 5) binding offset; 6) topskip;
6883 \voffset = #3\relax
6919 {\voffset}{.25in}%
6930 {\voffset}{.25in}%
6975 {\voffset}{\hoffset}%
6993 {\voffset}{\hoffset}%
7009 {\voffset}{4.6mm}%
7021 {\voffset}{-2.95mm}%
7040 \advance\dimen0 by \voffset
7046 {\voffset}{\normaloffset}%
/external/e2fsprogs/doc/
Dtexinfo.tex6876 % 3) voffset; 4) hoffset; 5) binding offset; 6) topskip;
6883 \voffset = #3\relax
6919 {\voffset}{.25in}%
6930 {\voffset}{.25in}%
6975 {\voffset}{\hoffset}%
6993 {\voffset}{\hoffset}%
7009 {\voffset}{4.6mm}%
7021 {\voffset}{-2.95mm}%
7040 \advance\dimen0 by \voffset
7046 {\voffset}{\normaloffset}%
/external/python/cpython3/Modules/_ctypes/libffi/
Dtexinfo.tex9696 % 3) voffset; 4) hoffset; 5) binding offset; 6) topskip;
9703 \voffset = #3\relax
9743 {\voffset}{.25in}%
9799 {\voffset}{\hoffset}%
9817 {\voffset}{\hoffset}%
9833 {\voffset}{4.6mm}%
9845 {\voffset}{-2.95mm}%
9864 \advance\dimen0 by \voffset
9870 {\voffset}{\normaloffset}%
/external/python/cpython2/Modules/_ctypes/libffi/
Dtexinfo.tex9696 % 3) voffset; 4) hoffset; 5) binding offset; 6) topskip;
9703 \voffset = #3\relax
9743 {\voffset}{.25in}%
9799 {\voffset}{\hoffset}%
9817 {\voffset}{\hoffset}%
9833 {\voffset}{4.6mm}%
9845 {\voffset}{-2.95mm}%
9864 \advance\dimen0 by \voffset
9870 {\voffset}{\normaloffset}%
/external/libffi/
Dtexinfo.tex9696 % 3) voffset; 4) hoffset; 5) binding offset; 6) topskip;
9703 \voffset = #3\relax
9743 {\voffset}{.25in}%
9799 {\voffset}{\hoffset}%
9817 {\voffset}{\hoffset}%
9833 {\voffset}{4.6mm}%
9845 {\voffset}{-2.95mm}%
9864 \advance\dimen0 by \voffset
9870 {\voffset}{\normaloffset}%
/external/libmicrohttpd/doc/
Dtexinfo.tex9696 % 3) voffset; 4) hoffset; 5) binding offset; 6) topskip;
9703 \voffset = #3\relax
9743 {\voffset}{.25in}%
9799 {\voffset}{\hoffset}%
9817 {\voffset}{\hoffset}%
9833 {\voffset}{4.6mm}%
9845 {\voffset}{-2.95mm}%
9864 \advance\dimen0 by \voffset
9870 {\voffset}{\normaloffset}%