/external/flatbuffers/tests/MyGame/Example/ |
Vec3.php | 21 $this->bb = $_bb; variable 30 return $this->bb->getFloat($this->bb_pos + 0); 38 return $this->bb->getFloat($this->bb_pos + 4); 46 return $this->bb->getFloat($this->bb_pos + 8); 54 return $this->bb->getDouble($this->bb_pos + 16); 62 return $this->bb->getSbyte($this->bb_pos + 24); 71 $obj->init($this->bb_pos + 26, $this->bb);
|
Vec3.cs | 14 public ByteBuffer ByteBuffer { get { return __p.bb; } } 15 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; } 18 public float X { get { return __p.bb.GetFloat(__p.bb_pos + 0); } } 19 public void MutateX(float x) { __p.bb.PutFloat(__p.bb_pos + 0, x); } 20 public float Y { get { return __p.bb.GetFloat(__p.bb_pos + 4); } } 21 public void MutateY(float y) { __p.bb.PutFloat(__p.bb_pos + 4, y); } 22 public float Z { get { return __p.bb.GetFloat(__p.bb_pos + 8); } } 23 public void MutateZ(float z) { __p.bb.PutFloat(__p.bb_pos + 8, z); } 24 public double Test1 { get { return __p.bb.GetDouble(__p.bb_pos + 16); } } 25 public void MutateTest1(double test1) { __p.bb.PutDouble(__p.bb_pos + 16, test1); [all...] |
Stat.php | 14 * @param ByteBuffer $bb 17 public static function getRootAsStat(ByteBuffer $bb) 20 return ($obj->init($bb->getInt($bb->getPosition()) + $bb->getPosition(), $bb)); 46 $this->bb = $_bb; variable 62 return $o != 0 ? $this->bb->getLong($o + $this->bb_pos) : 0; 71 return $o != 0 ? $this->bb->getUshort($o + $this->bb_pos) : 0;
|
/external/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/ |
TableInNestedNS.php | 14 * @param ByteBuffer $bb 17 public static function getRootAsTableInNestedNS(ByteBuffer $bb) 20 return ($obj->init($bb->getInt($bb->getPosition()) + $bb->getPosition(), $bb)); 31 $this->bb = $_bb; variable 41 return $o != 0 ? $this->bb->getInt($o + $this->bb_pos) : 0;
|
/external/flatbuffers/tests/namespace_test/NamespaceA/ |
SecondTableInA.php | 14 * @param ByteBuffer $bb 17 public static function getRootAsSecondTableInA(ByteBuffer $bb) 20 return ($obj->init($bb->getInt($bb->getPosition()) + $bb->getPosition(), $bb)); 31 $this->bb = $_bb; variable 39 return $o != 0 ? $obj->init($this->__indirect($o + $this->bb_pos), $this->bb) : 0;
|
TableInFirstNS.php | 14 * @param ByteBuffer $bb 17 public static function getRootAsTableInFirstNS(ByteBuffer $bb) 20 return ($obj->init($bb->getInt($bb->getPosition()) + $bb->getPosition(), $bb)); 31 $this->bb = $_bb; variable 39 return $o != 0 ? $obj->init($this->__indirect($o + $this->bb_pos), $this->bb) : 0; 48 return $o != 0 ? $this->bb->getSbyte($o + $this->bb_pos) : \NamespaceA\NamespaceB\EnumInNestedNS::A; 55 return $o != 0 ? $obj->init($o + $this->bb_pos, $this->bb) : 0 [all...] |
/external/flatbuffers/tests/union_vector/ |
Attacker.php | 12 * @param ByteBuffer $bb 15 public static function getRootAsAttacker(ByteBuffer $bb) 18 return ($obj->init($bb->getInt($bb->getPosition()) + $bb->getPosition(), $bb)); 39 $this->bb = $_bb; variable 49 return $o != 0 ? $this->bb->getInt($o + $this->bb_pos) : 0;
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/ |
BaseDescriptor.java | 65 public final void parse(int tag, ByteBuffer bb) throws IOException {
69 int tmp = IsoTypeReader.readUInt8(bb);
73 tmp = IsoTypeReader.readUInt8(bb);
79 ByteBuffer detailSource = bb.slice();
83 bb.position(bb.position() + sizeOfInstance);
86 public abstract void parseDetail(ByteBuffer bb) throws IOException;
|
InitialObjectDescriptor.java | 74 public void parseDetail(ByteBuffer bb) throws IOException {
75 int data = IsoTypeReader.readUInt16(bb);
83 urlLength = IsoTypeReader.readUInt8(bb);
84 urlString = IsoTypeReader.readString(bb, urlLength);
87 oDProfileLevelIndication = IsoTypeReader.readUInt8(bb);
88 sceneProfileLevelIndication = IsoTypeReader.readUInt8(bb);
89 audioProfileLevelIndication = IsoTypeReader.readUInt8(bb);
90 visualProfileLevelIndication = IsoTypeReader.readUInt8(bb);
91 graphicsProfileLevelIndication = IsoTypeReader.readUInt8(bb);
96 final BaseDescriptor descriptor = ObjectDescriptorFactory.createFrom(-1, bb);
[all...] |
/tools/test/connectivity/acts/framework/acts/controllers/relay_lib/ |
rdl_relay_board.py | 30 with BitBangDevice(self.device) as bb: 32 bb.port |= self.address[relay_position] 34 bb.port &= ~(self.address[relay_position])
|
/libcore/ojluni/src/main/java/java/nio/channels/ |
Channels.java | 75 private static void writeFullyImpl(WritableByteChannel ch, ByteBuffer bb) 78 while (bb.remaining() > 0) { 79 int n = ch.write(bb); 91 private static void writeFully(WritableByteChannel ch, ByteBuffer bb) 99 writeFullyImpl(ch, bb); 102 writeFullyImpl(ch, bb); 148 private ByteBuffer bb = null; 168 ByteBuffer bb = ((this.bs == bs) local 169 ? this.bb 171 bb.limit(Math.min(off + len, bb.capacity())) [all...] |
/external/flatbuffers/tests/namespace_test/ |
namespace_test2_generated.js | 28 this.bb = null; 38 * @param {flatbuffers.ByteBuffer} bb 41 NamespaceA.TableInFirstNS.prototype.__init = function(i, bb) { 43 this.bb = bb; 48 * @param {flatbuffers.ByteBuffer} bb 52 NamespaceA.TableInFirstNS.getRootAsTableInFirstNS = function(bb, obj) { 53 return (obj || new NamespaceA.TableInFirstNS).__init(bb.readInt32(bb.position()) + bb.position(), bb) [all...] |
/external/flatbuffers/tests/ |
monster_test_generated.js | 53 this.bb = null; 63 * @param {flatbuffers.ByteBuffer} bb 66 MyGame.InParentNamespace.prototype.__init = function(i, bb) { 68 this.bb = bb; 73 * @param {flatbuffers.ByteBuffer} bb 77 MyGame.InParentNamespace.getRootAsInParentNamespace = function(bb, obj) { 78 return (obj || new MyGame.InParentNamespace).__init(bb.readInt32(bb.position()) + bb.position(), bb) [all...] |
/external/e2fsprogs/lib/ext2fs/ |
freefs.c | 75 void ext2fs_u32_list_free(ext2_u32_list bb) 77 if (bb->magic != EXT2_ET_MAGIC_BADBLOCKS_LIST) 80 if (bb->list) 81 ext2fs_free_mem(&bb->list); 82 bb->list = 0; 83 ext2fs_free_mem(&bb); 86 void ext2fs_badblocks_list_free(ext2_badblocks_list bb) 88 ext2fs_u32_list_free((ext2_u32_list) bb);
|
tst_badblocks.c | 72 badblocks_list bb; local 75 retval = ext2fs_badblocks_list_create(&bb, 5); 81 retval = ext2fs_badblocks_list_add(bb, vec[i]); 85 ext2fs_badblocks_list_free(bb); 89 *ret = bb; 93 static void print_list(badblocks_list bb, int verify) 100 retval = ext2fs_badblocks_list_iterate_begin(bb, &iter); 122 static void validate_test_seq(badblocks_list bb, blk_t *vec) 127 match = ext2fs_badblocks_list_test(bb, vec[i]); 140 static void do_test_seq(badblocks_list bb, blk_t *vec [all...] |
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/threegpp26245/ |
FontTableBox.java | 71 public void parse(ByteBuffer bb) { 72 fontId = IsoTypeReader.readUInt16(bb); 73 int length = IsoTypeReader.readUInt8(bb); 74 fontname = IsoTypeReader.readString(bb, length); 77 public void getContent(ByteBuffer bb) { 78 IsoTypeWriter.writeUInt16(bb, fontId); 79 IsoTypeWriter.writeUInt8(bb, fontname.length()); 80 bb.put(Utf8.convert(fontname));
|
/external/python/cpython3/Objects/stringlib/ |
eq.h | 7 unicode_eq(PyObject *aa, PyObject *bb) 10 PyUnicodeObject *b = (PyUnicodeObject *)bb;
|
/external/toybox/tests/ |
cpio.test | 9 touch a bb ccc dddd 11 rm a bb ccc dddd 21 printf '1' >bb 32 rm a bb ccc dddd
|
/prebuilts/jdk/jdk8/darwin-x86/sample/nio/server/ |
Request.java | 102 static boolean isComplete(ByteBuffer bb) { 103 int p = bb.position() - 4; 106 return (((bb.get(p + 0) == '\r') && 107 (bb.get(p + 1) == '\n') && 108 (bb.get(p + 2) == '\r') && 109 (bb.get(p + 3) == '\n'))); 140 static Request parse(ByteBuffer bb) throws MalformedRequestException { 142 CharBuffer cb = ascii.decode(bb);
|
/prebuilts/jdk/jdk8/linux-x86/sample/nio/server/ |
Request.java | 102 static boolean isComplete(ByteBuffer bb) { 103 int p = bb.position() - 4; 106 return (((bb.get(p + 0) == '\r') && 107 (bb.get(p + 1) == '\n') && 108 (bb.get(p + 2) == '\r') && 109 (bb.get(p + 3) == '\n'))); 140 static Request parse(ByteBuffer bb) throws MalformedRequestException { 142 CharBuffer cb = ascii.decode(bb);
|
/external/flatbuffers/php/ |
FlatbufferBuilder.php | 28 * @var ByteBuffer $bb 30 public $bb; variable 95 $this->bb = $this->newByteBuffer($initial_size); variable 117 return $this->bb->capacity() - $this->space; 128 $this->bb->putByte(--$this->space, "\0"); 145 $align_size = ((~($this->bb->capacity() - $this->space + $additional_bytes)) + 1) & ($size - 1); 147 $old_buf_size = $this->bb->capacity(); 148 $this->bb = $this->growByteBuffer($this->bb); variable 149 $this->space += $this->bb->capacity() - $old_buf_size [all...] |
/external/flatbuffers/tests/MyGame/Example2/ |
Monster.php | 14 * @param ByteBuffer $bb 17 public static function getRootAsMonster(ByteBuffer $bb) 20 return ($obj->init($bb->getInt($bb->getPosition()) + $bb->getPosition(), $bb)); 46 $this->bb = $_bb; variable
|
/external/flatbuffers/tests/MyGame/ |
InParentNamespace.php | 14 * @param ByteBuffer $bb 17 public static function getRootAsInParentNamespace(ByteBuffer $bb) 20 return ($obj->init($bb->getInt($bb->getPosition()) + $bb->getPosition(), $bb)); 46 $this->bb = $_bb; variable
|
/external/elfutils/tests/ |
run-get-lines.sh | 26 804842c: /home/drepper/gnu/new-bu/build/ttt/m.c:5:0: is_stmt:yes, end_seq:no, bb:no, prologue:no, epilogue:no 27 8048432: /home/drepper/gnu/new-bu/build/ttt/m.c:6:0: is_stmt:yes, end_seq:no, bb:no, prologue:no, epilogue:no 28 804844d: /home/drepper/gnu/new-bu/build/ttt/m.c:7:0: is_stmt:yes, end_seq:no, bb:no, prologue:no, epilogue:no 29 8048458: /home/drepper/gnu/new-bu/build/ttt/m.c:8:0: is_stmt:yes, end_seq:no, bb:no, prologue:no, epilogue:no 30 804845a: /home/drepper/gnu/new-bu/build/ttt/m.c:8:0: is_stmt:yes, end_seq:yes, bb:no, prologue:no, epilogue:no 33 804845c: /home/drepper/gnu/new-bu/build/ttt/b.c:4:0: is_stmt:yes, end_seq:no, bb:no, prologue:no, epilogue:no 34 804845f: /home/drepper/gnu/new-bu/build/ttt/b.c:5:0: is_stmt:yes, end_seq:no, bb:no, prologue:no, epilogue:no 35 8048464: /home/drepper/gnu/new-bu/build/ttt/b.c:6:0: is_stmt:yes, end_seq:no, bb:no, prologue:no, epilogue:no 36 8048466: /home/drepper/gnu/new-bu/build/ttt/b.c:6:0: is_stmt:yes, end_seq:yes, bb:no, prologue:no, epilogue:no 39 8048468: /home/drepper/gnu/new-bu/build/ttt/f.c:3:0: is_stmt:yes, end_seq:no, bb:no, prologue:no, epilogue:n [all...] |
/sdk/apps/SdkController/src/com/android/tools/sdkcontroller/activities/ |
MultiTouchActivity.java | 167 ByteBuffer bb = null; local 178 bb = ByteBuffer.allocate( 180 bb.order(h.getEndian()); 182 mImageView.constructEventMessage(bb, event, n); 189 bb = ByteBuffer.allocate(ProtocolConstants.MT_EVENT_ENTRY_SIZE); 190 bb.order(h.getEndian()); 191 mImageView.constructEventMessage(bb, event, action_pid_index); 197 bb = ByteBuffer.allocate(ProtocolConstants.MT_EVENT_ENTRY_SIZE); 198 bb.order(h.getEndian()); 199 bb.putInt(event.getPointerId(action_pid_index)) 272 final ByteBuffer bb = ByteBuffer.wrap(array); local [all...] |