HomeSort by relevance Sort by last modified time
    Searched refs:additional_bytes (Results 1 - 9 of 9) sorted by null

  /external/flatbuffers/java/com/google/flatbuffers/
FlatBufferBuilder.java 161 * Prepare to write an element of `size` after `additional_bytes`
164 * the string data follows it directly. If all you need to do is alignment, `additional_bytes`
168 * @param additional_bytes The padding size.
170 public void prep(int size, int additional_bytes) {
174 // aligned after `additional_bytes`
175 int align_size = ((~(bb.capacity() - space + additional_bytes)) + 1) & (size - 1);
177 while (space < align_size + size + additional_bytes) {
  /external/flatbuffers/php/
FlatbufferBuilder.php 136 * @param $additional_bytes
139 public function prep($size, $additional_bytes)
145 $align_size = ((~($this->bb->capacity() - $this->space + $additional_bytes)) + 1) & ($size - 1);
146 while ($this->space < $align_size + $size + $additional_bytes) {
  /external/flatbuffers/js/
flatbuffers.js 263 * Prepare to write an element of `size` after `additional_bytes` have been
266 * you need to do is alignment, `additional_bytes` will be 0.
269 * @param {number} additional_bytes The padding size
271 flatbuffers.Builder.prototype.prep = function(size, additional_bytes) {
278 // aligned after `additional_bytes`
279 var align_size = ((~(this.bb.capacity() - this.space + additional_bytes)) + 1) & (size - 1);
282 while (this.space < align_size + size + additional_bytes) {
  /external/flatbuffers/go/
builder.go 235 // Prep prepares to write an element of `size` after `additional_bytes`
  /external/owasp/sanitizer/tools/findbugs/lib/
bcel.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/findbugs/bcel/2.0.1/
bcel-2.0.1.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/findbugs/bcel-findbugs/6.0/
bcel-findbugs-6.0.jar 
  /prebuilts/tools/common/m2/repository/xalan/xalan/2.6.0/
xalan-2.6.0.jar 
  /prebuilts/tools/common/m2/repository/xalan/xalan/2.7.1/
xalan-2.7.1.jar 

Completed in 315 milliseconds