HomeSort by relevance Sort by last modified time
    Searched refs:voffset (Results 1 - 25 of 28) sorted by null

1 2

  /external/flatbuffers/python/flatbuffers/
packer.py 42 voffset = uint16 variable
builder.py 211 vt2Len = encode.Get(packer.voffset, self.Bytes, vt2Start)
513 Slot sets the vtable key `voffset` to the current location in the
715 encode.Write(packer.voffset, self.Bytes, self.Head(), x)
744 x = encode.Get(packer.voffset, b, i * N.VOffsetTFlags.bytewidth)
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_cmdbuf.c 242 uint32_t voffset; local
261 voffset = rmesa->radeon.tcl.aos[i + 0].offset +
263 OUT_BATCH(voffset);
264 voffset = rmesa->radeon.tcl.aos[i + 1].offset +
266 OUT_BATCH(voffset);
272 voffset = rmesa->radeon.tcl.aos[nr - 1].offset +
274 OUT_BATCH(voffset);
277 voffset = rmesa->radeon.tcl.aos[i + 0].offset +
283 voffset = rmesa->radeon.tcl.aos[i + 1].offset +
291 voffset = rmesa->radeon.tcl.aos[nr - 1].offset
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_ioctl.c 312 uint32_t voffset;
331 voffset = rmesa->radeon.tcl.aos[i + 0].offset +
333 OUT_BATCH(voffset);
334 voffset = rmesa->radeon.tcl.aos[i + 1].offset +
336 OUT_BATCH(voffset);
342 voffset = rmesa->radeon.tcl.aos[nr - 1].offset +
344 OUT_BATCH(voffset);
347 voffset = rmesa->radeon.tcl.aos[i + 0].offset +
353 voffset = rmesa->radeon.tcl.aos[i + 1].offset +
361 voffset = rmesa->radeon.tcl.aos[nr - 1].offset
    [all...]
  /external/flatbuffers/js/
