Home
last modified time | relevance | path

Searched refs:byte (Results 2276 - 2300 of 3415) sorted by relevance

1...<<919293949596979899100>>...137

/kernel/linux/linux-6.6/arch/xtensa/include/asm/
H A Dchecksum.h133 # error processor byte order undefined! in csum_tcpudp_nofold()
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/progs/
H A Dbtf_dump_test_case_syntax.c33 *} __attribute__((mode(byte)));
40 } __attribute__((mode(byte)));
54 } __attribute__((mode(word))); /* force to use 8-byte backing for this enum */
/third_party/curl/lib/vssh/
H A Dssh.h209 byte handle[WOLFSSH_MAX_HANDLE];
/third_party/ltp/include/lapi/
H A Dmsgbuf.h246 # error processor byte order undefined!
/third_party/node/test/fixtures/wpt/WebCryptoAPI/sign_verify/
H A Decdsa_vectors.js92 vector.name = `${vector.name} - The signature was truncated by 1 byte`;
/third_party/musl/src/thread/powerpc/
H A Dsyscall_cp.s12 #r1: stack frame: 16 byte alignment.
/third_party/libexif/libexif/
H A Dexif-data.h31 #include <libexif/exif-byte-order.h>
130 /*! Return the byte order in use by this EXIF structure.
133 * \return byte order
137 /*! Set the byte order to use for this EXIF data. If any tags already exist
138 * (including MakerNote tags) they are are converted to the specified byte
142 * \param[in] order byte order
/third_party/node/deps/v8/src/execution/
H A Dsimulator.h111 static GeneratedCode FromBuffer(Isolate* isolate, byte* buffer) { in FromBuffer()
/third_party/node/deps/v8/src/snapshot/
H A Dreferences.h17 enum class SnapshotSpace : byte {
/third_party/protobuf/benchmarks/go/
H A Dgo_benchmark_test.go20 marshaled [][]byte
/third_party/skia/third_party/externals/swiftshader/src/Common/
H A DTypes.hpp48 typedef ALIGN(1, uint8_t) byte; member
/third_party/skia/third_party/externals/swiftshader/tests/regres/shell/
H A Dshell_unix.go87 func Exec(timeout time.Duration, exe, wd string, env []string, args ...string) ([]byte, error) {
/third_party/skia/src/sksl/
H A DSkSLDehydrator.h56 const char* prefixAtOffset(size_t byte);
/third_party/skia/third_party/externals/tint/tools/src/cmd/intrinsic-gen/
H A Dmain.go143 if err := ioutil.WriteFile(path, []byte(content), 0666); err != nil {
/third_party/python/Objects/stringlib/
H A Djoin.h4 #error join.h only compatible with byte-wise strings
/kernel/linux/linux-6.6/arch/arm64/crypto/
H A Dsm4-ce-core.S1084 .byte 0x0c, 0x0d, 0x0e, 0x0f, 0x08, 0x09, 0x0a, 0x0b
1085 .byte 0x04, 0x05, 0x06, 0x07, 0x00, 0x01, 0x02, 0x03
1088 .byte 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
1089 .byte 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
1090 .byte 0x0, 0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7
1091 .byte 0x8, 0x9, 0xa, 0xb, 0xc, 0xd, 0xe, 0xf
1092 .byte 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
1093 .byte 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
/kernel/linux/linux-5.10/sound/pci/emu10k1/
H A Demu10k1x.c1236 unsigned char byte; in do_emu10k1x_midi_interrupt() local
1248 byte = mpu401_read_data(emu, midi); in do_emu10k1x_midi_interrupt()
1250 snd_rawmidi_receive(midi->substream_input, &byte, 1); in do_emu10k1x_midi_interrupt()
1258 snd_rawmidi_transmit(midi->substream_output, &byte, 1) == 1) { in do_emu10k1x_midi_interrupt()
1259 mpu401_write_data(emu, midi, byte); in do_emu10k1x_midi_interrupt()
1435 unsigned char byte; in snd_emu10k1x_midi_output_trigger() local
1442 snd_rawmidi_transmit(substream, &byte, 1) != 1) { in snd_emu10k1x_midi_output_trigger()
1447 mpu401_write_data(emu, midi, byte); in snd_emu10k1x_midi_output_trigger()
/kernel/linux/linux-6.6/sound/pci/emu10k1/
H A Demu10k1x.c1201 unsigned char byte; in do_emu10k1x_midi_interrupt() local
1213 byte = mpu401_read_data(emu, midi); in do_emu10k1x_midi_interrupt()
1215 snd_rawmidi_receive(midi->substream_input, &byte, 1); in do_emu10k1x_midi_interrupt()
1223 snd_rawmidi_transmit(midi->substream_output, &byte, 1) == 1) { in do_emu10k1x_midi_interrupt()
1224 mpu401_write_data(emu, midi, byte); in do_emu10k1x_midi_interrupt()
1400 unsigned char byte; in snd_emu10k1x_midi_output_trigger() local
1407 snd_rawmidi_transmit(substream, &byte, 1) != 1) { in snd_emu10k1x_midi_output_trigger()
1412 mpu401_write_data(emu, midi, byte); in snd_emu10k1x_midi_output_trigger()
/third_party/jerryscript/jerry-core/parser/js/
H A Djs-parser.c276 * During byte code post processing certain bytes are not
277 * copied into the final byte code buffer. For example, if
278 * one byte is enough for encoding a literal index, the
279 * second byte is not copied. However, when a byte is skipped,
281 * that byte code should also be decreased by one. Instead
282 * of finding these jumps every time when a byte is skipped,
304 * copied bytes before a given byte including the byte
305 * itself. The last byte alway
741 uint8_t byte; parse_print_final_cbc() local
1131 uint8_t byte = page_p->bytes[offset]; parser_post_processing() local
1506 uint8_t byte = page_p->bytes[offset]; parser_post_processing() local
[all...]
/kernel/linux/linux-5.10/drivers/input/mouse/
H A Dalps.c100 #define ALPS_PS2_INTERLEAVED 0x80 /* 3-byte PS/2 packet interleaved with
101 6-byte ALPS packet */
108 * XXX This entry is suspicious. First byte has zero lower nibble,
765 * Bit 6 of byte 0 is not usually set in position packets. The only in alps_process_touchpad_packet_v3_v5()
811 * having 0x3f in the last byte. This value has never been in alps_process_packet_v3()
812 * observed in the last byte of either of the other types in alps_process_packet_v3()
897 * v4 has a 6-byte encoding for bitmap data, but this data is in alps_process_packet_v4()
951 static unsigned char alps_get_packet_id_v7(char *byte) in alps_get_packet_id_v7() argument
955 if (byte[4] & 0x40) in alps_get_packet_id_v7()
957 else if (byte[ in alps_get_packet_id_v7()
1148 alps_get_pkt_id_ss4_v2(unsigned char *byte) alps_get_pkt_id_ss4_v2() argument
[all...]
/kernel/linux/linux-5.10/fs/gfs2/
H A Drgrp.c42 * bits. So, each byte represents GFS2_NBBY (i.e. 4) blocks.
129 const u8 *byte; in gfs2_testbit() local
137 byte = buffer + (rbm->offset / GFS2_NBBY); in gfs2_testbit()
140 return (*byte >> bit) & GFS2_BIT_MASK; in gfs2_testbit()
306 * gfs2_unaligned_extlen - Look for free blocks which are not byte aligned
340 * using memchr_inv when the blocks are byte aligned, but has to be done
364 /* Start is now byte aligned */ in gfs2_free_extlen()
412 const u8 *byte = buffer; in gfs2_bitcount() local
419 for (; byte < end; byte in gfs2_bitcount()
[all...]
/kernel/linux/linux-6.6/fs/gfs2/
H A Drgrp.c60 * bits. So, each byte represents GFS2_NBBY (i.e. 4) blocks.
147 const u8 *byte; in gfs2_testbit() local
155 byte = buffer + (rbm->offset / GFS2_NBBY); in gfs2_testbit()
158 return (*byte >> bit) & GFS2_BIT_MASK; in gfs2_testbit()
331 * gfs2_unaligned_extlen - Look for free blocks which are not byte aligned
366 * using memchr_inv when the blocks are byte aligned, but has to be done
390 /* Start is now byte aligned */ in gfs2_free_extlen()
438 const u8 *byte = buffer; in gfs2_bitcount() local
445 for (; byte < end; byte in gfs2_bitcount()
[all...]
/kernel/linux/linux-6.6/drivers/input/mouse/
H A Dalps.c100 #define ALPS_PS2_INTERLEAVED 0x80 /* 3-byte PS/2 packet interleaved with
101 6-byte ALPS packet */
108 * XXX This entry is suspicious. First byte has zero lower nibble,
765 * Bit 6 of byte 0 is not usually set in position packets. The only in alps_process_touchpad_packet_v3_v5()
811 * having 0x3f in the last byte. This value has never been in alps_process_packet_v3()
812 * observed in the last byte of either of the other types in alps_process_packet_v3()
897 * v4 has a 6-byte encoding for bitmap data, but this data is in alps_process_packet_v4()
951 static unsigned char alps_get_packet_id_v7(char *byte) in alps_get_packet_id_v7() argument
955 if (byte[4] & 0x40) in alps_get_packet_id_v7()
957 else if (byte[ in alps_get_packet_id_v7()
1148 alps_get_pkt_id_ss4_v2(unsigned char *byte) alps_get_pkt_id_ss4_v2() argument
[all...]
/kernel/linux/linux-5.10/arch/microblaze/kernel/
H A Dhw_exception_handler.S491 /* Load a word, byte-by-byte from destination address
505 /* Load a half-word, byte-by-byte from destination
540 /* Store the word, byte-by-byte into destination address */
552 /* Store the lower half-word, byte-by-byte into destination address */
954 /* Load a word, byte-by-byte fro
[all...]
/kernel/linux/linux-5.10/arch/sparc/lib/
H A Dchecksum_32.S60 addcc %o1, -1, %g0 ! only one byte remains?
63 b 4f ! only one byte remains
69 4: ldub [%o0], %o5 ! get final byte
328 andcc %o1, 4, %g0 ! dest aligned on 4 or 8 byte boundary?
329 be ccdbl + 4 ! 8 byte aligned, kick ass

Completed in 35 milliseconds

1...<<919293949596979899100>>...137