/kernel/linux/linux-6.6/drivers/block/ |
H A D | swim_asm.S | 56 .byte 0xa1, 0xa1, 0xa1, 0xfe 58 .byte 0xa1, 0xa1, 0xa1, 0xfb
|
/kernel/linux/linux-6.6/drivers/net/fjes/ |
H A D | fjes_hw.h | 85 #define FJES_DEV_COMMAND_START_DBG_REQ_LEN(byte) \ 86 (16 + (8 * (byte) / FJES_DEBUG_PAGE_SIZE))
|
/kernel/linux/linux-6.6/arch/x86/lib/ |
H A D | checksum_32.S | 44 * is aligned on either a 2-byte or 4-byte boundary. We get at 45 * least a twofold speedup on 486 and Pentium if it is 4-byte aligned. 46 * Fortunately, it is easy to convert 2-byte alignment to 4-byte 158 # Handle 2-byte-aligned regions 182 movzbl (%esi),%ebx # csumming 1 byte, 2-aligned
|
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/ |
H A D | intel_memory_region.c | 41 int byte = get_random_u32_below(pagesize); in __iopagetest() local 48 result[1] = ioread8(va + byte); in __iopagetest() 113 * Write a byte, read it back. If the iomapping fails, we expect in iomemtest()
|
/kernel/linux/linux-6.6/drivers/i2c/busses/ |
H A D | i2c-opal.c | 126 req.buffer_ra = cpu_to_be64(__pa(&data->byte)); in i2c_opal_smbus_xfer() 134 req.buffer_ra = cpu_to_be64(__pa(&data->byte)); in i2c_opal_smbus_xfer()
|
H A D | i2c-isch.c | 180 outb(data->byte, SMBHSTDAT0); in sch_access() 222 data->byte = inb(SMBHSTDAT0); in sch_access()
|
H A D | i2c-nforce2.c | 206 outb_p(data->byte, NVIDIA_SMB_DATA); in nforce2_access() 255 data->byte = inb_p(NVIDIA_SMB_DATA); in nforce2_access()
|
H A D | i2c-sun6i-p2wi.c | 10 * The P2WI controller looks like an SMBus controller which only supports byte 15 * - only one read access is required to read a byte (instead of a write 17 * - there's no Ack bit after each byte transfer 137 writel(data->byte, p2wi->regs + P2WI_DATA0); in p2wi_smbus_xfer() 167 data->byte = readl(p2wi->regs + P2WI_DATA0); in p2wi_smbus_xfer()
|
H A D | i2c-sis5595.c | 299 sis5595_write(SMB_BYTE, data->byte); in sis5595_access() 332 data->byte = sis5595_read(SMB_BYTE); in sis5595_access()
|
H A D | i2c-digicolor.c | 91 static void dc_i2c_write_byte(struct dc_i2c *i2c, u8 byte) in dc_i2c_write_byte() argument 93 dc_i2c_data(i2c, byte); in dc_i2c_write_byte()
|
/kernel/linux/linux-6.6/drivers/input/serio/ |
H A D | xilinx_ps2.c | 79 * xps2_recv() - attempts to receive a byte from the PS/2 port. 81 * @byte: address where the read data will be copied 86 static int xps2_recv(struct xps2data *drvdata, u8 *byte) in xps2_recv() argument 94 *byte = in_be32(drvdata->base_address + XPS2_RX_DATA_OFFSET); in xps2_recv() 128 /* Error, if a byte is not received */ in xps2_interrupt() 131 "wrong rcvd byte count (%d)\n", status); in xps2_interrupt() 146 * sxps2_write() - sends a byte out through the PS/2 port. 150 * This function checks if the PS/2 transmitter is empty and sends a byte. 164 /* If the PS/2 transmitter is empty send a byte of data */ in sxps2_write()
|
/kernel/linux/linux-6.6/scripts/dtc/ |
H A D | dtc-parser.y | 37 uint8_t byte; 65 %token <byte> DT_BYTE
|
/third_party/node/deps/v8/src/wasm/ |
H A D | wasm-engine.h | 162 base::Vector<const byte> asm_js_offset_table_bytes, 374 std::unique_ptr<byte[]> bytes_copy, size_t length,
|
/third_party/node/deps/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/ |
H A D | sigstore_rekor.js | 159 arr.forEach((byte) => { 160 bin.push(String.fromCharCode(byte));
|
H A D | events.js | 158 arr.forEach((byte) => { 159 bin.push(String.fromCharCode(byte));
|
/third_party/node/deps/v8/src/codegen/ |
H A D | safepoint-table.cc | 77 os << "Safepoints (entries = " << length_ << ", byte size = " << byte_size() in Print() 265 for (uint8_t byte : bits) assembler->db(byte); in Emit()
|
/third_party/node/deps/v8/src/codegen/ia32/ |
H A D | assembler-ia32-inl.h | 270 byte disp = 0x00; in emit_near_disp() 274 disp = static_cast<byte>(offset & 0xFF); in emit_near_disp()
|
/third_party/node/deps/v8/src/regexp/arm64/ |
H A D | regexp-macro-assembler-arm64.h | 97 const byte** input_start, 98 const byte** input_end);
|
/third_party/node/deps/v8/src/snapshot/ |
H A D | deserializer.h | 53 // Create a deserializer from a snapshot byte source. 54 Deserializer(IsolateT* isolate, base::Vector<const byte> payload, 182 int ReadSingleBytecodeData(byte data, SlotAccessor slot_accessor);
|
/third_party/node/deps/v8/src/snapshot/embedded/ |
H A D | embedded-file-writer.cc | 67 // that labels do not insert bytes into the middle of the blob byte in WriteBuiltin() 72 const std::vector<byte>& current_positions = source_positions_[builtin_id]; in WriteBuiltin() 75 base::Vector<const byte> vpos(current_positions.data(), in WriteBuiltin() 241 // Begin by writing out byte chunks. in WriteBinaryContentsAsInlineAssembly()
|
/third_party/rust/crates/codespan/codespan-reporting/examples/ |
H A D | readme_preview.rs | 93 let num_lines = buffer.iter().filter(|byte| **byte == b'\n').count() + 1; in main() 207 for (i, byte) in buf.iter().enumerate() { in write() 208 let escape = match byte { in write()
|
/third_party/rust/crates/bindgen/bindgen-integration/src/ |
H A D | lib.rs | 127 date.byte = 255; // Set this first, to ensure we don't override it. in test_bitfields_fifth() 143 date.byte = 255; in test_bitfields_sixth()
|
/third_party/python/Lib/lib2to3/pgen2/ |
H A D | conv.py | 189 byte = ord(c) 191 if byte & (1<<j):
|
/third_party/skia/third_party/externals/angle2/src/tests/perf_tests/ |
H A D | TexturesPerf.cpp | 218 for (auto &byte : textureData) in initTextures() 220 byte = rand() % 255u; in initTextures()
|
/third_party/skia/third_party/externals/swiftshader/src/Renderer/ |
H A D | VertexProcessor.hpp | 200 void lockUniformBuffers(byte** u, sw::Resource* uniformBuffers[]); 203 void lockTransformFeedbackBuffers(byte** t, unsigned int* v, unsigned int* r, unsigned int* c, unsigned int* s, sw::Resource* transformFeedbackBuffers[]);
|