| /llvm-project-15.0.7/libc/AOR_v20.02/networking/aarch64/ |
| H A D | chksum_simd.c | 22 Assert(*nbytes >= 8); in slurp_head64() 35 *nbytes -= 8 - off; in slurp_head64() 44 Assert(nbytes < 8); in slurp_tail64() 53 nbytes = 0; in slurp_tail64() 97 nbytes %= 64; in __chksum_aarch64_simd() 104 if (nbytes & 32) in __chksum_aarch64_simd() 111 nbytes -= 32; in __chksum_aarch64_simd() 119 if (nbytes & 16) in __chksum_aarch64_simd() 124 nbytes -= 16; in __chksum_aarch64_simd() 129 if (nbytes & 8) in __chksum_aarch64_simd() [all …]
|
| /llvm-project-15.0.7/libc/AOR_v20.02/networking/ |
| H A D | chksum.c | 18 Assert(*nbytes >= 4); in slurp_head32() 27 *nbytes -= 4 - off; in slurp_head32() 39 if (nbytes > 300) in __chksum() 43 sum = slurp_head32(&ptr, &nbytes); in __chksum() 58 nbytes %= 16; in __chksum() 59 Assert(nbytes < 16); in __chksum() 62 while (nbytes >= 4) in __chksum() 66 nbytes -= 4; in __chksum() 68 Assert(nbytes < 4); in __chksum() 70 if (nbytes & 2) in __chksum() [all …]
|
| H A D | chksum_common.h | 83 slurp_small(const void *ptr, uint32_t nbytes) in slurp_small() argument 87 while (nbytes >= 4) in slurp_small() 91 nbytes -= 4; in slurp_small() 93 if (nbytes & 2) in slurp_small() 98 if (nbytes & 1) in slurp_small()
|
| /llvm-project-15.0.7/libc/AOR_v20.02/networking/arm/ |
| H A D | chksum_simd.c | 24 if (unlikely(nbytes < 40)) in __chksum_arm_simd() 32 Assert(nbytes >= 8); in __chksum_arm_simd() 48 nbytes -= 8 - off; in __chksum_arm_simd() 70 nbytes %= 64; in __chksum_arm_simd() 83 nbytes -= 16; in __chksum_arm_simd() 85 Assert(nbytes < 16); in __chksum_arm_simd() 102 if (nbytes & 8) in __chksum_arm_simd() 108 nbytes -= 8; in __chksum_arm_simd() 110 Assert(nbytes < 8); in __chksum_arm_simd() 113 if (likely(nbytes != 0)) in __chksum_arm_simd() [all …]
|
| /llvm-project-15.0.7/libcxx/src/support/solaris/ |
| H A D | wcsnrtombs.inc | 35 size_t nbytes; 39 nbytes = 0; 47 return (nbytes + nb - 1); 49 nbytes += nb; 51 return (nbytes); 83 return (nbytes + nb - 1); 88 nbytes += nb; 91 return (nbytes);
|
| /llvm-project-15.0.7/llvm/test/CodeGen/ARM/ |
| H A D | 2010-06-25-Thumb2ITInvalidIterator.ll | 10 define void @x0(i8* nocapture %buf, i32 %nbytes) #0 { 13 tail call void @llvm.dbg.value(metadata i32 %nbytes, metadata !16, metadata !14), !dbg !18 17 %cmp3 = icmp ult i32 %tmp, %nbytes, !dbg !19 20 %nbytes.addr.0 = select i1 %or.cond, i32 %tmp, i32 %nbytes 28 %cmp7 = icmp ult i32 %0, %nbytes.addr.0, !dbg !23 75 !16 = !DILocalVariable(name: "nbytes", arg: 2, scope: !9, file: !2, line: 4, type: !17)
|
| /llvm-project-15.0.7/llvm/test/CodeGen/X86/ |
| H A D | merge-sp-update-lea.ll | 13 define noalias ptr @useLEA(ptr nocapture %p, i32 %nbytes) #0 { 15 %cmp = icmp slt i32 %nbytes, 0 19 %tobool = icmp ne i32 %nbytes, 0 20 %cond = select i1 %tobool, i32 %nbytes, i32 1
|
| /llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/cert/ |
| H A D | mem57-cpp.cpp | 19 static void *operator new(std::size_t nbytes) noexcept(true) { in operator new() 20 return std::aligned_alloc(alignof(Vector3), nbytes); in operator new()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/MacOSX-Kernel/ |
| H A D | CommunicationKDP.cpp | 978 const uint32_t nbytes = packet.GetByteSize() - offset; in DumpPacket() local 980 if (nbytes > 0) in DumpPacket() 1083 const uint32_t nbytes = packet.GetByteSize() - offset; in DumpPacket() local 1085 address, nbytes); in DumpPacket() 1086 if (nbytes > 0) in DumpPacket() 1093 nbytes, // Number of items in DumpPacket() 1103 const uint16_t nbytes = packet.GetU16(&offset); in DumpPacket() local 1105 nbytes); in DumpPacket() 1111 const uint16_t nbytes = packet.GetU16(&offset); in DumpPacket() local 1113 address, nbytes); in DumpPacket() [all …]
|
| /llvm-project-15.0.7/compiler-rt/include/sanitizer/ |
| H A D | netbsd_syscall_hooks.h | 1908 (long long)(data), (long long)(nbytes)) 1993 (long long)(nbytes)) 1998 (long long)(nbytes)) 2003 (long long)(nbytes)) 2008 (long long)(nbytes)) 2013 (long long)(nbytes)) 2018 (long long)(nbytes)) 4285 long long data, long long nbytes); 4293 long long data, long long nbytes); 4335 long long data, long long nbytes); [all …]
|
| /llvm-project-15.0.7/libc/AOR_v20.02/networking/test/ |
| H A D | chksum.c | 40 checksum_simple(const void *ptr, uint32_t nbytes) in checksum_simple() argument 46 for (uint32_t nhalfs = nbytes >> 1; nhalfs != 0; nhalfs--) in checksum_simple() 52 if ((nbytes & 0x01) != 0) in checksum_simple()
|
| /llvm-project-15.0.7/libcxx/test/support/ |
| H A D | min_allocator.h | 124 const size_t nbytes = n*sizeof(T); in allocate() local 126 outstanding_bytes += nbytes; in allocate() 127 return static_cast<T*>(std::malloc(nbytes)); in allocate() 132 const size_t nbytes = n*sizeof(T); in deallocate() local 134 outstanding_bytes -= nbytes; in deallocate()
|
| /llvm-project-15.0.7/llvm/test/CodeGen/Mips/ |
| H A D | delay-slot-filler-bundled-insts.mir | 22 define i8* @test(i64 zeroext %nbytes) local_unnamed_addr #0 { 24 %cmp = icmp eq i64 %nbytes, 0 28 %call = tail call i8* @func_a(i64 zeroext %nbytes)
|
| /llvm-project-15.0.7/clang/test/Sema/ |
| H A D | darwin-align-cast.c | 18 ssize_t sendFileDescriptor(int fd, void *data, size_t nbytes, int sendfd) { in sendFileDescriptor() argument
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/postmortem/FreeBSDKernel/tools/ |
| H A D | libfbsdvmcore-hacks.patch | 290 .Fn fvc_read "fvc_t *kd" "kvaddr_t addr" "void *buf" "size_t nbytes" 292 +.Fn fvc_write "fvc_t *kd" "kvaddr_t addr" "void *buf" "size_t nbytes" 309 +.Fa nbytes
|
| /llvm-project-15.0.7/llvm/lib/Support/ |
| H A D | regcomp.c | 1200 size_t nbytes; in allocset() local 1213 nbytes = nc / CHAR_BIT * css; in allocset() 1220 ptr = (uch *)realloc((char *)p->g->setbits, nbytes); in allocset() 1228 (void) memset((char *)p->g->setbits + (nbytes - css), 0, css); in allocset()
|
| /llvm-project-15.0.7/openmp/runtime/src/include/ |
| H A D | omp-tools.h.var | 1152 typedef ompd_rc_t (*ompd_callback_memory_alloc_fn_t)(ompd_size_t nbytes, 1174 ompd_size_t nbytes, void *buffer); 1179 ompd_size_t nbytes, const void *buffer);
|
| /llvm-project-15.0.7/clang/include/clang/Analysis/Analyses/ |
| H A D | ThreadSafetyTIL.h | 177 inline static SizeType getSizeType(unsigned nbytes); 190 inline ValueType::SizeType ValueType::getSizeType(unsigned nbytes) { in getSizeType() argument 191 switch (nbytes) { in getSizeType()
|
| /llvm-project-15.0.7/libcxx/src/ |
| H A D | locale.cpp | 1791 int nbytes = 0; in do_length() local 1798 ++nbytes; in do_length() 1803 return nbytes; in do_length() 1805 nbytes += n; in do_length() 1810 return nbytes; in do_length()
|
| /llvm-project-15.0.7/llvm/include/llvm/Target/ |
| H A D | Target.td | 1265 let InOperandList = (ins i64imm:$id, i32imm:$nbytes, variable_ops); 1273 let InOperandList = (ins i64imm:$id, i32imm:$nbytes, unknown:$callee,
|