| /third_party/flatbuffers/go/ |
| D | encode.go | 22 func GetByte(buf []byte) byte { 27 func GetBool(buf []byte) bool { 32 func GetUint8(buf []byte) (n uint8) { 38 func GetUint16(buf []byte) (n uint16) { 46 func GetUint32(buf []byte) (n uint32) { 56 func GetUint64(buf []byte) (n uint64) { 70 func GetInt8(buf []byte) (n int8) { 76 func GetInt16(buf []byte) (n int16) { 84 func GetInt32(buf []byte) (n int32) { 94 func GetInt64(buf []byte) (n int64) { [all …]
|
| D | lib.go | 6 Init(buf []byte, i UOffsetT) 10 func GetRootAs(buf []byte, offset UOffsetT, fb FlatBuffer) { 17 func GetSizePrefixedRootAs(buf []byte, offset UOffsetT, fb FlatBuffer) { 23 func GetSizePrefix(buf []byte, offset UOffsetT) uint32 { 28 func GetIndirectOffset(buf []byte, offset UOffsetT) UOffsetT { 33 func GetBufferIdentifier(buf []byte) string { 38 func GetSizePrefixedBufferIdentifier(buf []byte) string { 43 func BufferHasIdentifier(buf []byte, identifier string) bool { 48 func SizePrefixedBufferHasIdentifier(buf []byte, identifier string) bool {
|
| /third_party/json/docs/examples/ |
| D | to_ubjson.cpp | 9 void print_byte(uint8_t byte) in print_byte() 30 for (auto& byte : v) in main() local 47 for (auto& byte : v_array) in main() local 53 for (auto& byte : v_array_size) in main() local 59 for (auto& byte : v_array_size_and_type) in main() local
|
| D | to_bjdata.cpp | 9 void print_byte(uint8_t byte) in print_byte() 30 for (auto& byte : v) in main() local 47 for (auto& byte : v_array) in main() local 53 for (auto& byte : v_array_size) in main() local 59 for (auto& byte : v_array_size_and_type) in main() local
|
| /third_party/rust/rust/compiler/rustc_serialize/src/ |
| D | leb128.rs | 61 let byte = decoder.read_u8(); localVariable 68 let byte = decoder.read_u8(); localVariable 97 let mut byte = (value as u8) & 0x7f; localVariable 134 let mut byte; localVariable
|
| /third_party/rust/crates/minimal-lexical/etc/correctness/test-parse-golang/parse-number-fxx-test-data/script/ |
| D | extract-numbery-strings.go | 57 func isDigit(x byte) bool { return (('0' <= x) && (x <= '9')) } 58 func isDigitDot(x byte) bool { return (('0' <= x) && (x <= '9')) || (x == '.') } 182 func looksLikeBinary(s []byte) bool {
|
| /third_party/protobuf/src/google/protobuf/ |
| D | varint_shuffle.h | 26 inline PROTOBUF_ALWAYS_INLINE int64_t VarintShlByte(int8_t byte, int64_t ones) { in VarintShlByte() 35 inline PROTOBUF_ALWAYS_INLINE bool VarintShlAnd(int8_t byte, int64_t ones, in VarintShlAnd() 45 inline PROTOBUF_ALWAYS_INLINE bool VarintShl(int8_t byte, int64_t ones, in VarintShl()
|
| /third_party/skia/third_party/externals/spirv-tools/utils/vscode/src/lsp/span/ |
| D | utf16.go | 27 func ToUTF16Column(p Point, content []byte) (int, error) { 66 func FromUTF16Column(p Point, chr int, content []byte) (Point, error) {
|
| /third_party/spirv-tools/utils/vscode/src/lsp/span/ |
| D | utf16.go | 27 func ToUTF16Column(p Point, content []byte) (int, error) { 66 func FromUTF16Column(p Point, chr int, content []byte) (Point, error) {
|
| /third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/lsp/span/ |
| D | utf16.go | 27 func ToUTF16Column(p Point, content []byte) (int, error) { 66 func FromUTF16Column(p Point, chr int, content []byte) (Point, error) {
|
| /third_party/musl/libc-test/src/functionalext/supplement/multibyte/ |
| D | wctomb.c | 30 char byte[256] = {0}; in wctomb_0100() local 44 char byte[256] = {0}; in wctomb_0200() local
|
| /third_party/skia/m133/src/codec/ |
| D | SkJpegSegmentScan.cpp | 90 void SkJpegSegmentScanner::onMarkerSecondByte(uint8_t byte) { in onMarkerSecondByte() 113 void SkJpegSegmentScanner::onByte(uint8_t byte) { in onByte()
|
| /third_party/flatbuffers/tests/MyGame/Example/ |
| D | Referrable.go | 39 func GetRootAsReferrable(buf []byte, offset flatbuffers.UOffsetT) *Referrable { 50 func GetSizePrefixedRootAsReferrable(buf []byte, offset flatbuffers.UOffsetT) *Referrable { 82 func ReferrableKeyCompare(o1, o2 flatbuffers.UOffsetT, buf []byte) bool {
|
| /third_party/elfutils/libcpu/ |
| D | i386_data.h | 397 uint_fast8_t byte = modrm & 7; in FCT_MOD$R_M() local 427 uint_fast8_t byte = modrm & 7; in FCT_Mod$R_m() local 782 int8_t byte = *(*d->param_start)++; in FCT_imms() local 858 int_fast8_t byte = *(*d->param_start)++; in FCT_imms8() local 882 uint_fast8_t byte = *(*d->param_start)++; in FCT_imm8() local 919 uint_fast8_t byte = d->data[d->opoff1 / 8]; in FCT_mmxreg() local 1115 uint_fast8_t byte = modrm & 7; in FCT_mod$16r_m() local 1140 uint_fast8_t byte = modrm & 7; in FCT_mod$64r_m() local 1163 uint_fast8_t byte = d->data[d->opoff1 / 8]; in FCT_reg() local 1217 uint_fast8_t byte = d->data[d->opoff1 / 8]; in FCT_reg64() local [all …]
|
| /third_party/rust/rust/library/std/src/personality/dwarf/ |
| D | mod.rs | 43 let mut byte: u8; in read_uleb128() localVariable 58 let mut byte: u8; in read_sleb128() localVariable
|
| /third_party/toybox/toys/other/ |
| D | i2ctools.c | 109 static int i2c_read_byte(int fd, int addr, int *byte) in i2c_read_byte() 191 int bus, first = 0x03, last = 0x77, fd, row, addr, byte; in i2cdetect_main() local 241 int fd, row, addr, byte; in i2cdump_main() local 271 int fd, byte; in i2cget_main() local
|
| /third_party/skia/m133/bazel/gcs_mirror/ |
| D | gcs_mirror.go | 89 func processJSON(workDir string, b []byte) error { 108 func fixStarlarkComments(b []byte) string {
|
| /third_party/skia/third_party/externals/spirv-tools/utils/vscode/src/lsp/protocol/ |
| D | log.go | 129 func logCommon(outfd io.Writer, data []byte) (*Combined, time.Time, string) { 148 func logOut(outfd io.Writer, data []byte) { 201 func logIn(outfd io.Writer, data []byte) {
|
| /third_party/spirv-tools/utils/vscode/src/lsp/protocol/ |
| D | log.go | 129 func logCommon(outfd io.Writer, data []byte) (*Combined, time.Time, string) { 148 func logOut(outfd io.Writer, data []byte) { 201 func logIn(outfd io.Writer, data []byte) {
|
| /third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/lsp/protocol/ |
| D | log.go | 129 func logCommon(outfd io.Writer, data []byte) (*Combined, time.Time, string) { 148 func logOut(outfd io.Writer, data []byte) { 201 func logIn(outfd io.Writer, data []byte) {
|
| /third_party/mesa3d/src/intel/compiler/ |
| D | brw_schedule_instructions.cpp | 1301 for (unsigned byte = 0; byte < inst->size_read(s->devinfo, i); byte += 2) { in calculate_deps() local 1311 for (unsigned byte = 0; byte < inst->size_written; byte += 2) { in calculate_deps() local 1344 for (unsigned byte = 0; byte < inst->size_read(s->devinfo, i); byte += 2) in calculate_deps() local 1387 for (unsigned byte = 0; byte < inst->size_written; byte += 2) { in calculate_deps() local 1448 for (unsigned byte = 0; byte < inst->size_read(s->devinfo, i); byte += 2) { in calculate_deps() local 1492 for (unsigned byte = 0; byte < inst->size_written; byte += 2) in calculate_deps() local 1527 for (unsigned byte = 0; byte < n->inst->size_written; byte += 2) { in address_register_interfere() local 1538 for (unsigned byte = 0; byte < n->inst->size_read(s->devinfo, i); byte += 2) { in address_register_interfere() local 1707 for (unsigned byte = 0; byte < chosen->inst->size_read(s->devinfo, i); byte += 2) { in update_children() local 1716 for (unsigned byte = 0; byte < chosen->inst->size_written; byte += 2) { in update_children() local
|
| /third_party/flatbuffers/grpc/examples/go/greeter/models/ |
| D | HelloReply.go | 13 func GetRootAsHelloReply(buf []byte, offset flatbuffers.UOffsetT) *HelloReply { 24 func GetSizePrefixedRootAsHelloReply(buf []byte, offset flatbuffers.UOffsetT) *HelloReply {
|
| D | HelloRequest.go | 13 func GetRootAsHelloRequest(buf []byte, offset flatbuffers.UOffsetT) *HelloRequest { 24 func GetSizePrefixedRootAsHelloRequest(buf []byte, offset flatbuffers.UOffsetT) *HelloRequest {
|
| /third_party/ntfs-3g/ntfsprogs/ |
| D | ntfswipe.c | 484 static s64 wipe_unused(ntfs_volume *vol, int byte, enum action act) in wipe_unused() 543 static s64 wipe_unused_fast(ntfs_volume *vol, int byte, enum action act) in wipe_unused_fast() 652 static s64 wipe_compressed_attribute(ntfs_volume *vol, int byte, in wipe_compressed_attribute() 772 static s64 wipe_attribute(ntfs_volume *vol, int byte, enum action act, in wipe_attribute() 817 int byte, enum action act) in wipe_attr_tail() 869 static s64 wipe_tails(ntfs_volume *vol, int byte, enum action act) in wipe_tails() 956 static s64 wipe_mft(ntfs_volume *vol, int byte, enum action act) in wipe_mft() 1095 static s64 wipe_index_allocation(ntfs_volume *vol, int byte, enum action act in wipe_index_allocation() 1242 static s64 wipe_directory(ntfs_volume *vol, int byte, enum action act) in wipe_directory() 1379 static s64 wipe_logfile(ntfs_volume *vol, int byte, enum action act in wipe_logfile() [all …]
|
| /third_party/flatbuffers/tests/ |
| D | go_test.go | 232 func CheckReadBuffer(buf []byte, offset flatbuffers.UOffsetT, sizePrefix bool, fail func(string, ..… 406 func CheckFileIdentifier(buf []byte, offset flatbuffers.UOffsetT, sizePrefix bool, fail func(string… 432 func CheckMutateBuffer(org []byte, offset flatbuffers.UOffsetT, sizePrefix bool, fail func(string, … 580 func CheckObjectAPI(buf []byte, offset flatbuffers.UOffsetT, sizePrefix bool, fail func(string, ...… 1756 func CheckDocExample(buf []byte, off flatbuffers.UOffsetT, fail func(string, ...interface{})) { 1908 func CheckByteEquality(a, b []byte, fail func(string, ...interface{})) {
|