Home
last modified time | relevance | path

Searched refs:writeByte (Results 1 – 25 of 40) sorted by relevance

12

/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/cpp/util/
DWaveFileWriter.cpp37 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 …]
DWaveFileWriter.h130 void writeByte(uint8_t b);
/third_party/flutter/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/data/
DWritableFontData.java159 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/
DWritableFontData.java159 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/
Dwriter.js65 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/
DFlutterStandardCodec.mm99 [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/
DBigGlyphMetrics.java115 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()
DSmallGlyphMetrics.java86 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/
DBigGlyphMetrics.java115 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()
DSmallGlyphMetrics.java86 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/
Dpixel.c285 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/
DICUBinary.java631 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/
DICUBinary.java636 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/
DHdmxEncoder.java63 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()
DEOTWriter.java87 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/
DHdmxEncoder.java63 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()
DEOTWriter.java87 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/
DAppDelegate.m33 [self writeByte:DATE];
40 [self writeByte:PAIR];
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/
DByteArrayTableBuilder.java82 data.writeByte(index, b); in setByteValue()
/third_party/flutter/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/
DByteArrayTableBuilder.java82 data.writeByte(index, b); in setByteValue()
/third_party/skia/third_party/externals/sfntly/java/test/com/google/typography/font/sfntly/data/
DFontDataTests.java262 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/
DFontDataTests.java262 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/
DLocalizedNumberFormatterAsFormat.java136 out.writeByte(0); // version in writeExternal()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
DLocalizedNumberFormatterAsFormat.java134 out.writeByte(0); // version in writeExternal()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
DMeasureFormat.java950 out.writeByte(0); // version in writeExternal()
952 out.writeByte(formatWidth.ordinal()); in writeExternal()
954 out.writeByte(subClass); in writeExternal()

12