| /src/external/apache2/llvm/dist/libcxx/benchmarks/ |
| algorithms.bench.cpp | 158 for (auto& Copy : Copies) 159 Copy = Orig; 178 for (auto& Copy : Copies) { 179 Body(Copy); 180 benchmark::DoNotOptimize(Copy); 195 [](auto& Copy) { std::sort(Copy.begin(), Copy.end()); }); 213 [](auto& Copy) { std::stable_sort(Copy.begin(), Copy.end()); }) [all...] |
| /src/crypto/external/apache2/openssl/dist/demos/http3/ |
| gen_nghttp3.pl | 4 use File::Copy; 31 copy($file, "..");
|
| /src/crypto/external/apache2/openssl/lib/libcrypto/arch/riscv64/ |
| sm3-riscv64-zvksh.S | 15 # Copy the previous state to v2.
|
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| MachineCopyPropagation.cpp | 1 //===- MachineCopyPropagation.cpp - Machine Copy Propagation Pass ---------===// 9 // This is an extremely simple MachineInstr-level copy propagation pass. 14 // %reg1 = COPY %reg0 21 // - the COPY def is the only value that reaches OP 24 // %reg1 = COPY %reg0 30 // %R1 = COPY %R0 32 // %R0 = COPY %R1 <<< Removed 36 // %R1 = COPY %R0 38 // %R1 = COPY %R0 <<< Removed 44 // $R1 = COPY $R0 // $R0 is kille [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| TypeSize.h | 58 std::copy(Values.begin(), Values.end(), Coefficients.begin()); 81 LeafTy Copy = LHS; 82 return Copy += RHS; 86 LeafTy Copy = LHS; 87 return Copy -= RHS; 91 LeafTy Copy = LHS; 92 return Copy *= RHS; 98 LeafTy Copy = LHS; 99 return Copy *= -1; 199 LeafTy Copy = LHS [all...] |
| InstructionCost.h | 134 InstructionCost Copy = *this; 136 return Copy; 145 InstructionCost Copy = *this; 147 return Copy;
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/ |
| AArch64CleanupLocalDynamicTLSPass.cpp | 95 // Replace the TLS_base_addr instruction I with a copy from 102 // Insert a Copy from TLSBaseAddrReg to x0, which is where the rest of the 104 MachineInstr *Copy = BuildMI(*I.getParent(), I, I.getDebugLoc(), 105 TII->get(TargetOpcode::COPY), AArch64::X0) 115 return Copy; 119 // inserting a copy instruction after I. Returns the new instruction. 128 // Insert a copy from X0 to TLSBaseAddrReg for later. 129 MachineInstr *Copy = 131 TII->get(TargetOpcode::COPY), *TLSBaseAddrReg) 134 return Copy; [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/ |
| SystemZLDCleanup.cpp | 114 // Replace the TLS_LDCALL instruction I with a copy from TLSBaseAddrReg, 118 // Insert a Copy from TLSBaseAddrReg to R2. 119 MachineInstr *Copy = BuildMI(*I->getParent(), I, I->getDebugLoc(), 120 TII->get(TargetOpcode::COPY), SystemZ::R2D) 126 return Copy; 130 // inserting a copy instruction after I. Returns the new instruction. 137 // Insert a copy from R2 to TLSBaseAddrReg. 139 MachineInstr *Copy = BuildMI(*I->getParent(), Next, I->getDebugLoc(), 140 TII->get(TargetOpcode::COPY), *TLSBaseAddrReg) 143 return Copy; [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/ |
| MemoryLocation.h | 60 // ...Since we'll copy *up to* 4 bytes into %p, but we can't guarantee that 293 MemoryLocation Copy(*this); 294 Copy.Ptr = NewPtr; 295 return Copy; 299 MemoryLocation Copy(*this); 300 Copy.Size = NewSize; 301 return Copy; 305 MemoryLocation Copy(*this); 306 Copy.AATags = AAMDNodes(); 307 return Copy; [all...] |
| InstructionSimplify.h | 122 SimplifyQuery Copy(*this); 123 Copy.CxtI = I; 124 return Copy; 127 SimplifyQuery Copy(*this); 128 Copy.CanUseUndef = false; 129 return Copy;
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| ValueMap.h | 261 // Make a copy that won't get changed even when *this is destroyed. 262 ValueMapCallbackVH Copy(*this); 263 typename Config::mutex_type *M = Config::getMutex(Copy.Map->Data); 267 Config::onDelete(Copy.Map->Data, Copy.Unwrap()); // May destroy *this. 268 Copy.Map->Map.erase(Copy); // Definitely destroys *this. 274 // Make a copy that won't get changed even when *this is destroyed. 275 ValueMapCallbackVH Copy(*this); 276 typename Config::mutex_type *M = Config::getMutex(Copy.Map->Data) [all...] |
| /src/crypto/external/bsd/openssl/dist/test/recipes/ |
| 90-test_store_cases.t | 5 # this file except in compliance with the License. You can obtain a copy 12 use File::Copy;
|
| 60-test_x509_store.t | 5 # this file except in compliance with the License. You can obtain a copy 13 use File::Copy; 43 copy(srctop_file("test", "certs", "$_.pem"), curdir());
|
| /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/ |
| DebugChecksumsSubsection.cpp | 72 uint8_t *Copy = Storage.Allocate<uint8_t>(Bytes.size()); 73 ::memcpy(Copy, Bytes.data(), Bytes.size()); 74 Entry.Checksum = makeArrayRef(Copy, Bytes.size());
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/ |
| BitVector.h | 201 BitWord Copy = Bits[i]; 203 Copy = ~Copy; 207 Copy &= maskTrailingZeros<BitWord>(FirstBit); 212 Copy &= maskTrailingOnes<BitWord>(LastBit + 1); 214 if (Copy != 0) 215 return i * BITWORD_SIZE + countTrailingZeros(Copy); 233 BitWord Copy = Bits[CurrentWord]; 236 Copy &= maskTrailingOnes<BitWord>(LastBit + 1); 241 Copy &= maskTrailingZeros<BitWord>(FirstBit) [all...] |
| /src/sys/external/bsd/compiler_rt/dist/lib/profile/ |
| InstrProfilingFile.c | 83 char *Copy = malloc(strlen(Filename) + 1); 84 strcpy(Copy, Filename); 85 __llvm_profile_recursive_mkdir(Copy); 86 free(Copy);
|
| /src/libexec/ld.elf_so/arch/i386/ |
| rtld_start.S | 76 pushl 20(%esp) # Copy of reloff 77 pushl 20(%esp) # Copy of obj
|
| /src/crypto/external/apache2/openssl/dist/test/recipes/ |
| 60-test_x509_store.t | 5 # this file except in compliance with the License. You can obtain a copy 13 use File::Copy; 43 copy(srctop_file("test", "certs", "$_.pem"), curdir());
|
| 90-test_store_cases.t | 5 # this file except in compliance with the License. You can obtain a copy 12 use File::Copy;
|
| /src/crypto/external/bsd/openssl.old/dist/test/recipes/ |
| 60-test_x509_store.t | 5 # this file except in compliance with the License. You can obtain a copy 13 use File::Copy; 43 copy(srctop_file("test", "certs", "$_.pem"), curdir());
|
| 20-test_enc_more.t | 6 # this file except in compliance with the License. You can obtain a copy 15 use File::Copy; 41 unless (ok(copy($testsrc, $plaintext), "Copying $testsrc to $plaintext")) {
|
| /src/sys/arch/epoc32/stand/e32boot/exe/ |
| netbsd.cpp | 98 Mem::Copy(&ehdr, Buffer, sizeof(ehdr)); 101 Mem::Copy(phdr, Buffer + ehdr.e_phoff, PhdrSize);
|
| /src/external/gpl3/gcc/dist/libgcc/ |
| static-object.mk | 9 # Copy c_flags to a rule-specific copy and use the copy, to avoid the
|
| /src/external/gpl3/gcc.old/dist/libgcc/ |
| static-object.mk | 9 # Copy c_flags to a rule-specific copy and use the copy, to avoid the
|
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| ObjCPropertyChecker.cpp | 11 // - Find synthesized properties with copy attribute of mutable NS collection 12 // types. Calling -copy on such collections produces an immutable copy, 43 if (D->isReadOnly() || D->getSetterKind() != ObjCPropertyDecl::Copy) 70 << "' has 'copy' attribute; an immutable object will be stored instead";
|