/third_party/node/deps/v8/src/wasm/ |
H A D | jump-table-assembler.cc | 19 // Use a push, because mov to an extended register takes 6 bytes. in EmitLazyCompileJumpSlot() 20 pushq_imm32(func_index); // 5 bytes in EmitLazyCompileJumpSlot() 21 EmitJumpSlot(lazy_compile_target); // 5 bytes in EmitLazyCompileJumpSlot() 28 near_jmp(displacement, RelocInfo::NO_INFO); // 5 bytes in EmitJumpSlot() 35 jmp(Operand(&data)); // 6 bytes in EmitFarJumpSlot() 36 Nop(2); // 2 bytes in EmitFarJumpSlot() 42 dq(target); // 8 bytes in EmitFarJumpSlot() 49 // Offset of the target is at 8 bytes, see {EmitFarJumpSlot}. in PatchFarJumpSlot() 57 void JumpTableAssembler::NopBytes(int bytes) { in NopBytes() argument 58 DCHECK_LE(0, bytes); in NopBytes() [all...] |
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
H A D | BytesTrieBuilder.java | 32 // Used in add() to wrap the bytes into a CharSequence for StringTrieBuilder.addImpl(). 82 return new BytesTrie(bytes, bytes.length-bytesLength); in build() 94 * <em>Do not modify the bytes in the buffer!</em> 106 return ByteBuffer.wrap(bytes, bytes.length-bytesLength, bytesLength); in buildByteBuffer() 111 if(bytes==null) { in buildBytes() 112 bytes=new byte[1024]; in buildBytes() 125 bytes=null; in clear() 165 if(length>bytes in ensureCapacity() 323 private byte[] bytes; global() field in BytesTrieBuilder [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/ |
H A D | BytesTrieBuilder.java | 32 // Used in add() to wrap the bytes into a CharSequence for StringTrieBuilder.addImpl(). 77 return new BytesTrie(bytes, bytes.length-bytesLength); in build() 89 * <em>Do not modify the bytes in the buffer!</em> 100 return ByteBuffer.wrap(bytes, bytes.length-bytesLength, bytesLength); in buildByteBuffer() 105 if(bytes==null) { in buildBytes() 106 bytes=new byte[1024]; in buildBytes() 118 bytes=null; in clear() 158 if(length>bytes in ensureCapacity() 305 private byte[] bytes; global() field in BytesTrieBuilder [all...] |
/kernel/linux/linux-5.10/drivers/gpu/drm/vmwgfx/ |
H A D | vmwgfx_fifo.c | 206 static bool vmw_fifo_is_full(struct vmw_private *dev_priv, uint32_t bytes) in vmw_fifo_is_full() argument 214 return ((max - next_cmd) + (stop - min) <= bytes); in vmw_fifo_is_full() 218 uint32_t bytes, bool interruptible, in vmw_fifo_wait_noirq() 231 if (!vmw_fifo_is_full(dev_priv, bytes)) in vmw_fifo_wait_noirq() 251 uint32_t bytes, bool interruptible, in vmw_fifo_wait() 256 if (likely(!vmw_fifo_is_full(dev_priv, bytes))) in vmw_fifo_wait() 261 return vmw_fifo_wait_noirq(dev_priv, bytes, in vmw_fifo_wait() 270 !vmw_fifo_is_full(dev_priv, bytes), timeout); in vmw_fifo_wait() 274 !vmw_fifo_is_full(dev_priv, bytes), timeout); in vmw_fifo_wait() 288 * Reserve @bytes numbe 217 vmw_fifo_wait_noirq(struct vmw_private *dev_priv, uint32_t bytes, bool interruptible, unsigned long timeout) vmw_fifo_wait_noirq() argument 250 vmw_fifo_wait(struct vmw_private *dev_priv, uint32_t bytes, bool interruptible, unsigned long timeout) vmw_fifo_wait() argument 297 vmw_local_fifo_reserve(struct vmw_private *dev_priv, uint32_t bytes) vmw_local_fifo_reserve() argument 384 vmw_fifo_reserve_dx(struct vmw_private *dev_priv, uint32_t bytes, int ctx_id) vmw_fifo_reserve_dx() argument 404 vmw_fifo_res_copy(struct vmw_fifo_state *fifo_state, u32 *fifo_mem, uint32_t next_cmd, uint32_t max, uint32_t min, uint32_t bytes) vmw_fifo_res_copy() argument 425 vmw_fifo_slow_copy(struct vmw_fifo_state *fifo_state, u32 *fifo_mem, uint32_t next_cmd, uint32_t max, uint32_t min, uint32_t bytes) vmw_fifo_slow_copy() argument 445 vmw_local_fifo_commit(struct vmw_private *dev_priv, uint32_t bytes) vmw_local_fifo_commit() argument 495 vmw_fifo_commit(struct vmw_private *dev_priv, uint32_t bytes) vmw_fifo_commit() argument 510 vmw_fifo_commit_flush(struct vmw_private *dev_priv, uint32_t bytes) vmw_fifo_commit_flush() argument 541 uint32_t bytes = sizeof(u32) + sizeof(*cmd_fence); vmw_fifo_send_fence() local [all...] |
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
H A D | ByteString.java | 60 * Immutable sequence of bytes. Provides conversions to and from {@code byte[]}, {@link 67 * <p>Substring is supported by sharing the reference to the immutable underlying bytes. 80 * their bytes on {@link #concat(ByteString)}. The trade-off is copy size versus the overhead of 87 * rope start at 256 bytes, but double each iteration up to 8192 bytes. 109 byte[] copyFrom(byte[] bytes, int offset, int size); in copyFrom() argument 115 public byte[] copyFrom(byte[] bytes, int offset, int size) { in copyFrom() argument 117 System.arraycopy(bytes, offset, copy, 0, size); in copyFrom() 125 public byte[] copyFrom(byte[] bytes, int offset, int size) { in copyFrom() argument 126 return Arrays.copyOfRange(bytes, offse in copyFrom() 360 copyFrom(byte[] bytes, int offset, int size) copyFrom() argument 371 copyFrom(byte[] bytes) copyFrom() argument 389 wrap(byte[] bytes) wrap() argument 398 wrap(byte[] bytes, int offset, int length) wrap() argument 411 copyFrom(ByteBuffer bytes, int size) copyFrom() argument 424 copyFrom(ByteBuffer bytes) copyFrom() argument 1306 protected final byte[] bytes; global() field in ByteString.LiteralByteString 1313 LiteralByteString(byte[] bytes) LiteralByteString() argument 1549 BoundedByteString(byte[] bytes, int offset, int length) BoundedByteString() argument [all...] |
H A D | BinaryReader.java | 79 /** Returns the total number of bytes read so far from the input buffer. */ 318 ByteString bytes = in readBytes() 323 return bytes; in readBytes() 368 final int bytes = readVarint32(); in readDoubleList() 369 verifyPackedFixed64Length(bytes); in readDoubleList() 370 final int fieldEndPos = pos + bytes; in readDoubleList() 397 final int bytes = readVarint32(); in readDoubleList() 398 verifyPackedFixed64Length(bytes); in readDoubleList() 399 final int fieldEndPos = pos + bytes; in readDoubleList() 432 final int bytes in readFloatList() 1707 verifyPackedFixed64Length(int bytes) verifyPackedFixed64Length() argument 1715 verifyPackedFixed32Length(int bytes) verifyPackedFixed32Length() argument [all...] |
/kernel/linux/linux-6.6/include/linux/ |
H A D | uio.h | 150 * Total number of bytes covered by an iovec. 167 size_t bytes, struct iov_iter *i); 168 void iov_iter_advance(struct iov_iter *i, size_t bytes); 169 void iov_iter_revert(struct iov_iter *i, size_t bytes); 170 size_t fault_in_iov_iter_readable(const struct iov_iter *i, size_t bytes); 171 size_t fault_in_iov_iter_writeable(const struct iov_iter *i, size_t bytes); 173 size_t copy_page_to_iter(struct page *page, size_t offset, size_t bytes, 175 size_t copy_page_from_iter(struct page *page, size_t offset, size_t bytes, 178 size_t _copy_to_iter(const void *addr, size_t bytes, struct iov_iter *i); 179 size_t _copy_from_iter(void *addr, size_t bytes, struc 182 copy_folio_to_iter(struct folio *folio, size_t offset, size_t bytes, struct iov_iter *i) copy_folio_to_iter() argument 188 copy_folio_from_iter_atomic(struct folio *folio, size_t offset, size_t bytes, struct iov_iter *i) copy_folio_from_iter_atomic() argument 198 copy_to_iter(const void *addr, size_t bytes, struct iov_iter *i) copy_to_iter() argument 206 copy_from_iter(void *addr, size_t bytes, struct iov_iter *i) copy_from_iter() argument 214 copy_from_iter_full(void *addr, size_t bytes, struct iov_iter *i) copy_from_iter_full() argument 224 copy_from_iter_nocache(void *addr, size_t bytes, struct iov_iter *i) copy_from_iter_nocache() argument 232 copy_from_iter_full_nocache(void *addr, size_t bytes, struct iov_iter *i) copy_from_iter_full_nocache() argument 354 csum_and_copy_from_iter_full(void *addr, size_t bytes, __wsum *csum, struct iov_iter *i) csum_and_copy_from_iter_full() argument [all...] |
/kernel/linux/linux-5.10/lib/ |
H A D | iov_iter.c | 164 static size_t copy_page_to_iter_iovec(struct page *page, size_t offset, size_t bytes, in copy_page_to_iter_iovec() argument 172 if (unlikely(bytes > i->count)) in copy_page_to_iter_iovec() 173 bytes = i->count; in copy_page_to_iter_iovec() 175 if (unlikely(!bytes)) in copy_page_to_iter_iovec() 179 wanted = bytes; in copy_page_to_iter_iovec() 183 copy = min(bytes, iov->iov_len - skip); in copy_page_to_iter_iovec() 194 bytes -= copy; in copy_page_to_iter_iovec() 196 while (unlikely(!left && bytes)) { in copy_page_to_iter_iovec() 199 copy = min(bytes, iov->iov_len); in copy_page_to_iter_iovec() 204 bytes in copy_page_to_iter_iovec() 248 copy_page_from_iter_iovec(struct page *page, size_t offset, size_t bytes, struct iov_iter *i) copy_page_from_iter_iovec() argument 375 copy_page_to_iter_pipe(struct page *page, size_t offset, size_t bytes, struct iov_iter *i) copy_page_to_iter_pipe() argument 431 iov_iter_fault_in_readable(struct iov_iter *i, size_t bytes) iov_iter_fault_in_readable() argument 547 copy_pipe_to_iter(const void *addr, size_t bytes, struct iov_iter *i) copy_pipe_to_iter() argument 582 csum_and_copy_to_pipe_iter(const void *addr, size_t bytes, struct csum_state *csstate, struct iov_iter *i) csum_and_copy_to_pipe_iter() argument 618 _copy_to_iter(const void *addr, size_t bytes, struct iov_iter *i) _copy_to_iter() argument 659 copy_mc_pipe_to_iter(const void *addr, size_t bytes, struct iov_iter *i) copy_mc_pipe_to_iter() argument 716 _copy_mc_to_iter(const void *addr, size_t bytes, struct iov_iter *i) _copy_mc_to_iter() argument 753 _copy_from_iter(void *addr, size_t bytes, struct iov_iter *i) _copy_from_iter() argument 773 _copy_from_iter_full(void *addr, size_t bytes, struct iov_iter *i) _copy_from_iter_full() argument 800 _copy_from_iter_nocache(void *addr, size_t bytes, struct iov_iter *i) _copy_from_iter_nocache() argument 834 _copy_from_iter_flushcache(void *addr, size_t bytes, struct iov_iter *i) _copy_from_iter_flushcache() argument 855 _copy_from_iter_full_nocache(void *addr, size_t bytes, struct iov_iter *i) _copy_from_iter_full_nocache() argument 903 copy_page_to_iter(struct page *page, size_t offset, size_t bytes, struct iov_iter *i) copy_page_to_iter() argument 925 copy_page_from_iter(struct page *page, size_t offset, size_t bytes, struct iov_iter *i) copy_page_from_iter() argument 944 pipe_zero(size_t bytes, struct iov_iter *i) pipe_zero() argument 971 iov_iter_zero(size_t bytes, struct iov_iter *i) iov_iter_zero() argument 985 iov_iter_copy_from_user_atomic(struct page *page, struct iov_iter *i, unsigned long offset, size_t bytes) iov_iter_copy_from_user_atomic() argument 1438 csum_and_copy_from_iter(void *addr, size_t bytes, __wsum *csum, struct iov_iter *i) csum_and_copy_from_iter() argument 1477 csum_and_copy_from_iter_full(void *addr, size_t bytes, __wsum *csum, struct iov_iter *i) csum_and_copy_from_iter_full() argument 1519 csum_and_copy_to_iter(const void *addr, size_t bytes, void *_csstate, struct iov_iter *i) csum_and_copy_to_iter() argument 1565 hash_and_copy_to_iter(const void *addr, size_t bytes, void *hashp, struct iov_iter *i) hash_and_copy_to_iter() argument [all...] |
/kernel/linux/linux-5.10/arch/hexagon/mm/ |
H A D | copy_user_template.S | 8 * W: width in bytes 19 p0 = cmp.gtu(bytes,#0) 25 p1 = cmp.gtu(bytes,#15) 32 loopcount = lsr(bytes,#3) 46 bytes -= asl(loopcount,#3) 58 p1 = cmp.gtu(bytes,#7) 63 loopcount = lsr(bytes,#2) 76 bytes -= asl(loopcount,#2) 84 p1 = cmp.gtu(bytes,#3) 89 loopcount = lsr(bytes,# [all...] |
/kernel/linux/linux-6.6/arch/hexagon/mm/ |
H A D | copy_user_template.S | 8 * W: width in bytes 19 p0 = cmp.gtu(bytes,#0) 25 p1 = cmp.gtu(bytes,#15) 32 loopcount = lsr(bytes,#3) 46 bytes -= asl(loopcount,#3) 58 p1 = cmp.gtu(bytes,#7) 63 loopcount = lsr(bytes,#2) 76 bytes -= asl(loopcount,#2) 84 p1 = cmp.gtu(bytes,#3) 89 loopcount = lsr(bytes,# [all...] |
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/gvt/ |
H A D | mmio.c | 61 void *p_data, unsigned int bytes, bool read) in failsafe_emulate_mmio_rw() 76 bytes); in failsafe_emulate_mmio_rw() 79 bytes); in failsafe_emulate_mmio_rw() 84 memcpy(p_data, pt, bytes); in failsafe_emulate_mmio_rw() 86 memcpy(pt, p_data, bytes); in failsafe_emulate_mmio_rw() 97 * @bytes: access data length 103 void *p_data, unsigned int bytes) in intel_vgpu_emulate_mmio_read() 111 failsafe_emulate_mmio_rw(vgpu, pa, p_data, bytes, true); in intel_vgpu_emulate_mmio_read() 118 if (drm_WARN_ON(&i915->drm, bytes > 8)) in intel_vgpu_emulate_mmio_read() 125 if (drm_WARN_ON(&i915->drm, bytes ! in intel_vgpu_emulate_mmio_read() 60 failsafe_emulate_mmio_rw(struct intel_vgpu *vgpu, u64 pa, void *p_data, unsigned int bytes, bool read) failsafe_emulate_mmio_rw() argument 102 intel_vgpu_emulate_mmio_read(struct intel_vgpu *vgpu, u64 pa, void *p_data, unsigned int bytes) intel_vgpu_emulate_mmio_read() argument 177 intel_vgpu_emulate_mmio_write(struct intel_vgpu *vgpu, u64 pa, void *p_data, unsigned int bytes) intel_vgpu_emulate_mmio_write() argument [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/gvt/ |
H A D | mmio.c | 65 void *p_data, unsigned int bytes, bool read) in failsafe_emulate_mmio_rw() 80 bytes); in failsafe_emulate_mmio_rw() 83 bytes); in failsafe_emulate_mmio_rw() 88 memcpy(p_data, pt, bytes); in failsafe_emulate_mmio_rw() 90 memcpy(pt, p_data, bytes); in failsafe_emulate_mmio_rw() 101 * @bytes: access data length 107 void *p_data, unsigned int bytes) in intel_vgpu_emulate_mmio_read() 115 failsafe_emulate_mmio_rw(vgpu, pa, p_data, bytes, true); in intel_vgpu_emulate_mmio_read() 122 if (drm_WARN_ON(&i915->drm, bytes > 8)) in intel_vgpu_emulate_mmio_read() 129 if (drm_WARN_ON(&i915->drm, bytes ! in intel_vgpu_emulate_mmio_read() 64 failsafe_emulate_mmio_rw(struct intel_vgpu *vgpu, u64 pa, void *p_data, unsigned int bytes, bool read) failsafe_emulate_mmio_rw() argument 106 intel_vgpu_emulate_mmio_read(struct intel_vgpu *vgpu, u64 pa, void *p_data, unsigned int bytes) intel_vgpu_emulate_mmio_read() argument 181 intel_vgpu_emulate_mmio_write(struct intel_vgpu *vgpu, u64 pa, void *p_data, unsigned int bytes) intel_vgpu_emulate_mmio_write() argument [all...] |
/third_party/pulseaudio/sonic/ |
H A D | wave.c | 23 int bytesWritten; /* The number of bytes written so far, including header */ 31 void *bytes, in writeBytes() 39 bytesWritten = fwrite(bytes, sizeof(char), length, file->soundFile); in writeBytes() 60 char bytes[4]; in writeInt() local 64 bytes[i] = value; in writeInt() 67 writeBytes(file, bytes, 4); in writeInt() 75 char bytes[2]; in writeShort() local 79 bytes[i] = value; in writeShort() 82 writeBytes(file, bytes, 2); in writeShort() 85 /* Read bytes fro 29 writeBytes( waveFile file, void *bytes, int length) writeBytes() argument 86 readBytes( waveFile file, void *bytes, int length) readBytes() argument 98 readExactBytes( waveFile file, void *bytes, int length) readExactBytes() argument 119 unsigned char bytes[4]; readInt() local 134 unsigned char bytes[2]; readShort() local 332 unsigned char bytes[WAVE_BUF_LEN]; readFromWaveFile() local 356 unsigned char bytes[WAVE_BUF_LEN]; writeToWaveFile() local [all...] |
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/ |
H A D | IsValidUtf8TestUtil.java | 64 ByteString newByteString(byte[] bytes); in newByteString() argument 70 public ByteString newByteString(byte[] bytes) { 71 return ByteString.wrap(bytes); 78 public ByteString newByteString(byte[] bytes) { 79 return new NioByteString(ByteBuffer.wrap(bytes)); 95 public ByteString newByteString(byte[] bytes) { 98 if (buffer == null || buffer.capacity() < bytes.length) { 99 buffer = ByteBuffer.allocateDirect(bytes.length); 103 buffer.put(bytes); 120 // Both bytes ar 440 outputFailure(long byteChar, byte[] bytes, byte[] after) outputFailure() argument 444 outputFailure(long byteChar, byte[] bytes, byte[] after, int len) outputFailure() argument [all...] |
/kernel/linux/linux-5.10/drivers/net/ethernet/freescale/dpaa/ |
H A D | dpaa_eth_sysfs.c | 62 ssize_t bytes = 0; in dpaa_eth_show_fqids() local 96 bytes += sprintf(buf + bytes, in dpaa_eth_show_fqids() 99 bytes += sprintf(buf + bytes, in dpaa_eth_show_fqids() 119 bytes += sprintf(buf + bytes, "%s: %d\n", prevstr, in dpaa_eth_show_fqids() 122 bytes += sprintf(buf + bytes, "%s: %d - %d\n", prevstr, in dpaa_eth_show_fqids() 126 return bytes; in dpaa_eth_show_fqids() 133 ssize_t bytes = 0; dpaa_eth_show_bpids() local [all...] |
/kernel/linux/linux-6.6/drivers/net/ethernet/freescale/dpaa/ |
H A D | dpaa_eth_sysfs.c | 36 ssize_t bytes = 0; in dpaa_eth_show_fqids() local 70 bytes += sprintf(buf + bytes, in dpaa_eth_show_fqids() 73 bytes += sprintf(buf + bytes, in dpaa_eth_show_fqids() 93 bytes += sprintf(buf + bytes, "%s: %d\n", prevstr, in dpaa_eth_show_fqids() 96 bytes += sprintf(buf + bytes, "%s: %d - %d\n", prevstr, in dpaa_eth_show_fqids() 100 return bytes; in dpaa_eth_show_fqids() 107 ssize_t bytes = 0; dpaa_eth_show_bpids() local [all...] |
/third_party/skia/third_party/externals/spirv-tools/source/ |
H A D | spirv_endian.cpp | 28 unsigned char bytes[4]; member 54 uint8_t bytes[4]; in spvBinaryEndianness() 55 memcpy(bytes, binary->code, sizeof(uint32_t)); in spvBinaryEndianness() 57 if (0x03 == bytes[0] && 0x02 == bytes[1] && 0x23 == bytes[2] && in spvBinaryEndianness() 58 0x07 == bytes[3]) { in spvBinaryEndianness() 63 if (0x07 == bytes[0] && 0x23 == bytes[1] && 0x02 == bytes[ in spvBinaryEndianness() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/ |
H A D | spirv_endian.cpp | 28 unsigned char bytes[4]; member 54 uint8_t bytes[4]; in spvBinaryEndianness() 55 memcpy(bytes, binary->code, sizeof(uint32_t)); in spvBinaryEndianness() 57 if (0x03 == bytes[0] && 0x02 == bytes[1] && 0x23 == bytes[2] && in spvBinaryEndianness() 58 0x07 == bytes[3]) { in spvBinaryEndianness() 63 if (0x07 == bytes[0] && 0x23 == bytes[1] && 0x02 == bytes[ in spvBinaryEndianness() [all...] |
/third_party/spirv-tools/source/ |
H A D | spirv_endian.cpp | 28 unsigned char bytes[4]; member 54 uint8_t bytes[4]; in spvBinaryEndianness() 55 memcpy(bytes, binary->code, sizeof(uint32_t)); in spvBinaryEndianness() 57 if (0x03 == bytes[0] && 0x02 == bytes[1] && 0x23 == bytes[2] && in spvBinaryEndianness() 58 0x07 == bytes[3]) { in spvBinaryEndianness() 63 if (0x07 == bytes[0] && 0x23 == bytes[1] && 0x02 == bytes[ in spvBinaryEndianness() [all...] |
/third_party/toybox/toys/posix/ |
H A D | tail.c | 21 -c Output the last NUMBER bytes, +NUMBER counts from start 67 // Note: bytes and lines are negative here. 68 static int try_lseek(int fd, long bytes, long lines) in try_lseek() argument 78 if (bytes) { in try_lseek() 79 if (lseek(fd, bytes, SEEK_END)<0) lseek(fd, 0, SEEK_SET); in try_lseek() 86 bytes = pos; in try_lseek() 122 lseek(fd, bytes, SEEK_SET); in try_lseek() 129 long bytes = TT.c, lines = TT.n; in do_tail() local 145 if (bytes<0 || lines<0) { in do_tail() 150 if (try_lseek(fd, bytes, line in do_tail() [all...] |
/kernel/linux/linux-6.6/arch/arm/include/asm/ |
H A D | xor.h | 47 xor_arm4regs_2(unsigned long bytes, unsigned long * __restrict p1, in xor_arm4regs_2() argument 50 unsigned int lines = bytes / sizeof(unsigned long) / 4; in xor_arm4regs_2() 68 xor_arm4regs_3(unsigned long bytes, unsigned long * __restrict p1, in xor_arm4regs_3() argument 72 unsigned int lines = bytes / sizeof(unsigned long) / 4; in xor_arm4regs_3() 91 xor_arm4regs_4(unsigned long bytes, unsigned long * __restrict p1, in xor_arm4regs_4() argument 96 unsigned int lines = bytes / sizeof(unsigned long) / 2; in xor_arm4regs_4() 112 xor_arm4regs_5(unsigned long bytes, unsigned long * __restrict p1, in xor_arm4regs_5() argument 118 unsigned int lines = bytes / sizeof(unsigned long) / 2; in xor_arm4regs_5() 156 xor_neon_2(unsigned long bytes, unsigned long * __restrict p1, in xor_neon_2() argument 160 xor_arm4regs_2(bytes, p in xor_neon_2() 169 xor_neon_3(unsigned long bytes, unsigned long * __restrict p1, const unsigned long * __restrict p2, const unsigned long * __restrict p3) xor_neon_3() argument 183 xor_neon_4(unsigned long bytes, unsigned long * __restrict p1, const unsigned long * __restrict p2, const unsigned long * __restrict p3, const unsigned long * __restrict p4) xor_neon_4() argument 198 xor_neon_5(unsigned long bytes, unsigned long * __restrict p1, const unsigned long * __restrict p2, const unsigned long * __restrict p3, const unsigned long * __restrict p4, const unsigned long * __restrict p5) xor_neon_5() argument [all...] |
/third_party/ffmpeg/libavcodec/ppc/ |
H A D | pixblockdsp.c | 50 vector unsigned char bytes = vec_vsx_ld(0, pixels); in get_pixels_altivec() local 52 // Convert the bytes into shorts. in get_pixels_altivec() 53 //vector signed short shorts = (vector signed short) vec_perm(zero, bytes, perm); in get_pixels_altivec() 54 vector signed short shorts = (vector signed short) vec_perm(bytes, zero, perm); in get_pixels_altivec() 76 vec_u8 bytes = vec_perm(pixl, pixr, perm); in get_pixels_altivec() local 78 // Convert the bytes into shorts. in get_pixels_altivec() 79 vec_s16 shorts = (vec_s16)vec_mergeh(zero, bytes); in get_pixels_altivec() 103 vector unsigned char bytes = vec_vsx_ld(0, s1); in diff_pixels_altivec() local 105 // Convert the bytes into shorts. in diff_pixels_altivec() 106 shorts1 = (vector signed short) vec_mergeh(bytes, zer in diff_pixels_altivec() 168 vec_u8 bytes = vec_perm(pixl, pixr, perm); diff_pixels_altivec() local [all...] |
/kernel/linux/linux-5.10/arch/powerpc/include/asm/ |
H A D | cacheflush.h | 50 unsigned long bytes = l1_dcache_bytes(); in flush_dcache_range() local 51 void *addr = (void *)(start & ~(bytes - 1)); in flush_dcache_range() 52 unsigned long size = stop - (unsigned long)addr + (bytes - 1); in flush_dcache_range() 58 for (i = 0; i < size >> shift; i++, addr += bytes) in flush_dcache_range() 72 unsigned long bytes = l1_dcache_bytes(); in clean_dcache_range() local 73 void *addr = (void *)(start & ~(bytes - 1)); in clean_dcache_range() 74 unsigned long size = stop - (unsigned long)addr + (bytes - 1); in clean_dcache_range() 77 for (i = 0; i < size >> shift; i++, addr += bytes) in clean_dcache_range() 91 unsigned long bytes = l1_dcache_bytes(); in invalidate_dcache_range() local 92 void *addr = (void *)(start & ~(bytes in invalidate_dcache_range() [all...] |
/kernel/linux/linux-6.6/arch/powerpc/include/asm/ |
H A D | cacheflush.h | 73 unsigned long bytes = l1_dcache_bytes(); in flush_dcache_range() local 74 void *addr = (void *)(start & ~(bytes - 1)); in flush_dcache_range() 75 unsigned long size = stop - (unsigned long)addr + (bytes - 1); in flush_dcache_range() 81 for (i = 0; i < size >> shift; i++, addr += bytes) in flush_dcache_range() 95 unsigned long bytes = l1_dcache_bytes(); in clean_dcache_range() local 96 void *addr = (void *)(start & ~(bytes - 1)); in clean_dcache_range() 97 unsigned long size = stop - (unsigned long)addr + (bytes - 1); in clean_dcache_range() 100 for (i = 0; i < size >> shift; i++, addr += bytes) in clean_dcache_range() 114 unsigned long bytes = l1_dcache_bytes(); in invalidate_dcache_range() local 115 void *addr = (void *)(start & ~(bytes in invalidate_dcache_range() [all...] |
/third_party/skia/src/gpu/ |
H A D | GrSubRunAllocator.cpp | 16 GrBagOfBytes::GrBagOfBytes(char* bytes, size_t size, size_t firstHeapAllocation) in GrBagOfBytes() argument 22 void* ptr = bytes; in GrBagOfBytes() 23 if (bytes && std::align(kMaxAlignment, sizeof(Block), ptr, space)) { in GrBagOfBytes() 24 this->setupBytesAndCapacity(bytes, size); in GrBagOfBytes() 53 void GrBagOfBytes::setupBytesAndCapacity(char* bytes, int size) { 56 intptr_t endByte = reinterpret_cast<intptr_t>(bytes + size - sizeof(Block)) & -kMaxAlignment; 58 fCapacity = fEndByte - bytes; 65 char* const bytes = new char[size]; 68 this->setupBytesAndCapacity(bytes, size); 70 // Make a block to delete these bytes, an [all...] |