/llvm-project/clang/lib/Headers/ |
H A D | avx512vlbf16intrin.h | 59 /// A 1 means conversion of __A or __B. A 0 means element from __W. 81 /// A 1 means conversion of __A or __B. A 0 means element is zero. 123 /// A 1 means conversion of __A or __B. A 0 means element from __W. 145 /// A 1 means conversion of __A or __B. A 0 means element is zero. 180 /// A 1 means conversion of __A. A 0 means element from __W. 200 /// A 1 means conversion of __A. A 0 means element is zero. 234 /// A 1 means conversion of __A. A 0 means element from __W. 253 /// A 1 means conversion of __A. A 0 means element is zero. 297 /// A 1 means __A and __B's dot product accumulated with __D. A 0 means __D. 321 /// A 1 means __A and __B's dot product accumulated with __D. A 0 means 0. [all …]
|
H A D | avx512bf16intrin.h | 75 /// A 1 means conversion of __A or __B. A 0 means element from __W. 97 /// A 1 means conversion of __A or __B. A 0 means element is zero. 135 /// A 1 means conversion of __A. A 0 means element from __W. 154 /// A 1 means conversion of __A. A 0 means element is zero. 198 /// A 1 means __A and __B's dot product accumulated with __D. A 0 means __D. 222 /// A 1 means __A and __B's dot product accumulated with __D. A 0 means 0.
|
/llvm-project/clang/utils/analyzer/ |
H A D | SATestBenchmark.py | 111 means = old.groupby("project").mean() 112 return _normalize_impl(old, means), _normalize_impl(new, means) 115 def _normalize_impl(data: pd.DataFrame, means: pd.DataFrame): 116 # Right now 'means' has one row corresponding to one project, 120 # 'means' data to match the size of the 'data' dataframe. 123 # new columns coming from 'means' will have "_mean" suffix. 124 joined_data = data.merge(means, on="project", suffixes=("", "_mean"))
|
/llvm-project/flang/docs/ |
H A D | Aliasing.md | 29 storage by means of one dummy argument and read or write that same bit 30 by means of another. 55 When a subprogram modifies storage by means of a particular dummy argument, 79 of storage has been modified must be the only means by which that storage is 99 components, the program cannot access that data by any other means, even 190 its effective argument by means of a local pointer. 246 in which an actual argument's value may have to be transmitted by means 259 Fortran still has no means of declaring a read-only pointer. 330 These attributes can, unlike any other, be scoped in Fortran by means of 336 in a runtime support library by means of threading or explicitly asynchronous
|
H A D | RuntimeTypeInfo.md | 111 Subclause 7.5.2 defines what being the "same" derived type means 141 This means that it may or may not be passed by means of a descriptor. 194 by means of a generic `INTERFACE ASSIGNMENT(=)` and by means of 255 For derived types that are defined in modules and accessed by means
|
H A D | FortranForCProgrammers.md | 57 * The modern language has means for declaring types, data, and subprogram 159 There are means for raw binary I/O and for "formatted" transfers to 161 There are means for random-access I/O using fixed-size records as well as for 209 aliases that have been added to the local scope, as Fortran has no means 247 By default, an interface is a means for specifying prototypes for a 317 This is a means of binding a particular subprogram name to a derived 347 In the original Fortran language, this was the only means for user
|
/llvm-project/clang-tools-extra/clangd/support/ |
H A D | FileCache.h | 50 // Parse(None) means the file doesn't exist. 55 // - time_point::min() means we only do IO if we never read the file before 56 // - time_point::max() means we always at least stat the file 57 // - steady_clock::now() + seconds(1) means we accept 1 second of staleness
|
/llvm-project/libcxx/docs/DesignDocs/ |
H A D | HeaderRemovalPolicy.rst | 30 unnecessary transitive includes in newly supported C++ versions. This means 36 For libc++ developers, this means that any transitive include removal must be 60 done explicitly by software developers. This means they most likely will
|
/llvm-project/libcxx/include/__type_traits/ |
H A D | is_trivially_lexicographically_comparable.h | 36 // This means that bool has to be unsigned and has exactly two values. This means that having anything other than the 42 // compared. This means that when comparing unsigned(129) and unsigned(2)
|
/llvm-project/llvm/include/llvm/Transforms/IPO/ |
H A D | DeadArgumentElimination.h | 97 /// This means that F calls G, and F returns the value returned by G. 99 /// This means that some function calls G and passes its result as an 102 /// This means that F returns one of its own arguments. 104 /// This means that G calls F and passes one of its own (G's) arguments
|
/llvm-project/flang/include/flang/Lower/ |
H A D | CustomIntrinsicCall.h | 56 /// preparation was done. An absent optional means the argument is statically 57 /// present. An mlir::Value means the presence must be checked at runtime, and 64 /// verified. This means the getter callback can dereference the argument 74 /// It is up to the caller to decide what argument preparation means,
|
/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
H A D | AppleObjCTypeEncodingParser.cpp | 104 // so we just set a flag that means "Don't actually build anything." in BuildAggregate() 185 // of the next field and @ means "id". This is the case if anything in BuildObjCObjectPointerType() 190 // - @"NSString"@ means "id, followed by a field named NSString of type id" in BuildObjCObjectPointerType() 191 // - @"NSString"} means "a pointer to NSString and the end of the struct" - in BuildObjCObjectPointerType() 192 // @"NSString""nextField" means "a pointer to NSString and a field named in BuildObjCObjectPointerType() 193 // nextField" - @"NSString" followed by the end of the string means "a in BuildObjCObjectPointerType()
|
/llvm-project/compiler-rt/lib/xray/ |
H A D | xray_trampoline_arm.S | 31 @ r1=0 means that we are tracing an entry event 63 @ 1 means that we are tracing an exit event 94 @ r1=2 means that we are tracing a tail exit event
|
/llvm-project/llvm/docs/ |
H A D | InAlloca.rst | 107 slots. This means we have to support multiple live argument 122 slots. That means we need to have more than one set of argument frames 135 the memory used to pass their arguments. In some sense, this means that 147 leak. This means the cleanup of the stack memory cannot be tied to the
|
/llvm-project/openmp/runtime/test/tasking/hidden_helper_task/ |
H A D | issue-87117.c | 5 // KMP_HOT_TEAMS_MODE=0 means free extra threads after parallel 7 // KMP_HOT_TEAMS_MAX_LEVEL=1 means only the initial outer team
|
/llvm-project/clang-tools-extra/docs/clang-tidy/checks/performance/ |
H A D | implicit-conversion-in-loop.rst | 8 iterator. This means that an implicit conversion happens, which can for example 17 // The iterator type is in fact pair<const int, vector<string>>, which means
|
/llvm-project/clang/test/CodeGen/ |
H A D | pgo-force-function-attrs.ll | 2 ; Check that no profile means no optsize 4 ; Check that no -pgo-cold-func-opt=optsize means no optsize
|
/llvm-project/llvm/test/Transforms/InstSimplify/ |
H A D | constantfold-add-nuw-allones-to-allones.ll | 5 ; nuw means no unsigned wrap, from -1 to 0. 13 ; nuw here means that %x can only be 0 22 ; nuw here means that %x can only be 0 31 ; nuw here means that %x can only be 0
|
/llvm-project/llvm/test/Transforms/LoopVectorize/SystemZ/ |
H A D | mem-interleaving-costs-02.ll | 9 ; of 4. At VF=4, memory interleaving means loading 4 * 4 * 16 bits = 2 vector 48 ; This loop loads one i8 value in a stride of 3. At VF=16, this means loading 75 ; 32. At VF=2, this means loading 2 vector registers, and using 4 vperms to 113 ; 30. At VF=2, this means loading 3 vector registers, and using 4 vperms to
|
/llvm-project/lldb/docs/resources/ |
H A D | projects.rst | 70 method means you have to realize all the types and locations of all local 174 complete the step-over rather than having to manually step out. But that means 190 more importantly means they can't take advantage of auto-generated help and 206 lldb_private API's. That generally means that there's code that gets duplicated 238 You can't implement any of the actual lldb Plugins as plugins. That means 253 also means that no-stop debugging must either stop all threads briefly to handle 306 it means that if I want to test five different expressions, I can either do it 307 in one test, which is good because it means I only have to fire up one process, 308 attach to it, and get it to a certain point. But it also means if the first
|
/llvm-project/compiler-rt/lib/gwp_asan/ |
H A D | options.inc | 54 "Install GWP-ASan's signal handler in recoverable mode. This means that " 58 "occupy a slot in the pool. The recoverable mode also means that " 73 // are parsed by libc during the dynamic loader). This means that GWP-ASan
|
/llvm-project/libcxx/benchmarks/ |
H A D | lexicographical_compare_three_way.bench.cpp |
|
/llvm-project/clang/docs/ |
H A D | BoundsSafetyImplPlans.rst | 48 sugars means two types with incompatible external bounds annotations may be 61 This means parsing the argument of bounds annotations must be done after the 77 being performed before dereferencing the wide pointer. This means mapping the 97 variables. This means the parser may first create the pointer type without any 235 ``-fbounds-safety`` does not currently support C++. This means LLDB’s expression
|
/llvm-project/libclc/generic/lib/math/ |
H A D | clc_powr.cl | 190 // inty = 0 means not an integer. 191 // inty = 1 means odd integer. 192 // inty = 2 means even integer. 349 // inty = 0 means not an integer. 350 // inty = 1 means odd integer. 351 // inty = 2 means even integer.
|
H A D | clc_rootn.cl | 198 // inty = 0 means not an integer. 199 // inty = 1 means odd integer. 200 // inty = 2 means even integer. 354 // inty = 0 means not an integer. 355 // inty = 1 means odd integer. 356 // inty = 2 means even integer.
|