/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/cpp/util/ |
D | WaveFileWriter.cpp | 37 writeByte(n); in writeIntLittle() 38 writeByte(n >> 8); in writeIntLittle() 39 writeByte(n >> 16); in writeIntLittle() 40 writeByte(n >> 24); in writeIntLittle() 44 writeByte(n); in writeShortLittle() 45 writeByte(n >> 8); in writeShortLittle() 51 writeByte('f'); in writeFormatChunk() 52 writeByte('m'); in writeFormatChunk() 53 writeByte('t'); in writeFormatChunk() 54 writeByte(' '); in writeFormatChunk() [all …]
|
D | WaveFileWriter.h | 130 void writeByte(uint8_t b);
|
/third_party/flutter/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/data/ |
D | WritableFontData.java | 159 public int writeByte(int index, byte b) { in writeByte() method in WritableFontData 246 return this.writeByte(index, c); in writeChar() 258 this.writeByte(index, (byte) ((us >> 8) & 0xff)); in writeUShort() 259 this.writeByte(index + 1, (byte) (us & 0xff)); in writeUShort() 298 this.writeByte(index, (byte) ((ui >> 16) & 0xff)); in writeUInt24() 299 this.writeByte(index + 1, (byte) ((ui >> 8) & 0xff)); in writeUInt24() 300 this.writeByte(index + 2, (byte) (ui & 0xff)); in writeUInt24() 313 this.writeByte(index, (byte) ((ul >> 24) & 0xff)); in writeULong() 314 this.writeByte(index + 1, (byte) ((ul >> 16) & 0xff)); in writeULong() 315 this.writeByte(index + 2, (byte) ((ul >> 8) & 0xff)); in writeULong() [all …]
|
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/data/ |
D | WritableFontData.java | 159 public int writeByte(int index, byte b) { in writeByte() method in WritableFontData 246 return this.writeByte(index, c); in writeChar() 258 this.writeByte(index, (byte) ((us >> 8) & 0xff)); in writeUShort() 259 this.writeByte(index + 1, (byte) (us & 0xff)); in writeUShort() 298 this.writeByte(index, (byte) ((ui >> 16) & 0xff)); in writeUInt24() 299 this.writeByte(index + 1, (byte) ((ui >> 8) & 0xff)); in writeUInt24() 300 this.writeByte(index + 2, (byte) (ui & 0xff)); in writeUInt24() 313 this.writeByte(index, (byte) ((ul >> 24) & 0xff)); in writeULong() 314 this.writeByte(index + 1, (byte) ((ul >> 16) & 0xff)); in writeULong() 315 this.writeByte(index + 2, (byte) ((ul >> 8) & 0xff)); in writeULong() [all …]
|
/third_party/node/deps/npm/node_modules/asn1/lib/ber/ |
D | writer.js | 65 Writer.prototype.writeByte = function (b) { method in Writer 104 this.writeByte(ASN1.Null); 105 this.writeByte(0x00); 139 this.writeByte(tag); 155 this.writeByte(tag); 216 this.writeByte(tag); 219 self.writeByte(b); 253 this.writeByte(tag);
|
/third_party/flutter/engine/flutter/shell/platform/darwin/common/framework/Source/ |
D | FlutterStandardCodec.mm | 99 [writer writeByte:0]; 107 [writer writeByte:1]; 224 - (void)writeByte:(UInt8)value { 238 [self writeByte:(UInt8)size]; 240 [self writeByte:254]; 244 [self writeByte:255]; 253 [self writeByte:0]; 266 [self writeByte:FlutterStandardFieldNil]; 272 [self writeByte:(b ? FlutterStandardFieldTrue : FlutterStandardFieldFalse)]; 278 [self writeByte:FlutterStandardFieldFloat64]; [all …]
|
/third_party/flutter/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/bitmap/ |
D | BigGlyphMetrics.java | 115 this.internalWriteData().writeByte(Offset.height.offset, height); in setHeight() 123 this.internalWriteData().writeByte(Offset.width.offset, width); in setWidth() 147 this.internalWriteData().writeByte(Offset.horiAdvance.offset, advance); in setHoriAdvance() 171 this.internalWriteData().writeByte(Offset.vertAdvance.offset, advance); in setVertAdvance()
|
D | SmallGlyphMetrics.java | 86 this.internalWriteData().writeByte(Offset.height.offset, height); in setHeight() 94 this.internalWriteData().writeByte(Offset.width.offset, width); in setWidth() 118 this.internalWriteData().writeByte(Offset.Advance.offset, advance); in setAdvance()
|
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/bitmap/ |
D | BigGlyphMetrics.java | 115 this.internalWriteData().writeByte(Offset.height.offset, height); in setHeight() 123 this.internalWriteData().writeByte(Offset.width.offset, width); in setWidth() 147 this.internalWriteData().writeByte(Offset.horiAdvance.offset, advance); in setHoriAdvance() 171 this.internalWriteData().writeByte(Offset.vertAdvance.offset, advance); in setVertAdvance()
|
D | SmallGlyphMetrics.java | 86 this.internalWriteData().writeByte(Offset.height.offset, height); in setHeight() 94 this.internalWriteData().writeByte(Offset.width.offset, width); in setWidth() 118 this.internalWriteData().writeByte(Offset.Advance.offset, advance); in setAdvance()
|
/third_party/mesa3d/src/glx/ |
D | pixel.c | 285 GLubyte writeByte; in EmptyBitmap() local 318 writeByte = 0; in EmptyBitmap() 334 writeByte |= (sourceImage[0] >> bitOffset); in EmptyBitmap() 336 (writeByte & writeMask); in EmptyBitmap() 337 writeByte = (sourceImage[0] << (8 - bitOffset)); in EmptyBitmap() 361 if (writeByte) { in EmptyBitmap() 370 currentByte = (currentByte & ~writeMask) | (writeByte & writeMask); in EmptyBitmap()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | ICUBinary.java | 631 dos.writeByte(MAGIC1); 632 dos.writeByte(MAGIC2); 636 dos.writeByte(1); // isBigEndian 637 dos.writeByte(CHAR_SET_); // charsetFamily 638 dos.writeByte(CHAR_SIZE_); // sizeofUChar 639 dos.writeByte(0); // reservedByte
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
D | ICUBinary.java | 636 dos.writeByte(MAGIC1); 637 dos.writeByte(MAGIC2); 641 dos.writeByte(1); // isBigEndian 642 dos.writeByte(CHAR_SET_); // charsetFamily 643 dos.writeByte(CHAR_SIZE_); // sizeofUChar 644 dos.writeByte(0); // reservedByte
|
/third_party/flutter/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/conversion/eot/ |
D | HdmxEncoder.java | 63 result.writeByte(HEADER_SIZE + RECORD_SIZE * i, (byte) hdmx.pixelSize(i)); in encode() 64 result.writeByte(HEADER_SIZE + RECORD_SIZE * i + 1, (byte) hdmx.maxWidth(i)); in encode()
|
D | EOTWriter.java | 87 index += writableFontData.writeByte(index, DEFAULT_CHARSET); // Charset in convert() 88 index += writableFontData.writeByte(index, (byte) (os2Table.fsSelectionAsInt() & 1)); // Italic in convert()
|
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/conversion/eot/ |
D | HdmxEncoder.java | 63 result.writeByte(HEADER_SIZE + RECORD_SIZE * i, (byte) hdmx.pixelSize(i)); in encode() 64 result.writeByte(HEADER_SIZE + RECORD_SIZE * i + 1, (byte) hdmx.maxWidth(i)); in encode()
|
D | EOTWriter.java | 87 index += writableFontData.writeByte(index, DEFAULT_CHARSET); // Charset in convert() 88 index += writableFontData.writeByte(index, (byte) (os2Table.fsSelectionAsInt() & 1)); // Italic in convert()
|
/third_party/flutter/flutter/dev/integration_tests/channels/ios/Runner/ |
D | AppDelegate.m | 33 [self writeByte:DATE]; 40 [self writeByte:PAIR];
|
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/ |
D | ByteArrayTableBuilder.java | 82 data.writeByte(index, b); in setByteValue()
|
/third_party/flutter/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/ |
D | ByteArrayTableBuilder.java | 82 data.writeByte(index, b); in setByteValue()
|
/third_party/skia/third_party/externals/sfntly/java/test/com/google/typography/font/sfntly/data/ |
D | FontDataTests.java | 262 wfd.writeByte(index, b); in writeFontDataWithSingleByte() 268 wfd.writeByte(i, (byte) (i % 256)); in fillTestWFD()
|
/third_party/flutter/skia/third_party/externals/sfntly/java/test/com/google/typography/font/sfntly/data/ |
D | FontDataTests.java | 262 wfd.writeByte(index, b); in writeFontDataWithSingleByte() 268 wfd.writeByte(i, (byte) (i % 256)); in fillTestWFD()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/ |
D | LocalizedNumberFormatterAsFormat.java | 136 out.writeByte(0); // version in writeExternal()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/ |
D | LocalizedNumberFormatterAsFormat.java | 134 out.writeByte(0); // version in writeExternal()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
D | MeasureFormat.java | 950 out.writeByte(0); // version in writeExternal() 952 out.writeByte(formatWidth.ordinal()); in writeExternal() 954 out.writeByte(subClass); in writeExternal()
|