| /third_party/mesa3d/src/freedreno/fdl/ |
| H A D | fd6_layout_test.c | 44 {.offset = 0, .pitch = 256}, 45 {.offset = 8192, .pitch = 256}, 46 {.offset = 12288, .pitch = 256}, 47 {.offset = 14336, .pitch = 256}, 48 {.offset = 15360, .pitch = 256}, 49 {.offset = 15872, .pitch = 256}, 67 {.offset = 0, .pitch = 4096}, 68 {.offset = 65536, .pitch = 2048}, 69 {.offset = 98304, .pitch = 1024}, 70 {.offset [all...] |
| /third_party/node/lib/internal/ |
| H A D | buffer.js | 54 function checkBounds(buf, offset, byteLength) { 55 validateNumber(offset, 'offset'); 56 if (buf[offset] === undefined || buf[offset + byteLength] === undefined) 57 boundsError(offset, buf.length - (byteLength + 1)); 60 function checkInt(value, min, max, buf, offset, byteLength) { 76 checkBounds(buf, offset, byteLength); 82 throw new ERR_OUT_OF_RANGE(type || 'offset', 'an integer', value); 88 throw new ERR_OUT_OF_RANGE(type || 'offset', [all...] |
| /third_party/mesa3d/src/amd/common/ |
| H A D | ac_msgpack.c | 75 msgpack->offset = 0; in ac_msgpack_init() 86 if ((msgpack->offset + data_size) > msgpack->mem_size) { in ac_msgpack_resize_if_required() 106 msgpack->mem[msgpack->offset] = MSGPACK_FIXMAP_OP | n; in ac_msgpack_add_fixmap_op() 107 msgpack->offset = msgpack->offset + 1; in ac_msgpack_add_fixmap_op() 111 msgpack->mem[msgpack->offset] = MSGPACK_MAP16_OP; in ac_msgpack_add_fixmap_op() 112 *((uint16_t*)&msgpack->mem[msgpack->offset + 1]) = util_bswap16(n); in ac_msgpack_add_fixmap_op() 113 msgpack->offset = msgpack->offset + 3; in ac_msgpack_add_fixmap_op() 117 msgpack->mem[msgpack->offset] in ac_msgpack_add_fixmap_op() [all...] |
| /third_party/mesa3d/src/util/ |
| H A D | vma.c | 32 uint64_t offset; member 69 assert(hole->offset > 0); in util_vma_heap_validate() 76 assert(hole->size + hole->offset == 0 || in util_vma_heap_validate() 77 hole->size + hole->offset > hole->offset); in util_vma_heap_validate() 81 * hole->size + hole->offset == prev_offset, then we failed to join in util_vma_heap_validate() 84 assert(hole->size + hole->offset > hole->offset && in util_vma_heap_validate() 85 hole->size + hole->offset < prev_offset); in util_vma_heap_validate() 87 prev_offset = hole->offset; in util_vma_heap_validate() 95 util_vma_hole_alloc(struct util_vma_hole *hole, uint64_t offset, uint64_t size) util_vma_hole_alloc() argument 162 uint64_t offset = (hole->size - size) + hole->offset; util_vma_heap_alloc() local 181 uint64_t offset = hole->offset; util_vma_heap_alloc() local 204 util_vma_heap_alloc_addr(struct util_vma_heap *heap, uint64_t offset, uint64_t size) util_vma_heap_alloc_addr() argument 242 util_vma_heap_free(struct util_vma_heap *heap, uint64_t offset, uint64_t size) util_vma_heap_free() argument [all...] |
| /third_party/node/deps/v8/src/objects/ |
| H A D | object-macros.h | 164 #define DEF_PRIMITIVE_ACCESSORS(holder, name, offset, type) \ 165 type holder::name() const { return ReadField<type>(offset); } \ 166 void holder::set_##name(type value) { WriteField<type>(offset, value); } 168 #define INT_ACCESSORS(holder, name, offset) \ 169 DEF_PRIMITIVE_ACCESSORS(holder, name, offset, int) 171 #define INT32_ACCESSORS(holder, name, offset) \ 172 DEF_PRIMITIVE_ACCESSORS(holder, name, offset, int32_t) 174 #define UINT16_ACCESSORS(holder, name, offset) \ 175 DEF_PRIMITIVE_ACCESSORS(holder, name, offset, uint16_t) 177 #define UINT8_ACCESSORS(holder, name, offset) \ [all...] |
| /third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
| H A D | LocaleIDs.java | 53 int offset = findIndex(_countries, country); in getISO3Country() 54 if(offset>=0){ in getISO3Country() 55 return _countries3[offset]; in getISO3Country() 57 offset = findIndex(_obsoleteCountries, country); in getISO3Country() 58 if(offset>=0){ in getISO3Country() 59 return _obsoleteCountries3[offset]; in getISO3Country() 76 int offset = findIndex(_languages, language); in getISO3Language() 77 if(offset>=0){ in getISO3Language() 78 return _languages3[offset]; in getISO3Language() 80 offset in getISO3Language() [all...] |
| H A D | ICUResourceBundleReader.java | 357 private int getResourceByteOffset(int offset) { in getResourceByteOffset() argument 358 return offset << 2; in getResourceByteOffset() 382 private char[] getChars(int offset, int count) { in getChars() argument 385 for(int i = 0; i < count; offset += 2, ++i) { in getChars() 386 chars[i] = bytes.getChar(offset); in getChars() 390 temp.position(offset / 2); in getChars() 395 private int getInt(int offset) { in getInt() argument 396 return bytes.getInt(offset); in getInt() 398 private int[] getInts(int offset, int count) { in getInts() argument 401 for(int i = 0; i < count; offset in getInts() 411 getTable16KeyOffsets(int offset) getTable16KeyOffsets() argument 429 getTableKeyOffsets(int offset) getTableKeyOffsets() argument 437 getTable32KeyOffsets(int offset) getTable32KeyOffsets() argument 546 makeStringFromBytes(int offset, int length) makeStringFromBytes() argument 607 isStringV2NoInheritanceMarker(int offset) isStringV2NoInheritanceMarker() argument 994 Array32(ICUResourceBundleReader reader, int offset) Array32() argument 1005 Array16(ICUResourceBundleReader reader, int offset) Array16() argument 1085 Table1632(ICUResourceBundleReader reader, int offset) Table1632() argument 1097 Table16(ICUResourceBundleReader reader, int offset) Table16() argument 1108 Table32(ICUResourceBundleReader reader, int offset) Table32() argument [all...] |
| /third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
| H A D | LocaleIDs.java | 52 int offset = findIndex(_countries, country); in getISO3Country() 53 if(offset>=0){ in getISO3Country() 54 return _countries3[offset]; in getISO3Country() 56 offset = findIndex(_obsoleteCountries, country); in getISO3Country() 57 if(offset>=0){ in getISO3Country() 58 return _obsoleteCountries3[offset]; in getISO3Country() 74 int offset = findIndex(_languages, language); in getISO3Language() 75 if(offset>=0){ in getISO3Language() 76 return _languages3[offset]; in getISO3Language() 78 offset in getISO3Language() [all...] |
| /third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/core/ |
| H A D | MaximumProfileTable.java | 56 private final int offset; field in MaximumProfileTable.Offset 57 private Offset(int offset) { in Offset() argument 58 this.offset = offset; in Offset() 67 return this.data.readFixed(Offset.version.offset); in tableVersion() 71 return this.data.readUShort(Offset.numGlyphs.offset); in numGlyphs() 75 return this.data.readUShort(Offset.maxPoints.offset); in maxPoints() 79 return this.data.readUShort(Offset.maxContours.offset); in maxContours() 83 return this.data.readUShort(Offset.maxCompositePoints.offset); in maxCompositePoints() 87 return this.data.readUShort(Offset.maxCompositeContours.offset); in maxCompositeContours() [all...] |
| H A D | OS2Table.java | 81 private final int offset; field in OS2Table.Offset 83 private Offset(int offset) { in Offset() argument 84 this.offset = offset; in Offset() 93 return this.data.readUShort(Offset.version.offset); in tableVersion() 97 return this.data.readShort(Offset.xAvgCharWidth.offset); in xAvgCharWidth() 141 return this.data.readUShort(Offset.usWeightClass.offset); in usWeightClass() 181 return this.data.readUShort(Offset.usWidthClass.offset); in usWidthClass() 276 return this.data.readUShort(Offset.fsType.offset); in fsTypeAsInt() 280 return this.data.readShort(Offset.ySubscriptXSize.offset); in ySubscriptXSize() 836 setYSubscriptXOffset(int offset) setYSubscriptXOffset() argument 844 setYSubscriptYOffset(int offset) setYSubscriptYOffset() argument 868 setYSuperscriptXOffset(int offset) setYSuperscriptXOffset() argument 876 setYSuperscriptYOffset(int offset) setYSuperscriptYOffset() argument [all...] |
| H A D | HorizontalHeaderTable.java | 52 private final int offset; field in HorizontalHeaderTable.Offset 54 private Offset(int offset) { in Offset() argument 55 this.offset = offset; in Offset() 64 return this.data.readFixed(Offset.version.offset); in tableVersion() 68 return this.data.readShort(Offset.Ascender.offset); in ascender() 72 return this.data.readShort(Offset.Descender.offset); in descender() 76 return this.data.readShort(Offset.LineGap.offset); in lineGap() 80 return this.data.readUShort(Offset.advanceWidthMax.offset); in advanceWidthMax() 84 return this.data.readShort(Offset.minLeftSideBearing.offset); in minLeftSideBearing() [all...] |
| H A D | CMapFormat12.java | 20 this.numberOfGroups = this.data.readULongAsInt(Offset.format12nGroups.offset); in CMapFormat12() 25 Offset.format12Groups.offset + groupIndex * Offset.format12Groups_structLength.offset in groupStartChar() 26 + Offset.format12_startCharCode.offset); in groupStartChar() 31 Offset.format12Groups.offset + groupIndex * Offset.format12Groups_structLength.offset in groupEndChar() 32 + Offset.format12_endCharCode.offset); in groupEndChar() 37 Offset.format12Groups.offset + groupIndex * Offset.format12Groups_structLength.offset in groupStartGlyph() 38 + Offset.format12_startGlyphId.offset); in groupStartGlyph() 120 Builder(WritableFontData data, int offset, CMapId cmapId) Builder() argument 126 Builder(ReadableFontData data, int offset, CMapId cmapId) Builder() argument [all...] |
| H A D | CMapFormat13.java | 19 this.numberOfGroups = this.data.readULongAsInt(Offset.format12nGroups.offset); in CMapFormat13() 24 Offset.format13Groups.offset + groupIndex * Offset.format13Groups_structLength.offset in groupStartChar() 25 + Offset.format13_startCharCode.offset); in groupStartChar() 30 Offset.format13Groups.offset + groupIndex * Offset.format13Groups_structLength.offset in groupEndChar() 31 + Offset.format13_endCharCode.offset); in groupEndChar() 36 Offset.format13Groups.offset + groupIndex * Offset.format13Groups_structLength.offset in groupGlyph() 37 + Offset.format13_glyphId.offset); in groupGlyph() 119 Builder(WritableFontData data, int offset, CMapId cmapId) Builder() argument 125 Builder(ReadableFontData data, int offset, CMapId cmapId) Builder() argument [all...] |
| /third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
| H A D | UnsafeUtil.java | 120 static byte getByte(Object target, long offset) { in getByte() argument 121 return MEMORY_ACCESSOR.getByte(target, offset); in getByte() 124 static void putByte(Object target, long offset, byte value) { in putByte() argument 125 MEMORY_ACCESSOR.putByte(target, offset, value); in putByte() 128 static int getInt(Object target, long offset) { in getInt() argument 129 return MEMORY_ACCESSOR.getInt(target, offset); in getInt() 132 static void putInt(Object target, long offset, int value) { in putInt() argument 133 MEMORY_ACCESSOR.putInt(target, offset, value); in putInt() 136 static long getLong(Object target, long offset) { in getLong() argument 137 return MEMORY_ACCESSOR.getLong(target, offset); in getLong() 140 putLong(Object target, long offset, long value) putLong() argument 144 getBoolean(Object target, long offset) getBoolean() argument 148 putBoolean(Object target, long offset, boolean value) putBoolean() argument 152 getFloat(Object target, long offset) getFloat() argument 156 putFloat(Object target, long offset, float value) putFloat() argument 160 getDouble(Object target, long offset) getDouble() argument 164 putDouble(Object target, long offset, double value) putDouble() argument 168 getObject(Object target, long offset) getObject() argument 172 putObject(Object target, long offset, Object value) putObject() argument 549 getByte(Object target, long offset) getByte() argument 551 putByte(Object target, long offset, byte value) putByte() argument 553 getInt(Object target, long offset) getInt() argument 557 putInt(Object target, long offset, int value) putInt() argument 561 getLong(Object target, long offset) getLong() argument 565 putLong(Object target, long offset, long value) putLong() argument 569 getBoolean(Object target, long offset) getBoolean() argument 571 putBoolean(Object target, long offset, boolean value) putBoolean() argument 573 getFloat(Object target, long offset) getFloat() argument 575 putFloat(Object target, long offset, float value) putFloat() argument 577 getDouble(Object target, long offset) getDouble() argument 579 putDouble(Object target, long offset, double value) putDouble() argument 581 getObject(Object target, long offset) getObject() argument 585 putObject(Object target, long offset, Object value) putObject() argument 653 getByte(Object target, long offset) getByte() argument 658 putByte(Object target, long offset, byte value) putByte() argument 663 getBoolean(Object target, long offset) getBoolean() argument 668 putBoolean(Object target, long offset, boolean value) putBoolean() argument 673 getFloat(Object target, long offset) getFloat() argument 678 putFloat(Object target, long offset, float value) putFloat() argument 683 getDouble(Object target, long offset) getDouble() argument 688 putDouble(Object target, long offset, double value) putDouble() argument 745 getByte(Object target, long offset) getByte() argument 754 putByte(Object target, long offset, byte value) putByte() argument 763 getBoolean(Object target, long offset) getBoolean() argument 772 putBoolean(Object target, long offset, boolean value) putBoolean() argument 781 getFloat(Object target, long offset) getFloat() argument 786 putFloat(Object target, long offset, float value) putFloat() argument 791 getDouble(Object target, long offset) getDouble() argument 796 putDouble(Object target, long offset, double value) putDouble() argument 865 getByte(Object target, long offset) getByte() argument 874 putByte(Object target, long offset, byte value) putByte() argument 883 getBoolean(Object target, long offset) getBoolean() argument 892 putBoolean(Object target, long offset, boolean value) putBoolean() argument 901 getFloat(Object target, long offset) getFloat() argument 906 putFloat(Object target, long offset, float value) putFloat() argument 911 getDouble(Object target, long offset) getDouble() argument 916 putDouble(Object target, long offset, double value) putDouble() argument 940 getByteBigEndian(Object target, long offset) getByteBigEndian() argument 944 getByteLittleEndian(Object target, long offset) getByteLittleEndian() argument 948 putByteBigEndian(Object target, long offset, byte value) putByteBigEndian() argument 955 putByteLittleEndian(Object target, long offset, byte value) putByteLittleEndian() argument 962 getBooleanBigEndian(Object target, long offset) getBooleanBigEndian() argument 966 getBooleanLittleEndian(Object target, long offset) getBooleanLittleEndian() argument 970 putBooleanBigEndian(Object target, long offset, boolean value) putBooleanBigEndian() argument 974 putBooleanLittleEndian(Object target, long offset, boolean value) putBooleanLittleEndian() argument [all...] |
| /third_party/libsnd/src/ |
| H A D | sfendian.h | 177 psf_put_be64 (uint8_t *ptr, int offset, int64_t value) in psf_put_be64() argument 179 ptr [offset] = (uint8_t) (value >> 56) ; in psf_put_be64() 180 ptr [offset + 1] = (uint8_t) (value >> 48) ; in psf_put_be64() 181 ptr [offset + 2] = (uint8_t) (value >> 40) ; in psf_put_be64() 182 ptr [offset + 3] = (uint8_t) (value >> 32) ; in psf_put_be64() 183 ptr [offset + 4] = (uint8_t) (value >> 24) ; in psf_put_be64() 184 ptr [offset + 5] = (uint8_t) (value >> 16) ; in psf_put_be64() 185 ptr [offset + 6] = (uint8_t) (value >> 8) ; in psf_put_be64() 186 ptr [offset + 7] = (uint8_t) value ; in psf_put_be64() 190 psf_put_be32 (uint8_t *ptr, int offset, int32_ argument 199 psf_put_be16(uint8_t *ptr, int offset, int16_t value) psf_put_be16() argument 206 psf_get_be64(const uint8_t *ptr, int offset) psf_get_be64() argument 224 psf_get_le64(const uint8_t *ptr, int offset) psf_get_le64() argument 240 psf_get_be32(const uint8_t *ptr, int offset) psf_get_be32() argument 249 psf_get_le32(const uint8_t *ptr, int offset) psf_get_le32() argument 258 psf_get_be24(const uint8_t *ptr, int offset) psf_get_be24() argument 266 psf_get_le24(const uint8_t *ptr, int offset) psf_get_le24() argument 274 psf_get_be16(const uint8_t *ptr, int offset) psf_get_be16() argument [all...] |
| /third_party/ffmpeg/libavformat/ |
| H A D | lrcdec.c | 36 int64_t ts_offset; // offset metadata item 41 int64_t offset = 0; in find_header() local 42 while(p[offset] == ' ' || p[offset] == '\t') { in find_header() 43 offset++; in find_header() 45 if(p[offset] == '[' && p[offset + 1] >= 'a' && p[offset + 1] <= 'z') { in find_header() 46 return offset; in find_header() 54 int64_t offset in count_ts() local 79 int64_t offset = 0; read_ts() local 121 int64_t offset = 0; lrc_probe() local [all...] |
| /third_party/mbedtls/library/ |
| H A D | alignment.h | 305 * \param offset Offset from \p data of the first and most significant 309 #define MBEDTLS_GET_UINT32_BE(data, offset) \ 311 ? mbedtls_get_unaligned_uint32((data) + (offset)) \ 312 : MBEDTLS_BSWAP32(mbedtls_get_unaligned_uint32((data) + (offset))) \ 321 * \param offset Offset from \p data where to put the most significant 324 #define MBEDTLS_PUT_UINT32_BE(n, data, offset) \ 328 mbedtls_put_unaligned_uint32((data) + (offset), (uint32_t) (n)); \ 332 mbedtls_put_unaligned_uint32((data) + (offset), MBEDTLS_BSWAP32((uint32_t) (n))); \ 341 * \param offset Offset from \p data of the first and least significant 345 #define MBEDTLS_GET_UINT32_LE(data, offset) \ [all...] |
| /third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/bitmap/ |
| H A D | BigGlyphMetrics.java | 39 final int offset; field in BigGlyphMetrics.Offset 41 private Offset(int offset) { in Offset() argument 42 this.offset = offset; in Offset() 54 return this.data.readByte(Offset.height.offset); in height() 58 return this.data.readByte(Offset.width.offset); in width() 62 return this.data.readChar(Offset.horiBearingX.offset); in horiBearingX() 66 return this.data.readChar(Offset.horiBearingY.offset); in horiBearingY() 70 return this.data.readByte(Offset.horiAdvance.offset); in horiAdvance() 74 return this.data.readChar(Offset.vertBearingX.offset); in vertBearingX() [all...] |
| H A D | IndexSubTableFormat4.java | 42 int numGlyphs = data.readULongAsInt(tableOffset + Offset.indexSubTable4_numGlyphs.offset); in numGlyphs() 59 Offset.indexSubTable4_glyphArray.offset + pairIndex * Offset.codeOffsetPairLength.offset in glyphStartOffset() 60 + Offset.codeOffsetPair_offset.offset); in glyphStartOffset() 70 return (this.data.readUShort(Offset.indexSubTable4_glyphArray.offset + (pairIndex + 1) in glyphLength() 71 * Offset.codeOffsetPairLength.offset + Offset.codeOffsetPair_offset.offset)) in glyphLength() 72 - this.data.readUShort(Offset.indexSubTable4_glyphArray.offset + (pairIndex) in glyphLength() 73 * Offset.codeOffsetPairLength.offset + Offset.codeOffsetPair_offset.offset); in glyphLength() 83 protected int offset; global() field in IndexSubTableFormat4.CodeOffsetPair 85 CodeOffsetPair(int glyphCode, int offset) CodeOffsetPair() argument 94 public int offset() { offset() method in IndexSubTableFormat4.CodeOffsetPair 100 CodeOffsetPairBuilder(int glyphCode, int offset) CodeOffsetPairBuilder() argument 108 setOffset(int offset) setOffset() argument [all...] |
| /third_party/FreeBSD/stand/kshim/ |
| H A D | bsd_busspace.c | 39 void bus_space_write_1(bus_space_tag_t t, bus_space_handle_t h, bus_size_t offset, uint8_t data); 40 void bus_space_write_2(bus_space_tag_t t, bus_space_handle_t h, bus_size_t offset, uint16_t data); 41 void bus_space_write_4(bus_space_tag_t t, bus_space_handle_t h, bus_size_t offset, uint32_t data); 43 uint8_t bus_space_read_1(bus_space_tag_t t, bus_space_handle_t h, bus_size_t offset); 44 uint16_t bus_space_read_2(bus_space_tag_t t, bus_space_handle_t h, bus_size_t offset); 45 uint32_t bus_space_read_4(bus_space_tag_t t, bus_space_handle_t h, bus_size_t offset); 47 void bus_space_read_multi_1(bus_space_tag_t t, bus_space_handle_t h, bus_size_t offset, 49 void bus_space_read_multi_2(bus_space_tag_t t, bus_space_handle_t h, bus_size_t offset, 51 void bus_space_read_multi_4(bus_space_tag_t t, bus_space_handle_t h, bus_size_t offset, 54 void bus_space_write_multi_1(bus_space_tag_t t, bus_space_handle_t h, bus_size_t offset, 71 bus_space_read_multi_1(bus_space_tag_t t, bus_space_handle_t h, bus_size_t offset, uint8_t *datap, bus_size_t count) bus_space_read_multi_1() argument 80 bus_space_read_multi_2(bus_space_tag_t t, bus_space_handle_t h, bus_size_t offset, uint16_t *datap, bus_size_t count) bus_space_read_multi_2() argument 89 bus_space_read_multi_4(bus_space_tag_t t, bus_space_handle_t h, bus_size_t offset, uint32_t *datap, bus_size_t count) bus_space_read_multi_4() argument 100 bus_space_write_multi_1(bus_space_tag_t t, bus_space_handle_t h, bus_size_t offset, uint8_t *datap, bus_size_t count) bus_space_write_multi_1() argument 111 bus_space_write_multi_2(bus_space_tag_t t, bus_space_handle_t h, bus_size_t offset, uint16_t *datap, bus_size_t count) bus_space_write_multi_2() argument 122 bus_space_write_multi_4(bus_space_tag_t t, bus_space_handle_t h, bus_size_t offset, uint32_t *datap, bus_size_t count) bus_space_write_multi_4() argument 133 bus_space_write_1(bus_space_tag_t t, bus_space_handle_t h, bus_size_t offset, uint8_t data) bus_space_write_1() argument 140 bus_space_write_2(bus_space_tag_t t, bus_space_handle_t h, bus_size_t offset, uint16_t data) bus_space_write_2() argument 147 bus_space_write_4(bus_space_tag_t t, bus_space_handle_t h, bus_size_t offset, uint32_t data) bus_space_write_4() argument 154 bus_space_read_1(bus_space_tag_t t, bus_space_handle_t h, bus_size_t offset) bus_space_read_1() argument 160 bus_space_read_2(bus_space_tag_t t, bus_space_handle_t h, bus_size_t offset) bus_space_read_2() argument 166 bus_space_read_4(bus_space_tag_t t, bus_space_handle_t h, bus_size_t offset) bus_space_read_4() argument 172 bus_space_read_region_1(bus_space_tag_t t, bus_space_handle_t h, bus_size_t offset, uint8_t *datap, bus_size_t count) bus_space_read_region_1() argument 184 bus_space_write_region_1(bus_space_tag_t t, bus_space_handle_t h, bus_size_t offset, uint8_t *datap, bus_size_t count) bus_space_write_region_1() argument 196 bus_space_read_region_4(bus_space_tag_t t, bus_space_handle_t h, bus_size_t offset, uint32_t *datap, bus_size_t count) bus_space_read_region_4() argument 218 bus_space_write_region_4(bus_space_tag_t t, bus_space_handle_t h, bus_size_t offset, uint32_t *datap, bus_size_t count) bus_space_write_region_4() argument [all...] |
| /third_party/node/deps/uvwasi/src/ |
| H A D | wasi_serdes.c | 5 size_t offset, in uvwasi_serdes_write_uint64_t() 7 uvwasi_serdes_write_uint32_t(ptr, offset, (uint32_t) value); in uvwasi_serdes_write_uint64_t() 8 uvwasi_serdes_write_uint32_t(ptr, offset + 4, value >> 32); in uvwasi_serdes_write_uint64_t() 12 size_t offset, in uvwasi_serdes_write_uint32_t() 14 uvwasi_serdes_write_uint16_t(ptr, offset, (uint16_t) value); in uvwasi_serdes_write_uint32_t() 15 uvwasi_serdes_write_uint16_t(ptr, offset + 2, value >> 16); in uvwasi_serdes_write_uint32_t() 19 size_t offset, in uvwasi_serdes_write_uint16_t() 21 uvwasi_serdes_write_uint8_t(ptr, offset, (uint8_t) value); in uvwasi_serdes_write_uint16_t() 22 uvwasi_serdes_write_uint8_t(ptr, offset + 1, value >> 8); in uvwasi_serdes_write_uint16_t() 26 size_t offset, in uvwasi_serdes_write_uint8_t() 4 uvwasi_serdes_write_uint64_t(void* ptr, size_t offset, uint64_t value) uvwasi_serdes_write_uint64_t() argument 11 uvwasi_serdes_write_uint32_t(void* ptr, size_t offset, uint32_t value) uvwasi_serdes_write_uint32_t() argument 18 uvwasi_serdes_write_uint16_t(void* ptr, size_t offset, uint16_t value) uvwasi_serdes_write_uint16_t() argument 25 uvwasi_serdes_write_uint8_t(void* ptr, size_t offset, uint8_t value) uvwasi_serdes_write_uint8_t() argument 31 uvwasi_serdes_read_uint64_t(const void* ptr, size_t offset) uvwasi_serdes_read_uint64_t() argument 37 uvwasi_serdes_read_uint32_t(const void* ptr, size_t offset) uvwasi_serdes_read_uint32_t() argument 43 uvwasi_serdes_read_uint16_t(const void* ptr, size_t offset) uvwasi_serdes_read_uint16_t() argument 49 uvwasi_serdes_read_uint8_t(const void* ptr, size_t offset) uvwasi_serdes_read_uint8_t() argument 199 uvwasi_serdes_read_iovec_t(const void* ptr, size_t end, size_t offset, uvwasi_iovec_t* value) uvwasi_serdes_read_iovec_t() argument 216 uvwasi_serdes_readv_ciovec_t(const void* ptr, size_t end, size_t offset, uvwasi_ciovec_t* iovs, uvwasi_size_t iovs_len) uvwasi_serdes_readv_ciovec_t() argument 235 uvwasi_serdes_readv_iovec_t(const void* ptr, size_t end, size_t offset, uvwasi_iovec_t* iovs, uvwasi_size_t iovs_len) uvwasi_serdes_readv_iovec_t() argument 254 uvwasi_serdes_check_bounds(size_t offset, size_t end, size_t size) uvwasi_serdes_check_bounds() argument 259 uvwasi_serdes_check_array_bounds(size_t offset, size_t end, size_t size, size_t count) uvwasi_serdes_check_array_bounds() argument [all...] |
| /third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/data/ |
| H A D | FontData.java | 86 * @param offset the offset to start the wrap from 89 protected FontData(FontData data, int offset, int length) { in FontData() argument 91 this.bound(data.boundOffset + offset, length); in FontData() 98 * @param offset the offset to start the wrap from 100 protected FontData(FontData data, int offset) { in FontData() argument 102 this.bound(data.boundOffset + offset, in FontData() 104 - offset); in FontData() 111 * @param offset th 115 bound(int offset, int length) bound() argument 133 bound(int offset) bound() argument 149 slice(int offset, int length) slice() argument 158 slice(int offset) slice() argument 196 boundOffset(int offset) boundOffset() argument 207 boundLength(int offset, int length) boundLength() argument 211 boundsCheck(int offset, int length) boundsCheck() argument [all...] |
| /third_party/icu/icu4c/source/test/cintltst/ |
| H A D | utf8tst.c | 246 uint32_t offset=0; in TestGetChar() local 248 for(offset=0; offset<sizeof(input); offset++) { in TestGetChar() 250 if (expected >= 0 && offset < sizeof(input) - 1) { in TestGetChar() 252 UTF8_GET_CHAR_UNSAFE(input, offset, c); in TestGetChar() 254 log_err("ERROR: UTF8_GET_CHAR_UNSAFE failed for offset=%ld. Expected:%lx Got:%lx\n", in TestGetChar() 255 offset, expected, c); in TestGetChar() 259 U8_GET_UNSAFE(input, offset, c); in TestGetChar() 261 log_err("ERROR: U8_GET_UNSAFE failed for offset in TestGetChar() 346 uint32_t offset=0; TestNextPrevChar() local 616 uint32_t offset; TestNextPrevCharUnsafe() local 791 int32_t offset; TestFwdBackUnsafe() local 871 int32_t offset=0, setOffset=0; TestSetChar() local 913 int32_t offset=0, setOffset=0; TestSetCharUnsafe() local 1114 uint32_t offset; TestAppendChar() local [all...] |
| /third_party/libdrm/amdgpu/ |
| H A D | amdgpu_vamgr.c | 57 n->offset = start; in amdgpu_vamgr_init() 76 if (start_va > hole->offset && end_va - hole->offset < hole->size) { in amdgpu_vamgr_subtract_hole() 81 n->size = start_va - hole->offset; in amdgpu_vamgr_subtract_hole() 82 n->offset = hole->offset; in amdgpu_vamgr_subtract_hole() 85 hole->size -= (end_va - hole->offset); in amdgpu_vamgr_subtract_hole() 86 hole->offset = end_va; in amdgpu_vamgr_subtract_hole() 87 } else if (start_va > hole->offset) { in amdgpu_vamgr_subtract_hole() 88 hole->size = start_va - hole->offset; in amdgpu_vamgr_subtract_hole() 106 uint64_t offset = 0; amdgpu_vamgr_find_va() local [all...] |
| /third_party/elfutils/libelf/ |
| H A D | gelf_getnote.c | 1 /* Get note information at the supplied offset. 40 gelf_getnote (Elf_Data *data, size_t offset, GElf_Nhdr *result, in gelf_getnote() argument 60 offset is OK. */ in gelf_getnote() 61 if (unlikely (offset > data->d_size in gelf_getnote() 62 || data->d_size - offset < sizeof (GElf_Nhdr))) in gelf_getnote() 65 offset = 0; in gelf_getnote() 69 const GElf_Nhdr *n = data->d_buf + offset; in gelf_getnote() 70 offset += sizeof *n; in gelf_getnote() 72 if (offset > data->d_size) in gelf_getnote() 73 offset in gelf_getnote() [all...] |