Searched refs:from (Results 1 - 25 of 1313) sorted by relevance

1234567891011>>

/haiku-buildtools/legacy/gcc/libiberty/
H A Dbcmp.c12 int bcmp (char *from, char *to, int count)
33 bcmp (from, to, count)
34 char *from, *to;
41 if (*from++ != *to++)
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/i386/
H A Dpr49002-2.c7 void foo(const __m128d from, __m256d *to) argument
9 *to = _mm256_castpd128_pd256(from);
H A Dpr49002-1.c7 void foo(const __m128d *from, __m256d *to, int s) argument
9 __m256d var = _mm256_castpd128_pd256(from[0]);
10 var = _mm256_insertf128_pd(var, from[s], 1);
H A Dpr39804.c8 __copy_from_user_inatomic(void *to, const void *from, unsigned long n) argument
22 : "m" ((*(struct __large_struct *)(from))), "i" (1), "0" (ret));
/haiku-buildtools/binutils/gas/testsuite/gas/aarch64/
H A Dsystem.s15 .macro all_hints from=0, to=127
16 hint \from
17 .if \to-\from
18 all_hints "(\from+1)", \to
22 all_hints from=0, to=63
23 all_hints from=64, to=127
35 .macro all_barriers op, from=0, to=15
36 \op \from
37 .if \to-\from
38 all_barriers \op, "(\from
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/
H A Dpr44290-1.c5 foo(void *from, void *to) argument
7 asm volatile("dummy"::"r"(from), "r"(to));
17 /* { dg-final { scan-tree-dump "foo \\\(void \\\* from, void \\\* to\\\)" "optimized" } } */
H A Dpr36902.c8 foo(unsigned char * to, const unsigned char * from, int n) argument
13 *to = *from;
16 to[4] = from [4];
39 foo2(unsigned char * to, const unsigned char * from, int n) argument
44 *to = *from;
47 to[4] = from [4]; /* { dg-warning "array subscript is above array bounds" "" { xfail *-*-* } } */
/haiku-buildtools/binutils/gas/testsuite/gas/m68k-coff/
H A Dp2430.s1 # This differs from p2430a.s (the customer's actual source file) only
/haiku-buildtools/legacy/binutils/gas/testsuite/gas/m68k-coff/
H A Dp2430.s1 # This differs from p2430a.s (the customer's actual source file) only
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/forward_list/cons/
H A D11.cc37 A from[2]; local
41 l.assign(from, from+2);
42 l.assign(2, from[0]);
H A D12.cc42 NonCopyAssignable from[2]; local
49 l.assign(from, from+2);
50 l.assign(2, from[0]);
/haiku-buildtools/binutils/bfd/
H A Delf-linux-core.h57 const struct elf_internal_linux_prpsinfo *from,
60 bfd_put_8 (obfd, from->pr_state, &to->pr_state);
61 bfd_put_8 (obfd, from->pr_sname, &to->pr_sname);
62 bfd_put_8 (obfd, from->pr_zomb, &to->pr_zomb);
63 bfd_put_8 (obfd, from->pr_nice, &to->pr_nice);
64 bfd_put_32 (obfd, from->pr_flag, to->pr_flag);
65 bfd_put_16 (obfd, from->pr_uid, to->pr_uid);
66 bfd_put_16 (obfd, from->pr_gid, to->pr_gid);
67 bfd_put_32 (obfd, from->pr_pid, to->pr_pid);
68 bfd_put_32 (obfd, from
56 swap_linux_prpsinfo32_out(bfd *obfd, const struct elf_internal_linux_prpsinfo *from, struct elf_external_linux_prpsinfo32 *to) argument
104 swap_linux_prpsinfo64_out(bfd *obfd, const struct elf_internal_linux_prpsinfo *from, struct elf_external_linux_prpsinfo64 *to) argument
[all...]
/haiku-buildtools/autoconf/man/
H A Difnames.x2 ifnames \- Extract CPP conditionals from a set of files
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/debug/
H A D20000503-1.c3 /* Distilled from GCC's stmt.c. Caused abort in dwarf-1 code. */
9 static struct elims {int from, to;} elim_regs[] = {{ 16, 7}, { 16, 6}, { 20, 7},{ 20, 6}}; member in struct:elims
13 if (elim_regs[i].from == 16 && elim_regs[i].to == 6)
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/compile/
H A D950613-1.c26 float from; local
27 *(long long *) sp = from;
/haiku-buildtools/binutils/gas/testsuite/gas/sparc/
H A Dmism-2.s1 ! Test architecture mismatch warnings from v9b upwards.
/haiku-buildtools/gcc/libsanitizer/sanitizer_common/
H A Dsanitizer_bvgraph.h42 bool addEdge(uptr from, uptr to) { argument
43 check(from, to);
44 return v[from].setBit(to);
48 uptr addEdges(const BV &from, uptr to, uptr added_edges[], argument
51 t1.copyFrom(from);
62 // Returns true if an edge from=>to exist.
64 // and thus can be called from different threads w/o locking.
67 bool hasEdge(uptr from, uptr to) { return v[from].getBit(to); } argument
69 // Returns true if the edge from
70 removeEdge(uptr from, uptr to) argument
85 removeEdgesFrom(const BV &from) argument
98 removeEdgesFrom(uptr from) argument
102 hasEdge(uptr from, uptr to) const argument
109 isReachable(uptr from, const BV &targets) argument
126 findPath(uptr from, const BV &targets, uptr *path, uptr path_size) argument
143 findShortestPath(uptr from, const BV &targets, uptr *path, uptr path_size) argument
[all...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_filebuf/seekpos/
H A D12790-3.cc45 fb.sputc(pod_uchar::from<char>('b'));
46 fb.sputc(pod_uchar::from<char>(0xff));
47 fb.sputc(pod_uchar::from<char>('c'));
48 fb.sputc(pod_uchar::from<char>(0xff));
60 fb.sputc(pod_uchar::from<char>('a'));
61 fb.sputc(pod_uchar::from<char>(0));
62 fb.sputc(pod_uchar::from<char>(0));
63 fb.sputc(pod_uchar::from<char>(0));
64 fb.sputc(pod_uchar::from<char>(0));
71 pod_uchar::from<cha
[all...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/experimental/filesystem/operations/
H A Dcopy_file.cc35 auto from = __gnu_test::nonexistent_path(); local
39 bool b = copy_file(from, to, ec);
45 std::ofstream{from.native()};
46 VERIFY( exists(from) );
47 VERIFY( file_size(from) == 0 );
49 b = copy_file(from, to);
55 b = copy_file(from, to, copy_options::none, ec);
61 std::ofstream{from.native()} << "Hello, filesystem!";
62 VERIFY( file_size(from) != 0 );
65 b = copy_file(from, t
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/
H A Dalloc_comp_bounds_1.f909 integer, parameter :: from = -1, to = 2 variable
19 allocate(ia(from:to))
22 if (any(lbound(ia(from:to)) .ne. 1) .or. any(ubound(ia(from:to)) .ne. 4)) call abort
27 x=struct(ia(from:to))
37 allocate(ia(from:to))
40 if (any(lbound(ia(from:to)) .ne. 1) .or. any(ubound(ia(from:to)) .ne. 4)) call abort
45 x=struct(ia(from:to))
/haiku-buildtools/gcc/libstdc++-v3/src/c++11/
H A Dcodecvt.cc102 read_bom(range<const char>& from, const unsigned char (&bom)[N]) argument
104 if (from.size() >= N && !memcmp(from.next, bom, N))
106 from.next += N;
112 // If consume_header is set in mode update from.next to after any BOM.
114 read_utf8_bom(range<const char>& from, codecvt_mode mode) argument
117 read_bom(from, utf8_bom);
120 // If consume_header is set in mode update from.next to after any BOM.
123 read_utf16_bom(range<const char16_t>& from, codecvt_mode mode) argument
125 if (mode & consume_header && from
142 read_utf8_code_point(range<const char>& from, unsigned long maxcode) argument
284 read_utf16_code_point(range<const char16_t>& from, unsigned long maxcode, codecvt_mode mode) argument
343 ucs4_in(range<const char>& from, range<char32_t>& to, unsigned long maxcode = max_code_point, codecvt_mode mode = {}) argument
361 ucs4_out(range<const char32_t>& from, range<char>& to, unsigned long maxcode = max_code_point, codecvt_mode mode = {}) argument
380 ucs4_in(range<const char16_t>& from, range<char32_t>& to, unsigned long maxcode = max_code_point, codecvt_mode mode = {}) argument
399 ucs4_out(range<const char32_t>& from, range<char16_t>& to, unsigned long maxcode = max_code_point, codecvt_mode mode = {}) argument
419 utf16_in(range<const char>& from, range<C>& to, unsigned long maxcode = max_code_point, codecvt_mode mode = {}) argument
443 utf16_out(range<const C>& from, range<char>& to, unsigned long maxcode = max_code_point, codecvt_mode mode = {}) argument
501 ucs2_in(range<const char>& from, range<char16_t>& to, char32_t maxcode = max_code_point, codecvt_mode mode = {}) argument
509 ucs2_out(range<const char16_t>& from, range<char>& to, char32_t maxcode = max_code_point, codecvt_mode mode = {}) argument
517 ucs2_out(range<const char16_t>& from, range<char16_t>& to, char32_t maxcode = max_code_point, codecvt_mode mode = {}) argument
537 ucs2_in(range<const char16_t>& from, range<char16_t>& to, char32_t maxcode = max_code_point, codecvt_mode mode = {}) argument
[all...]
/haiku-buildtools/binutils/gas/testsuite/gas/arm/
H A Dblx-local-thumb.l2 [^;]*:6: Warning: blx to Thumb func 'foo' from Thumb ISA state changed to b
/haiku-buildtools/binutils/gas/testsuite/gas/mips/
H A Dcfi-n64-1.d1 #as: -march=from-abi -64 -EB
H A Dmacro-warn-2-n32.d1 #as: -march=from-abi -n32 -KPIC
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/torture/
H A Dpr39713.C5 bitwise_cast (From from) argument
12 u.f = from;

Completed in 384 milliseconds

1234567891011>>