| /src/sys/external/bsd/compiler_rt/dist/lib/xray/tests/unit/ |
| buffer_queue_test.cc | 64 Buf.Generation = Buffers.generation(); 140 ASSERT_NE(B0.Generation, B1.Generation); 142 // We stash the current generation, for use later. 143 auto PrevGen = B1.Generation; 146 // first "generation" would still be accepted in the new generation... 159 // Here we ensure that the generation is different from the previous 160 // generation [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
| R600Subtarget.h | 48 Generation Gen; 82 Generation getGeneration() const {
|
| AMDGPUSubtarget.h | 31 enum Generation {
|
| GCNSubtarget.h | 269 Generation getGeneration() const { 270 return (Generation)Gen; 468 /// \returns If target supports ds_read/write_b128 and user enables generation
|
| SIMemoryLegalizer.cpp | 775 GCNSubtarget::Generation Generation = ST.getGeneration(); 778 if (Generation <= AMDGPUSubtarget::SOUTHERN_ISLANDS) 780 if (Generation < AMDGPUSubtarget::GFX10)
|
| /src/sys/external/bsd/compiler_rt/dist/lib/xray/ |
| xray_buffer_queue.cc | 110 // At this point we increment the generation number to associate the buffers 111 // to the new generation. 112 atomic_fetch_add(&Generation, 1, memory_order_acq_rel); 129 Buf.Generation = generation(); 158 Generation{0} { 180 Buf.Generation = generation(); 191 if (Buf.Generation != generation() || LiveBuffers == 0) [all...] |
| xray_buffer_queue.h | 57 uint64_t Generation{0}; 163 // We use a generation number to identify buffers and which generation they're 165 atomic_uint64_t Generation; 224 /// Initializes the buffer queue, starting a new generation. We can re-set the 237 uint64_t generation() const { function in class:__xray::BufferQueue 238 return atomic_load(&Generation, memory_order_acquire);
|
| xray_fdr_controller.h | 48 return B.Data != nullptr && B.Generation == BQ->generation() && 155 if (B.Generation != BQ->generation()) 172 if (B.Generation != BQ->generation()) 192 if (B.Generation != BQ->generation()) 211 if (B.Generation != BQ->generation()) [all...] |
| xray_fdr_logging.cc | 468 if (TLD.Buffer.Generation != BQ->generation() &&
|
| /src/external/apache2/llvm/dist/clang/include/clang/Serialization/ |
| ModuleFile.h | 112 ModuleFile(ModuleKind Kind, unsigned Generation) 113 : Kind(Kind), Generation(Generation) {} 180 /// The generation of which this module file is a part. 181 unsigned Generation;
|
| ModuleManager.h | 226 /// \param Generation The generation in which this module was loaded. 250 ModuleFile *ImportedBy, unsigned Generation,
|
| /src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
| Module.h | 660 : ImportLocs(std::move(O.ImportLocs)), Generation(O.Generation ? 1 : 0) { 662 ++O.Generation; 666 /// empty and bump the generation on both. 670 ++O.Generation; 671 ++Generation; 675 /// Get the current visibility generation. Incremented each time the 677 unsigned getGeneration() const { return Generation; } 713 /// Visibility generation, bumped every time the visibility state changes. 714 unsigned Generation = 0 [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Basic/Targets/ |
| Sparc.cpp | 64 SparcTargetInfo::CPUGeneration Generation; 120 return Item->Generation; 260 if (Info.Generation == CG_V9)
|
| /src/crypto/external/apache2/openssl/dist/test/recipes/ |
| 20-test_dhparam_check.t | 23 =pod Generation script
|
| 15-test_dsaparam.t | 21 =pod Generation script
|
| /src/crypto/external/bsd/openssl/dist/test/recipes/ |
| 20-test_dhparam_check.t | 23 =pod Generation script
|
| 15-test_dsaparam.t | 19 =pod Generation script
|
| /src/external/apache2/llvm/dist/clang/lib/Serialization/ |
| ModuleManager.cpp | 105 unsigned Generation, 170 auto NewModule = std::make_unique<ModuleFile>(Type, Generation);
|
| ASTReader.cpp | 342 // generation). 2030 if (M.Generation <= PriorGeneration) 2092 // Update the generation for this identifier. 4221 // Bump the generation number. 8143 if (M.Generation <= PriorGeneration) 8204 // Get the selector generation and update it to the current generation. 8205 unsigned &Generation = SelectorGeneration[Sel]; 8206 unsigned PriorGeneration = Generation; 8207 Generation = getGeneration() [all...] |
| ASTReaderDecl.cpp | 2825 /// code generation, e.g., inline function definitions, Objective-C 4355 if (M.Generation <= PreviousGeneration)
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
| EarlyCSE.cpp | 548 /// keep track of a generation count of the read, which is compared against 549 /// the current generation count. The current generation count is incremented 552 /// events (such as fences or atomic instructions) increment the generation 559 unsigned Generation = 0; 564 LoadValue(Instruction *Inst, unsigned Generation, unsigned MatchingId, 566 : DefInst(Inst), Generation(Generation), MatchingId(MatchingId), 580 // addresses) to generation numbers at which that memory location became 593 /// It uses the same generation count as loads [all...] |
| /src/sys/external/bsd/acpica/dist/compiler/ |
| readme.txt | 10 Generation of the ASL compiler from source code requires these items: 29 1a) Notes for Linux/Unix generation 50 1b) Notes for Windows generation
|
| /src/external/apache2/llvm/dist/clang/lib/Basic/ |
| Module.cpp | 639 ++Generation;
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/ |
| ScalarEvolution.h | 2189 /// number. If this number doesn't match the current Generation, we will 2212 unsigned Generation = 0;
|
| /src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| ScalarEvolution.cpp | 13169 if (Entry.second && Generation == Entry.first) 13178 Entry = {Generation, NewSCEV}; 13204 // If the generation number wrapped recompute everything. 13205 if (++Generation == 0) { 13208 II.second = {Generation, SE.rewriteUsingPredicate(Rewritten, &L, Preds)}; 13257 RewriteMap[SE.getSCEV(V)] = {Generation, New}; 13264 Generation(Init.Generation), BackedgeCount(Init.BackedgeCount) {
|