Home
last modified time | relevance | path

Searched full:interpreted (Results 1 – 25 of 438) sorted by relevance

12345678910>>...18

/llvm-project/clang-tools-extra/test/clang-tidy/checkers/bugprone/
H A Dstring-integer-assignment.cpp35 // CHECK-MESSAGES: :[[@LINE-1]]:7: warning: an integer is interpreted as a character code when assi… in main()
38 // CHECK-MESSAGES: :[[@LINE-1]]:7: warning: an integer is interpreted as a chara in main()
41 // CHECK-MESSAGES: :[[@LINE-1]]:7: warning: an integer is interpreted as a chara in main()
48 // CHECK-MESSAGES: :[[@LINE-1]]:9: warning: an integer is interpreted as a chara in main()
51 // CHECK-MESSAGES: :[[@LINE-1]]:9: warning: an integer is interpreted as a chara in main()
54 // CHECK-MESSAGES: :[[@LINE-1]]:9: warning: an integer is interpreted as a chara in main()
81 // CHECK-MESSAGES: :[[@LINE-1]]:8: warning: an integer is interpreted as a chara in main()
85 // CHECK-MESSAGES: :[[@LINE-1]]:8: warning: an integer is interpreted as a chara in main()
96 // CHECK-MESSAGES: :[[@LINE-1]]:8: warning: an integer is interpreted as a chara in main()
106 // CHECK-MESSAGES: :[[@LINE-1]]:25: warning: an integer is interpreted as a chara
/llvm-project/mlir/include/mlir/Interfaces/
H A DInferIntRangeInterface.h42 /// The minimum value of an integer when it is interpreted as unsigned.
45 /// The maximum value of an integer when it is interpreted as unsigned.
48 /// The minimum value of an integer when it is interpreted as signed.
51 /// The maximum value of an integer when it is interpreted as signed.
70 /// with `isSigned` specifying if the min and max should be interpreted as
/llvm-project/mlir/include/mlir/Dialect/SPIRV/IR/
H A DSPIRVIntegerDotProductOps.td89 interpreted as vectors.
134 interpreted as vectors.
177 interpreted as vectors.
222 interpreted as vectors.
273 interpreted as vectors.
324 interpreted as vectors.
H A DSPIRVGLOps.td134 Result is x if x ≥ 0; otherwise result is -x, where x is interpreted as a
496 Result is y if x < y; otherwise result is x, where x and y are interpreted
519 Result is y if x < y; otherwise result is x, where x and y are interpreted
566 Result is y if y < x; otherwise result is x, where x and y are interpreted
589 Result is y if y < x; otherwise result is x, where x and y are interpreted
660 Result is 1 if x > 0, 0 if x = 0, or -1 if x < 0, where x is interpreted as
805 interpreted as unsigned integers. The resulting value is undefined if
834 interpreted as signed integers. The resulting value is undefined if
/llvm-project/libcxx/test/support/
H A Ddeduction_guides_sfinae_checks.h212 // Note: (iter, iter, BAD_alloc) is interpreted as (iter, iter, comp) in AssociativeContainerDeductionGuidesSfinaeAway()
225 // Note: (init_list, BAD_alloc) is interpreted as (init_list, comp) instead in AssociativeContainerDeductionGuidesSfinaeAway()
262 // Note: (from_range, range, BAD_alloc) is interpreted as (from_range, range, comp) instead. in AssociativeContainerDeductionGuidesSfinaeAway()
356 // Note: (iter, iter, buckets, BAD_alloc) is interpreted as (iter, iter, in UnorderedContainerDeductionGuidesSfinaeAway()
378 // Note: (iter, iter, buckets, hash, BAD_alloc) is interpreted as (iter, iter, in UnorderedContainerDeductionGuidesSfinaeAway()
386 // Note: (init_list, buckets, ALLOC_as_hash) is interpreted as (init_list, in UnorderedContainerDeductionGuidesSfinaeAway()
395 // Note: (init_list, buckets, hash, ALLOC_as_pred) is interpreted as in UnorderedContainerDeductionGuidesSfinaeAway()
415 // Note: (init_list, buckets, BAD_alloc) is interpreted as (init_list, in UnorderedContainerDeductionGuidesSfinaeAway()
484 …// Note: (from_range, range, buckets, BAD_alloc) is interpreted as (from_range, range, buckets, ha… in UnorderedContainerDeductionGuidesSfinaeAway()
508 …// Note: (from_range, range, buckets, hash, BAD_alloc) is interpreted as (from_range, range, bucke… in UnorderedContainerDeductionGuidesSfinaeAway()
/llvm-project/lldb/test/API/lang/c/const_variables/
H A DTestConstVariables.py18 """Test interpreted and JITted expressions on constant values."""
48 # Try an interpreted expression.
/llvm-project/clang/test/Sema/
H A Dtautological-unsigned-char-zero-compare.cc14 …ing@-2 {{comparison of char expression < 0 is always false, since char is interpreted as unsigned}} in f()
29 …ing@-2 {{comparison of char expression < 0 is always false, since char is interpreted as unsigned}} in ref()
/llvm-project/clang/lib/Headers/
H A Damxcomplexintrin.h23 /// element in input tiles \a a and \a b is interpreted as a complex number
67 /// element in input tiles \a a and \a b is interpreted as a complex number
124 /// element in input tiles src0 and src1 is interpreted as a complex number with
147 /// element in input tiles src0 and src1 is interpreted as a complex number with
H A Dammintrin.h37 /// are zero, the length is interpreted as 64.
63 /// length is interpreted as 64. If the sum of the index and length is
97 /// are zero, the length is interpreted as 64.
130 /// [69:64] are zero, the length is interpreted as 64. If the sum of the
/llvm-project/utils/bazel/llvm-project-overlay/mlir/
H A Dtblgen.bzl81 Relative paths are interpreted as relative to the current label's package.
82 Absolute paths are interpreted as relative to the current label's workspace
130 " invocation. Relative paths are interpreted as relative to" +
132 " interpreted as relative to the current label's workspace",
216 " invocation. Relative paths are interpreted as relative to" +
218 " interpreted as relative to the current label's workspace." +
/llvm-project/polly/include/polly/Support/
H A DGICHelper.h29 /// interpreted as unsigned value or as signed value in two's complement
50 /// @param IsSigned If the APInt should be interpreted as signed or unsigned
61 /// interpreted as unsigned value or as signed value in two's complement
82 /// @param IsSigned If the APInt should be interpreted as signed or unsigned
98 /// must always be interpreted as signed two's complement value. The bitwidth of
127 /// must always be interpreted as signed two's complement value. The bitwidth of
/llvm-project/clang/test/Parser/
H A Dcxx0x-lambda-expressions.cpp71 …delete [] { return new int; } (); // expected-error {{'[]' after delete interpreted as 'delete[]'}} in delete_lambda()
74 …delete []() { return new int; }(); // expected-error{{'[]' after delete interpreted as 'delete[]'}} in delete_lambda()
75 …{ return new int((int)Enum); }(e); // expected-error{{'[]' after delete interpreted as 'delete[]'}} in delete_lambda()
77 …delete []<int = 0>() { return new int; }(); // expected-error{{'[]' after delete interpreted as 'd… in delete_lambda()
H A Dobjcxx11-attributes.mm15 // ... but is interpreted as an attribute where possible.
44 int e2(); // expected-warning {{interpreted as a function declaration}} expected-note{{}}
/llvm-project/mlir/include/mlir/Analysis/Presburger/
H A DLinearTransform.h41 // The given vector is interpreted as a row vector v. Post-multiply v with
48 // The given vector is interpreted as a column vector v. Pre-multiply v with
/llvm-project/lldb/bindings/interface/
H A DSBExpressionOptionsDocstrings.i59 %feature("docstring", "Gets whether to JIT an expression if it cannot be interpreted."
62 %feature("docstring", "Sets whether to JIT an expression if it cannot be interpreted."
/llvm-project/clang/test/SemaCXX/
H A Ddecl-expr-ambiguity.cpp32 …T d3(); // expected-warning {{empty parentheses interpreted as a function declaration}} expected-n… in f()
36 …__typeof(*T()) f4(); // expected-warning {{empty parentheses interpreted as a function declaration… in f()
40 …multi2(); // expected-warning {{empty parentheses interpreted as a function declaration}} expected… in f()
/llvm-project/lldb/include/lldb/API/
H A DSBExpressionOptions.h104 // Gets whether we will JIT an expression if it cannot be interpreted
107 // Sets whether we will JIT an expression if it cannot be interpreted
/llvm-project/lldb/source/Expression/
H A DIRInterpreter.cpp876 LLDB_LOGF(log, "Interpreted a %s", inst->getOpcodeName()); in Interpret()
935 LLDB_LOGF(log, "Interpreted an AllocaInst"); in Interpret()
995 LLDB_LOGF(log, "Interpreted a BrInst with a condition"); in Interpret()
1003 LLDB_LOGF(log, "Interpreted a BrInst with no condition"); in Interpret()
1029 LLDB_LOGF(log, "Interpreted a %s", inst->getOpcodeName()); in Interpret()
1088 LLDB_LOGF(log, "Interpreted a GetElementPtrInst"); in Interpret()
1188 LLDB_LOGF(log, "Interpreted an ICmpInst"); in Interpret()
1210 LLDB_LOGF(log, "Interpreted an IntToPtr"); in Interpret()
1231 LLDB_LOGF(log, "Interpreted a PtrToInt"); in Interpret()
1252 LLDB_LOGF(log, "Interpreted in Interpret()
[all...]
/llvm-project/llvm/test/Transforms/MemCpyOpt/
H A Dload-store-to-memcpy.ll9 ; Ensure load-store forwarding of an aggregate is interpreted as
21 ; Ensure load-store forwarding of an aggregate is interpreted as
/llvm-project/llvm/test/tools/llvm-dwarfdump/X86/
H A Ddebug-abbrev.s63 ## interpreted incorrectly as 0x4000.
79 .byte 0x02 ## Invalid children encoding (interpreted as DW_CHILDREN_no).
/llvm-project/clang/include/clang/Rewrite/Core/
H A DHTMLRewrite.h64 /// are translated so that they are not interpreted as HTML tags.
69 /// in 's' are not interpreted as HTML tags. Unlike the version of
/llvm-project/llvm/test/DebugInfo/MIR/X86/
H A Dlive-debug-values-restore-collide.mir4 # interpreted as each other. We place a variable location on the stack, based
6 # this gets interpreted as a stack restore of the spilt value (it's not).
/llvm-project/bolt/test/X86/
H A Djump-table-pic-conflict.s2 ## interpreted as valid last entries of the previous function.
119 ## _start when interpreted with .LJT1 as a base address.
/llvm-project/mlir/include/mlir/Dialect/NVGPU/Utils/
H A DMMAUtils.h96 /// Returns whether the `vector.transfer_read` instruction can be interpreted
102 /// Returns whether the `vector.transfer_write` instruction can be interpreted
/llvm-project/llvm/test/BugPoint/
H A Dcompile-custom.ll.py7 # Currently any print-out from the custom tool is interpreted as a crash

12345678910>>...18