Home
last modified time | relevance | path

Searched refs:byte (Results 1126 - 1150 of 3444) sorted by relevance

1...<<41424344454647484950>>...138

/kernel/linux/linux-5.10/drivers/scsi/libsas/
H A Dsas_host_smp.c53 * to_sas_gpio_gp_bit - given the gpio frame data find the byte/bit position of 'od'
58 * @bit: bit position of 'od' in the returned byte
63 * "In GPIO_TX[1], bit 0 of byte 3 contains the first bit (i.e., OD0.0)
64 * and bit 7 of byte 0 contains the 32nd bit (i.e., OD10.1).
66 * In GPIO_TX[2], bit 0 of byte 3 contains the 33rd bit (i.e., OD10.2)
67 * and bit 7 of byte 0 contains the 64th bit (i.e., OD21.0)."
77 u8 byte; in to_sas_gpio_gp_bit() local
94 byte = 3 - (od >> 3); in to_sas_gpio_gp_bit()
97 return &data[reg * 4 + byte]; in to_sas_gpio_gp_bit()
102 u8 *byte; in try_test_sas_gpio_gp_bit() local
[all...]
/kernel/linux/linux-6.6/drivers/net/ethernet/microchip/sparx5/
H A Dsparx5_netdev.c32 /* Calculate the Start IFH byte position of this IFH bit position */ in __ifh_encode_bitfield()
33 u32 byte = (35 - (pos / 8)); in __ifh_encode_bitfield() local
34 /* Calculate the Start bit position in the Start IFH byte */ in __ifh_encode_bitfield()
38 /* The b0-b7 goes into the start IFH byte */ in __ifh_encode_bitfield()
40 ifh_hdr[byte] |= (u8)((encode & 0xFF)); in __ifh_encode_bitfield()
41 /* The b8-b15 goes into the next IFH byte */ in __ifh_encode_bitfield()
43 ifh_hdr[byte - 1] |= (u8)((encode & 0xFF00) >> 8); in __ifh_encode_bitfield()
44 /* The b16-b23 goes into the next IFH byte */ in __ifh_encode_bitfield()
46 ifh_hdr[byte - 2] |= (u8)((encode & 0xFF0000) >> 16); in __ifh_encode_bitfield()
47 /* The b24-b31 goes into the next IFH byte */ in __ifh_encode_bitfield()
[all...]
/kernel/linux/linux-6.6/sound/isa/sb/
H A Dsb8_midi.c26 char byte; in snd_sb8dsp_midi_interrupt() local
40 byte = inb(SBP(chip, READ)); in snd_sb8dsp_midi_interrupt()
42 snd_rawmidi_receive(chip->midi_substream_input, &byte, 1); in snd_sb8dsp_midi_interrupt()
168 char byte; in snd_sb8dsp_midi_output_write() local
175 if (snd_rawmidi_transmit_peek(substream, &byte, 1) != 1) { in snd_sb8dsp_midi_output_write()
190 outb(byte, SBP(chip, WRITE)); in snd_sb8dsp_midi_output_write()
193 snd_sbdsp_command(chip, byte); in snd_sb8dsp_midi_output_write()
/kernel/linux/linux-6.6/sound/pci/ice1712/
H A Dhoontech.c28 static void snd_ice1712_stdsp24_gpio_write(struct snd_ice1712 *ice, unsigned char byte) in snd_ice1712_stdsp24_gpio_write() argument
30 byte |= ICE1712_STDSP24_CLOCK_BIT; in snd_ice1712_stdsp24_gpio_write()
32 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA, byte); in snd_ice1712_stdsp24_gpio_write()
33 byte &= ~ICE1712_STDSP24_CLOCK_BIT; in snd_ice1712_stdsp24_gpio_write()
35 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA, byte); in snd_ice1712_stdsp24_gpio_write()
36 byte |= ICE1712_STDSP24_CLOCK_BIT; in snd_ice1712_stdsp24_gpio_write()
38 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA, byte); in snd_ice1712_stdsp24_gpio_write()
/kernel/linux/linux-6.6/drivers/scsi/libsas/
H A Dsas_host_smp.c53 * to_sas_gpio_gp_bit - given the gpio frame data find the byte/bit position of 'od'
58 * @bit: bit position of 'od' in the returned byte
63 * "In GPIO_TX[1], bit 0 of byte 3 contains the first bit (i.e., OD0.0)
64 * and bit 7 of byte 0 contains the 32nd bit (i.e., OD10.1).
66 * In GPIO_TX[2], bit 0 of byte 3 contains the 33rd bit (i.e., OD10.2)
67 * and bit 7 of byte 0 contains the 64th bit (i.e., OD21.0)."
77 u8 byte; in to_sas_gpio_gp_bit() local
94 byte = 3 - (od >> 3); in to_sas_gpio_gp_bit()
97 return &data[reg * 4 + byte]; in to_sas_gpio_gp_bit()
102 u8 *byte; in try_test_sas_gpio_gp_bit() local
[all...]
/third_party/node/deps/v8/src/regexp/
H A Dregexp-macro-assembler.h104 // The current character (modulus the kTableSize) is looked up in the byte
105 // array, and if the found byte is non-zero, we jump to the on_bit_set label.
192 // Compare two-byte strings case insensitively.
303 const byte* input_start,
304 const byte* input_end,
331 Address* subject, const byte** input_start,
332 const byte** input_end);
339 // Byte map of one byte characters with a 0xff if the character is a word
342 static const byte word_character_map[256];
348 static int Execute(String input, int start_offset, const byte* input_star
[all...]
H A Dregexp-stack.h98 byte static_stack_[kStaticStackSize] = {0};
113 byte* memory_ = nullptr;
114 byte* memory_top_ = nullptr;
116 byte* stack_pointer_ = nullptr;
/third_party/skia/third_party/externals/spirv-tools/utils/vscode/src/lsp/protocol/
H A Dlog.go39 func (s *loggingStream) Read(ctx context.Context) ([]byte, int64, error) {
47 func (s *loggingStream) Write(ctx context.Context, data []byte) (int64, error) {
129 func logCommon(outfd io.Writer, data []byte) (*Combined, time.Time, string) {
148 func logOut(outfd io.Writer, data []byte) {
197 outfd.Write([]byte(buf.String()))
201 func logIn(outfd io.Writer, data []byte) {
257 outfd.Write([]byte(buf.String()))
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/lsp/protocol/
H A Dlog.go39 func (s *loggingStream) Read(ctx context.Context) ([]byte, int64, error) {
47 func (s *loggingStream) Write(ctx context.Context, data []byte) (int64, error) {
129 func logCommon(outfd io.Writer, data []byte) (*Combined, time.Time, string) {
148 func logOut(outfd io.Writer, data []byte) {
197 outfd.Write([]byte(buf.String()))
201 func logIn(outfd io.Writer, data []byte) {
257 outfd.Write([]byte(buf.String()))
/third_party/spirv-tools/utils/vscode/src/lsp/protocol/
H A Dlog.go39 func (s *loggingStream) Read(ctx context.Context) ([]byte, int64, error) {
47 func (s *loggingStream) Write(ctx context.Context, data []byte) (int64, error) {
129 func logCommon(outfd io.Writer, data []byte) (*Combined, time.Time, string) {
148 func logOut(outfd io.Writer, data []byte) {
197 outfd.Write([]byte(buf.String()))
201 func logIn(outfd io.Writer, data []byte) {
257 outfd.Write([]byte(buf.String()))
/kernel/linux/linux-5.10/drivers/auxdisplay/
H A Dks0108.c49 * get race conditions in any way. Locking for each byte here would be
63 void ks0108_writedata(unsigned char byte) in ks0108_writedata() argument
65 parport_write_data(ks0108_parport, byte); in ks0108_writedata()
68 void ks0108_writecontrol(unsigned char byte) in ks0108_writecontrol() argument
71 parport_write_control(ks0108_parport, byte ^ (bit(0) | bit(1) | bit(3))); in ks0108_writecontrol()
/kernel/linux/linux-5.10/arch/nios2/boot/compressed/
H A Dhead.S111 .byte 0x00, 0x10
113 .byte 0
114 .byte 1
115 .byte 0x00, 0x80
/kernel/linux/linux-5.10/arch/x86/include/asm/
H A Dinst.h3 * Generate .byte code for some instructions not supported by old
139 .byte 0x40 | ((\opd1 & 8) >> 3) | ((\opd2 & 8) >> 1) | (\W << 3)
144 .byte \mod | (\opd1 & 7) | ((\opd2 & 7) << 3)
154 .byte 0xf3
158 .byte 0x0f, 0xc7
/kernel/linux/linux-6.6/arch/powerpc/kernel/
H A Dreloc_64.S107 p_dyn: .8byte __dynamic_start - 0b
108 p_rela: .8byte __rela_dyn_start - 0b
109 p_sym: .8byte __dynamic_symtab - 0b
110 p_st: .8byte _stext - 0b
/kernel/linux/linux-6.6/arch/nios2/boot/compressed/
H A Dhead.S111 .byte 0x00, 0x10
113 .byte 0
114 .byte 1
115 .byte 0x00, 0x80
/kernel/linux/linux-6.6/drivers/auxdisplay/
H A Dks0108.c46 * get race conditions in any way. Locking for each byte here would be
60 void ks0108_writedata(unsigned char byte) in ks0108_writedata() argument
62 parport_write_data(ks0108_parport, byte); in ks0108_writedata()
65 void ks0108_writecontrol(unsigned char byte) in ks0108_writecontrol() argument
68 parport_write_control(ks0108_parport, byte ^ (bit(0) | bit(1) | bit(3))); in ks0108_writecontrol()
/third_party/backends/backend/
H A Dsm3840_lib.h87 int index, unsigned char byte);
89 int index, unsigned char *byte);
127 int index, unsigned char byte);
129 int index, unsigned char *byte);
/third_party/mesa3d/src/intel/common/tests/
H A Dgenxml_test.c59 test1.byte[i] = i * 10 + 5; in test_struct()
88 } else if (sscanf(iter.name, "byte[%d]", &idx) == 1) { in test_struct()
90 assert(number == test1.byte[idx]); in test_struct()
101 test.byte[i][j] = (i * 10 + j) % 256; in test_two_levels()
124 assert(sscanf(iter.name, "byte[%d][%d]", &i, &j) == 2); in test_two_levels()
126 assert(number == test.byte[i][j]); in test_two_levels()
/third_party/node/deps/openssl/config/archs/linux-armv4/asm/crypto/sha/
H A Dsha512-armv4.S21 @ by gcc 3.4 and it spends ~72 clock cycles per byte [on single-issue
27 @ Cortex A8 core and ~40 cycles per processed byte.
32 @ improvement on Coxtex A8 core and ~38 cycles per byte.
37 @ one byte in 23.3 cycles or ~60% faster than integer-only code.
42 @ terms it's 22.6 cycles per byte, which is disappointing result.
46 @ for further details. On side note Cortex-A15 processes one byte in
54 @ expected to maintain native byte order for whole 64-bit values.
1871 .byte 83,72,65,53,49,50,32,98,108,111,99,107,32,116,114,97,110,115,102,111,114,109,32,102,111,114,32,65,82,77,118,52,47,78,69,79,78,44,32,67,82,89,80,84,79,71,65,77,83,32,98,121,32,60,97,112,112,114,111,64,111,112,101,110,115,115,108,46,111,114,103,62,0
/third_party/node/deps/v8/src/codegen/
H A Dsource-position-table.h60 base::OwnedVector<byte> ToSourcePositionTableVector();
69 ZoneVector<byte> bytes_;
117 base::Vector<const byte> bytes,
155 base::Vector<const byte> raw_table_;
/third_party/node/deps/v8/src/parsing/
H A Dliteral-buffer.cc35 base::Vector<byte> new_store = in ExpandBuffer()
36 base::Vector<byte>::New(NewCapacity(min_capacity)); in ExpandBuffer()
46 base::Vector<byte> new_store; in ConvertToTwoByte()
51 new_store = base::Vector<byte>::New(NewCapacity(new_content_size)); in ConvertToTwoByte()
/third_party/node/deps/openssl/config/archs/linux-armv4/asm_avx2/crypto/sha/
H A Dsha512-armv4.S21 @ by gcc 3.4 and it spends ~72 clock cycles per byte [on single-issue
27 @ Cortex A8 core and ~40 cycles per processed byte.
32 @ improvement on Coxtex A8 core and ~38 cycles per byte.
37 @ one byte in 23.3 cycles or ~60% faster than integer-only code.
42 @ terms it's 22.6 cycles per byte, which is disappointing result.
46 @ for further details. On side note Cortex-A15 processes one byte in
54 @ expected to maintain native byte order for whole 64-bit values.
1871 .byte 83,72,65,53,49,50,32,98,108,111,99,107,32,116,114,97,110,115,102,111,114,109,32,102,111,114,32,65,82,77,118,52,47,78,69,79,78,44,32,67,82,89,80,84,79,71,65,77,83,32,98,121,32,60,97,112,112,114,111,64,111,112,101,110,115,115,108,46,111,114,103,62,0
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-cff-interp-dict-common.hh68 case OpCode_longintdict: /* 5-byte integer */ in process_op()
90 unsigned char byte = 0; in parse_bcd() local
98 byte = str_ref[0]; in parse_bcd()
100 nibble = byte >> 4; in parse_bcd()
103 nibble = byte & 0x0F; in parse_bcd()
/third_party/ffmpeg/libavcodec/arm/
H A Dh264idct_neon.S405 .byte 4+ 1*8, 5+ 1*8, 4+ 2*8, 5+ 2*8
406 .byte 6+ 1*8, 7+ 1*8, 6+ 2*8, 7+ 2*8
407 .byte 4+ 3*8, 5+ 3*8, 4+ 4*8, 5+ 4*8
408 .byte 6+ 3*8, 7+ 3*8, 6+ 4*8, 7+ 4*8
409 .byte 4+ 6*8, 5+ 6*8, 4+ 7*8, 5+ 7*8
410 .byte 6+ 6*8, 7+ 6*8, 6+ 7*8, 7+ 7*8
411 .byte 4+ 8*8, 5+ 8*8, 4+ 9*8, 5+ 9*8
412 .byte 6+ 8*8, 7+ 8*8, 6+ 9*8, 7+ 9*8
413 .byte 4+11*8, 5+11*8, 4+12*8, 5+12*8
414 .byte
[all...]
/third_party/node/deps/v8/src/codegen/x64/
H A Dassembler-x64-inl.h105 byte rex_bits = reg.high_bit() << 2 | rm_reg.high_bit(); in emit_optional_rex_32()
110 byte rex_bits = reg.high_bit() << 2 | op.data().rex; in emit_optional_rex_32()
115 byte rex_bits = (reg.code() & 0x8) >> 1 | op.data().rex; in emit_optional_rex_32()
120 byte rex_bits = (reg.code() & 0x8) >> 1 | (base.code() & 0x8) >> 3; in emit_optional_rex_32()
125 byte rex_bits = (reg.code() & 0x8) >> 1 | (base.code() & 0x8) >> 3; in emit_optional_rex_32()
130 byte rex_bits = (reg.code() & 0x8) >> 1 | (base.code() & 0x8) >> 3; in emit_optional_rex_32()
162 // byte 1 of 3-byte VEX
165 byte rxb = static_cast<byte>(~((re in emit_vex3_byte1()
[all...]

Completed in 12 milliseconds

1...<<41424344454647484950>>...138