| /llvm-project-15.0.7/libc/src/__support/File/ |
| H A D | linux_file.cpp | 55 auto *lf = reinterpret_cast<LinuxFile *>(f); in write_func() local 56 long ret = __llvm_libc::syscall(SYS_write, lf->get_fd(), data, size); in write_func() 65 auto *lf = reinterpret_cast<LinuxFile *>(f); in read_func() local 66 long ret = __llvm_libc::syscall(SYS_read, lf->get_fd(), buf, size); in read_func() 75 auto *lf = reinterpret_cast<LinuxFile *>(f); in seek_func() local 77 long ret = __llvm_libc::syscall(SYS_lseek, lf->get_fd(), offset, whence); in seek_func() 80 long ret = __llvm_libc::syscall(SYS__lseek, lf->get_fd(), offset >> 32, in seek_func() 94 auto *lf = reinterpret_cast<LinuxFile *>(f); in close_func() local 95 long ret = __llvm_libc::syscall(SYS_close, lf->get_fd()); in close_func() 104 auto *lf = reinterpret_cast<LinuxFile *>(f); in flush_func() local [all …]
|
| /llvm-project-15.0.7/clang/test/Frontend/ |
| H A D | fixed_point_shift.c | 11 long _Fract lf; variable 110 lf = lf << i; in sleft_lflfi() 314 lf = lf >> i; in sright_lflfi()
|
| H A D | fixed_point_add.c | 14 long _Fract lf; variable 115 a = a + lf; in sadd_aalf() 401 lf = lf + ui; in int_lflfui()
|
| H A D | fixed_point_sub.c | 14 long _Fract lf; variable 115 a = a - lf; in ssub_aalf() 401 lf = lf - ui; in int_lflfui()
|
| H A D | fixed_point_div.c | 14 long _Fract lf; variable 115 a = a / lf; in sdiv_aalf() 441 lf = lf / ui; in int_lflfui()
|
| H A D | fixed_point_mul.c | 14 long _Fract lf; variable 115 a = a * lf; in smul_aalf() 441 lf = lf * ui; in int_lflfui()
|
| H A D | fixed_point_conversions_half.c | 6 long _Fract lf; variable 48 lf = h; in half_fix2() 240 h = lf; in fix_half2()
|
| H A D | fixed_point_unary.c | 7 long _Fract lf; variable 51 lf++; in inc_lf() 232 lf--; in dec_lf()
|
| H A D | fixed_point_conversions.c | 15 long _Fract lf; variable 761 lf = fl; in float_fix5() 862 fl = lf; in fix_float5()
|
| /llvm-project-15.0.7/clang/test/CodeGenCXX/ |
| H A D | ibm128-declarations.cpp | 69 __ibm128 lf; in main() local 70 CTest ct(lf); in main() 72 __ibm128 lfi = tf.mem2 + func1(lf) - CTest::func3(lf); in main()
|
| /llvm-project-15.0.7/flang/include/flang/Parser/ |
| H A D | parse-state.h | 148 void Nonstandard(LanguageFeature lf, const MessageFixedText &msg) { in Nonstandard() argument 149 Nonstandard(p_, lf, msg); in Nonstandard() 152 CharBlock range, LanguageFeature lf, const MessageFixedText &msg) { in Nonstandard() argument 154 if (userState_ && userState_->features().ShouldWarn(lf)) { in Nonstandard() 158 bool IsNonstandardOk(LanguageFeature lf, const MessageFixedText &msg) { in IsNonstandardOk() argument 159 if (userState_ && !userState_->features().IsEnabled(lf)) { in IsNonstandardOk() 162 Nonstandard(lf, msg); in IsNonstandardOk()
|
| /llvm-project-15.0.7/clang/test/OpenMP/ |
| H A D | nvptx_asm_delayed_diags.c | 23 : [ lf ] "mx"(0), [ li ] "mr"(0), [ xx ] "x"((double)(0))); in bar() 38 : [ lf ] "mx"(0), [ li ] "mr"(0), [ xx ] "x"((double)(0))); in foo() 53 : [ lf ] "mx"(0), [ li ] "mr"(0), [ xx ] "x"((double)(0))); in t1()
|
| /llvm-project-15.0.7/llvm/ |
| H A D | .gitattributes | 25 test/tools/llvm-strings/radix.test text eol=lf 26 test/tools/split-file/basic.test text eol=lf 27 test/tools/split-file/Inputs/basic-*.txt eol=lf
|
| /llvm-project-15.0.7/clang/test/FixIt/ |
| H A D | format.m | 11 …printf("%lf", x); // expected-warning{{format specifies type 'double' but the argument has type 'i… 17 …NSLog(@"%lf", x); // expected-warning{{format specifies type 'double' but the argument has type 'i… 27 …printf("%lf", x); // expected-warning{{format specifies type 'double' but the argument has type 'c… 33 …NSLog(@"%lf", x); // expected-warning{{format specifies type 'double' but the argument has type 'c… 43 …NSLog(@"%lf", x); // expected-warning{{format specifies type 'double' but the argument has type 'i… 54 …NSLog(@"%lf", x); // expected-warning{{format specifies type 'double' but the argument has type 'C… 65 …NSLog(@"%lf", x); // expected-warning{{format specifies type 'double' but the argument has type 'b… 75 …NSLog(@"%lf", x); // expected-warning{{format specifies type 'double' but the argument has type 'C… 102 …NSLog(@"%lf", c); // expected-warning{{format specifies type 'double' but the argument has type 'c… 154 …NSLog(@"%lf", 'a'); // expected-warning{{format specifies type 'double' but the argument has type … [all …]
|
| H A D | format-no-fixit.m | 14 …printf("%lf", x); // expected-warning{{format specifies type 'double' but the argument has type 'i… 28 …NSLog(@"%lf", x); // expected-warning{{format specifies type 'double' but the argument has type 'C…
|
| /llvm-project-15.0.7/compiler-rt/lib/asan/ |
| H A D | asan_flags.cpp | 73 __lsan::Flags *lf = __lsan::flags(); in InitializeFlags() local 74 lf->SetDefaults(); in InitializeFlags() 77 __lsan::RegisterLsanFlags(&lsan_parser, lf); in InitializeFlags()
|
| /llvm-project-15.0.7/polly/ |
| H A D | .gitattributes | 2 * text eol=lf
|
| /llvm-project-15.0.7/llvm/test/CodeGen/AArch64/ |
| H A D | arm64-2012-06-06-FPToUI.ll | 4 @.str = private unnamed_addr constant [9 x i8] c"%lf %lu\0A\00", align 1 5 @.str1 = private unnamed_addr constant [8 x i8] c"%lf %u\0A\00", align 1
|
| /llvm-project-15.0.7/llvm/test/CodeGen/Mips/ |
| H A D | micromips-b-range.ll | 66 br i1 %2, label %la, label %lf 86 lf:
|
| /llvm-project-15.0.7/clang/test/SemaCUDA/ |
| H A D | asm_delayed_diags.cu | 19 : [ lf ] "mx"(0), [ li ] "mr"(0), [ xx ] "x"((double)(0))); in t1()
|
| /llvm-project-15.0.7/clang/test/Analysis/ |
| H A D | stack-addr-ps.cpp | 77 void *lf() { in lf() function
|
| /llvm-project-15.0.7/llvm/test/Bindings/OCaml/ |
| H A D | core.ml | 563 let lf s x = s ^ "->" ^ value_name x in 564 insist ("->One->Two" = fold_left_globals lf "" m); 590 let lf s u = value_name (user u) ^ "->" ^ s in 591 insist ("v2->v3->" = fold_left_uses lf "" v1); 595 let lf s u = value_name (used_value u) ^ "->" ^ s in 596 insist ("v1->v1->" = fold_left_uses lf "" v1); 727 let lf s x = s ^ "->" ^ value_name x in 763 let lf s x = s ^ "->" ^ value_name x in 764 insist ("->One->Two" = fold_left_params lf "" f); 838 insist ("->One->Two" = fold_left_blocks lf "" f); [all …]
|
| /llvm-project-15.0.7/lld/test/ELF/ |
| H A D | emit-relocs-mergeable-i386.s | 6 ## Check lf we produce proper relocations when doing merging of SHF_MERGE sections.
|
| /llvm-project-15.0.7/lldb/third_party/Python/module/pexpect-4.6/pexpect/ |
| H A D | screen.py | 176 def lf (self): member in screen 192 self.lf ()
|
| /llvm-project-15.0.7/clang/test/CodeGen/ |
| H A D | asm.c | 60 …__asm__("PR3908 %[lf] %[xx] %[li] %[r]" : [r] "+r" (r) : [lf] "mx" (0), [li] "mr" (0), [xx] "x" ((… in t10()
|