flatbuffers.js 412 * @param {number} voffset
416 flatbuffers.Builder.prototype.addFieldInt8 = function(voffset, value, defaultValue) {
419 this.slot(voffset);
424 * @param {number} voffset
428 flatbuffers.Builder.prototype.addFieldInt16 = function(voffset, value, defaultValue) {
431 this.slot(voffset);
436 * @param {number} voffset
440 flatbuffers.Builder.prototype.addFieldInt32 = function(voffset, value, defaultValue) {
443 this.slot(voffset);
448 * @param {number} voffset
    [all...]
  /external/flatbuffers/php/
FlatbufferBuilder.php 774 * @param $voffset
779 public function addStructX($voffset, $x, $d)
783 $this->slot($voffset);
788 * @param $voffset
793 public function addStruct($voffset, $x, $d)
797 $this->slot($voffset);
802 * @param $voffset
804 public function slot($voffset)
806 $this->vtable[$voffset] = $this->offset();
  /external/mesa3d/src/amd/common/
ac_llvm_build.h 202 LLVMValueRef voffset,
214 LLVMValueRef voffset,
225 LLVMValueRef voffset,
233 LLVMValueRef voffset,
ac_llvm_build.c 841 LLVMValueRef voffset,
849 /* SWIZZLE_ENABLE requires that soffset isn't folded into voffset
850 * (voffset is swizzled, but soffset isn't swizzled).
865 ac_build_buffer_store_dword(ctx, rsrc, v01, 2, voffset,
868 ac_build_buffer_store_dword(ctx, rsrc, v[2], 1, voffset,
883 if (voffset)
884 offset = LLVMBuildAdd(ctx->builder, offset, voffset, "");
918 voffset ? voffset : LLVMGetUndef(ctx->i32),
923 LLVMConstInt(ctx->i32, voffset != NULL, 0)
    [all...]
  /external/flatbuffers/net/FlatBuffers/
FlatBufferBuilder.cs 425 // Set the current vtable at `voffset` to the current location in the
427 public void Slot(int voffset)
429 if (voffset >= _vtableSize)
430 throw new IndexOutOfRangeException("Flatbuffers: invalid voffset");
432 _vtable[voffset] = Offset;
585 public void AddStruct(int voffset, int x, int d)
590 Slot(voffset);
  /external/flatbuffers/java/com/google/flatbuffers/
FlatBufferBuilder.java 735 * @param voffset The index into the vtable.
739 public void addStruct(int voffset, int x, int d) {
742 slot(voffset);
747 * Set the current vtable at `voffset` to the current location in the buffer.
749 * @param voffset The index into the vtable to store the offset relative to the end of the
752 public void slot(int voffset) {
753 vtable[voffset] = offset();
    [all...]
  /frameworks/av/media/libeffects/testlibs/
EffectEqualizer.cpp 675 int voffset = ((p->psize - 1) / sizeof(int32_t) + 1) * sizeof(int32_t); local
677 p->data + voffset);
678 *replySize = sizeof(effect_param_t) + voffset + p->vsize;
681 *(int32_t *)((char *)pReplyData + sizeof(effect_param_t) + voffset),
682 *(int32_t *)((char *)pReplyData + sizeof(effect_param_t) + voffset + sizeof(int32_t)));
  /external/mesa3d/src/mesa/main/
varray.c 1661 GLint coffset = 0, noffset = 0, voffset;\/* color, normal, vertex offsets *\/ local
    [all...]
  /frameworks/av/media/libeffects/lvm/wrapper/Bundle/
EffectBundle.cpp 3529 uint32_t voffset = paddedParamSize; local
3607 const uint32_t voffset = computeParamVOffset(p); local
3640 const uint32_t voffset = computeParamVOffset(p); local
3671 const uint32_t voffset = computeParamVOffset(p); local
3696 const uint32_t voffset = computeParamVOffset(p); local
    [all...]
  /external/libvpx/libvpx/vp8/common/
reconinter.c 180 int voffset = 20 + i * 2 + j; local
202 x->block[voffset].bmi.mv.as_int = x->block[uoffset].bmi.mv.as_int;
456 int voffset = 20 + i * 2 + j; local
482 x->block[voffset].bmi.mv.as_int = x->block[uoffset].bmi.mv.as_int;
  /frameworks/av/media/libeffects/dynamicsproc/
EffectDynamicsProcessing.cpp 522 uint32_t voffset = computeParamVOffset(p);
528 p->data + voffset);
529 *replySize = sizeof(effect_param_t) + voffset + p->vsize;
544 const uint32_t voffset = computeParamVOffset(p);
550 p->data + voffset);
    [all...]
  /external/libaom/libaom/av1/common/
thread_common.c 731 const int voffset = RESTORATION_UNIT_OFFSET >> ss_y; local
732 limits.v_start = AOMMAX(tile_rect.top, limits.v_start - voffset);
733 if (limits.v_end < tile_rect.bottom) limits.v_end -= voffset;
mvref_common.c 561 const int voffset = AOMMAX(mi_size_high[BLOCK_8X8], xd->n4_h); local
567 { voffset, -2 },
568 { voffset, hoffset },
569 { voffset - 2, hoffset },
    [all...]
restoration.c 1265 const int voffset = RESTORATION_UNIT_OFFSET >> ss_y; local
    [all...]
  /external/flatbuffers/go/
builder.go 530 func (b *Builder) PrependStructSlot(voffset int, x, d UOffsetT) {
536 b.Slot(voffset)
540 // Slot sets the vtable key `voffset` to the current location in the buffer.
  /frameworks/av/media/libeffects/lvm/wrapper/Reverb/
EffectReverb.cpp 2060 int voffset = ((p->psize - 1) \/ sizeof(int32_t) + 1) * sizeof(int32_t); local
    [all...]
  /frameworks/av/media/libeffects/preprocessing/
PreProcessing.cpp 1512 int voffset = ((p->psize - 1) \/ sizeof(int32_t) + 1) * sizeof(int32_t); local
    [all...]
  /external/mesa3d/src/gallium/drivers/radeonsi/
si_shader.c 609 LLVMValueRef voffset = LLVMConstInt(ctx->i32, fetch_stride * i, 0); local
612 vertex_index, voffset,
4348 LLVMValueRef voffset = local
5678 LLVMValueRef voffset = local
    [all...]
  /external/flatbuffers/tests/
test.cpp     [all...]
  /external/e2fsprogs/doc/
texinfo.tex     [all...]
  /external/e2fsprogs/lib/et/
texinfo.tex     [all...]

Completed in 1235 milliseconds

1 2