Searched refs:from (Results 176 - 200 of 2750) sorted by relevance

1234567891011>>

/external/strace/tests-m32/
H A Dgen_pure_executables.sh15 # derived from this software without specific prior written permission.
33 Generate pure_executables.am from <input> list.
34 Deduce output file from <input> unless an <output> is specified.
47 echo "# Generated by $0 from $input; do not edit."
H A Dpipe_maxfd.c14 * derived from this software without specific prior written permission.
34 move_fd(int *from, int *to) argument
36 for (; *to > *from; --*to) {
37 if (dup2(*from, *to) != *to)
39 close(*from);
40 *from = *to;
/external/strace/tests-mx32/
H A Dgen_pure_executables.sh15 # derived from this software without specific prior written permission.
33 Generate pure_executables.am from <input> list.
34 Deduce output file from <input> unless an <output> is specified.
47 echo "# Generated by $0 from $input; do not edit."
H A Dpipe_maxfd.c14 * derived from this software without specific prior written permission.
34 move_fd(int *from, int *to) argument
36 for (; *to > *from; --*to) {
37 if (dup2(*from, *to) != *to)
39 close(*from);
40 *from = *to;
/external/valgrind/gdbserver_tests/
H A Dmcmain_pic.stderrB.exp2 vgdb-error value changed from 0 to 999999
H A Dnlpasssigalrm.stderrB.exp2 vgdb-error value changed from 0 to 999999
/external/valgrind/memcheck/tests/amd64-solaris/
H A Dcontext_rflags.stdout.exp3 Values after the return from the signal handler:
/external/valgrind/memcheck/tests/x86-solaris/
H A Dcontext_eflags.stdout.exp3 Values after the return from the signal handler:
/external/eigen/Eigen/src/Core/arch/CUDA/
H A DPacketMath.h88 template<> EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE float4 pset1<float4>(const float& from) { argument
89 return make_float4(from, from, from, from);
91 template<> EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE double2 pset1<double2>(const double& from) { argument
92 return make_double2(from, from);
155 template<> EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE float4 pload<float4>(const float* from) { argument
156 return *reinterpret_cast<const float4*>(from);
159 pload(const double* from) argument
163 ploadu(const float* from) argument
166 ploadu(const double* from) argument
170 ploaddup(const float* from) argument
173 ploaddup(const double* from) argument
177 pstore(float* to, const float4& from) argument
181 pstore(double* to, const double2& from) argument
185 pstoreu(float* to, const float4& from) argument
192 pstoreu(double* to, const double2& from) argument
198 ploadt_ro(const float* from) argument
206 ploadt_ro(const double* from) argument
215 ploadt_ro(const float* from) argument
223 ploadt_ro(const double* from) argument
231 pgather(const float* from, Index stride) argument
235 pgather(const double* from, Index stride) argument
239 pscatter(float* to, const float4& from, Index stride) argument
245 pscatter(double* to, const double2& from, Index stride) argument
[all...]
/external/libcxx/test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/
H A Dchar16_t_in.pass.cpp15 // const externT* from, const externT* from_end, const externT*& from_next,
28 const char from[] = "some text"; local
34 assert(f.in(mbs, from, from + 9, from_next,
36 assert(from_next - from == 9);
39 assert(to[i] == from[i]);
H A Dchar16_t_out.pass.cpp15 // const internT* from, const internT* from_end, const internT*& from_next,
32 F::intern_type from[9] = {'s', 'o', 'm', 'e', ' ', 't', 'e', 'x', 't'}; local
37 F::result r = f.out(mbs, from, from + 9, from_next,
40 assert(from_next - from == 9);
43 assert(to[i] == from[i]);
H A Dchar32_t_in.pass.cpp15 // const externT* from, const externT* from_end, const externT*& from_next,
28 const char from[] = "some text"; local
34 assert(f.in(mbs, from, from + 9, from_next,
36 assert(from_next - from == 9);
39 assert(to[i] == static_cast<char32_t>(from[i]));
H A Dchar32_t_out.pass.cpp15 // const internT* from, const internT* from_end, const internT*& from_next,
32 F::intern_type from[9] = {'s', 'o', 'm', 'e', ' ', 't', 'e', 'x', 't'}; local
37 F::result r = f.out(mbs, from, from + 9, from_next,
40 assert(from_next - from == 9);
43 assert(static_cast<char32_t>(to[i]) == from[i]);
/external/strace/tests/
H A Dpipe_maxfd.c14 * derived from this software without specific prior written permission.
34 move_fd(int *from, int *to) argument
36 for (; *to > *from; --*to) {
37 if (dup2(*from, *to) != *to)
39 close(*from);
40 *from = *to;
/external/tensorflow/tensorflow/compiler/tf2xla/
H A Dstr_util.cc25 static void ReplaceAll(string* text, StringPiece from, StringPiece to) { argument
27 while ((pos = text->find(from.data(), pos, from.size())) != string::npos) {
28 text->replace(pos, from.size(), to.data(), to.size());
30 if (from.empty()) {
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
H A DShadowImageDecoder.java26 ClassParameter.from(long.class, 1),
27 ClassParameter.from(int.class, 10),
28 ClassParameter.from(int.class, 10),
29 ClassParameter.from(boolean.class, false),
30 ClassParameter.from(boolean.class, false));
40 ClassParameter.from(long.class, 1),
41 ClassParameter.from(int.class, width),
42 ClassParameter.from(int.class, height),
43 ClassParameter.from(boolean.class, false),
44 ClassParameter.from(boolea
[all...]
H A DShadowActivity.java104 ReflectionHelpers.ClassParameter.from(Context.class, baseContext),
105 ReflectionHelpers.ClassParameter.from(ActivityThread.class, RuntimeEnvironment.getActivityThread()),
106 ReflectionHelpers.ClassParameter.from(Instrumentation.class, new Instrumentation()),
107 ReflectionHelpers.ClassParameter.from(IBinder.class, null),
108 ReflectionHelpers.ClassParameter.from(int.class, 0),
109 ReflectionHelpers.ClassParameter.from(Application.class, application),
110 ReflectionHelpers.ClassParameter.from(Intent.class, intent),
111 ReflectionHelpers.ClassParameter.from(ActivityInfo.class, activityInfo),
112 ReflectionHelpers.ClassParameter.from(CharSequence.class, activityTitle),
113 ReflectionHelpers.ClassParameter.from(Activit
[all...]
H A DShadowDatePickerDialog.java34 ClassParameter.from(Context.class, context),
35 ClassParameter.from(int.class, theme),
36 ClassParameter.from(DatePickerDialog.OnDateSetListener.class, callBack),
37 ClassParameter.from(int.class, year),
38 ClassParameter.from(int.class, monthOfYear),
39 ClassParameter.from(int.class, dayOfMonth));
52 ClassParameter.from(Context.class, context),
53 ClassParameter.from(int.class, theme),
54 ClassParameter.from(DatePickerDialog.OnDateSetListener.class, callBack),
55 ClassParameter.from(Calenda
[all...]
/external/libxkbcommon/xkbcommon/build-aux/
H A Dylwrap128 # during the conversion from y.tab.c to parse.c.
140 from=$1
143 case $from in
144 "y.tab.c") from=y_tab.c;;
145 "y.tab.h") from=y_tab.h;;
151 sed_fix_filenames="${sed_fix_filenames}s|"`quote_for_sed "$from"`"|$to|g;"
152 sed_fix_header_guards="${sed_fix_header_guards}s|"`guard "$from"`"|"`guard "$to"`"|g;"
181 for from in *
183 to=`printf '%s\n' "$from" | sed "$sed_fix_filenames"`
184 if test -f "$from"; the
[all...]
/external/clang/test/OpenMP/
H A Dtarget_update_if_messages.cpp16 #pragma omp target update from(n) if ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
18 #pragma omp target update from(n) if (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
20 #pragma omp target update from(n) if (argc > 0 ? argv[1] : argv[2])
22 #pragma omp target update from(n) if (S) // expected-error {{'S' does not refer to a value}}
24 #pragma omp target update from(n) if (argc argc) // expected-error {{expected ')'}} expected-note {{to match this '('}}
26 #pragma omp target update from(n) if(target update // expected-warning {{missing ':' after directive name modifier - ignoring}} expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
28 #pragma omp target update from(n) if(target update : argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
30 #pragma omp target update from(n) if(target update : argc) if (for:argc) // expected-error {{directive name modifier 'for' is not allowed for '#pragma omp target update'}}
32 #pragma omp target update from(n) if(target update : argc) if (argc) // expected-error {{no more 'if' clause is allowed}} expected-note {{previous clause with directive name modifier specified here}}
39 #pragma omp target update from(
[all...]
H A Dtarget_exit_data_ast_print.cpp14 #pragma omp target exit data map(from: i)
16 #pragma omp target exit data map(from: i) if (target exit data: j > 0)
18 #pragma omp target exit data map(from: i) if (b)
20 #pragma omp target exit data map(from: c)
22 #pragma omp target exit data map(from: c) if(b>e)
30 #pragma omp target exit data map(from: c) map(release: d)
34 #pragma omp target exit data nowait map(from: i)
36 #pragma omp target exit data nowait map(from: i) if (target exit data: j > 0)
38 #pragma omp target exit data map(from: i) if (b) nowait
40 #pragma omp target exit data map(from
[all...]
/external/robolectric-shadows/robolectric/src/main/java/org/robolectric/internal/
H A DGradleManifestFactory.java34 if (FileFsFile.from(buildOutputDir, "data-binding-layout-out").exists()) {
37 res = FileFsFile.from(buildOutputDir, "data-binding-layout-out", flavor, type);
38 } else if (FileFsFile.from(buildOutputDir, "res", "merged").exists()) {
40 res = FileFsFile.from(buildOutputDir, "res", "merged", flavor, type);
41 } else if (FileFsFile.from(buildOutputDir, "res").exists()) {
42 res = FileFsFile.from(buildOutputDir, "res", flavor, type);
44 res = FileFsFile.from(buildOutputDir, "bundles", flavor, type, "res");
48 && FileFsFile.from(buildOutputDir, config.assetDir()).exists()) {
49 assets = FileFsFile.from(buildOutputDir, config.assetDir());
50 } else if (FileFsFile.from(buildOutputDi
[all...]
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/internal/
H A DMavenManifestFactoryTest.java28 .isEqualTo(FileFsFile.from(":fakefs:path/to/DifferentManifest.xml"));
30 .isEqualTo(FileFsFile.from(":fakefs:path/to/res"));
38 .isEqualTo(FileFsFile.from(":fakefs:path/to/DifferentManifest.xml"));
40 .isEqualTo(FileFsFile.from(":fakefs:path/to/res"));
48 .isEqualTo(FileFsFile.from(":fakefs:path/to/../DifferentManifest.xml"));
50 .isEqualTo(FileFsFile.from(":fakefs:path/to/../res"));
56 return FileFsFile.from(":fakefs:path/to");
/external/tensorflow/tensorflow/stream_executor/
H A Dkernel.cc60 KernelBase::KernelBase(KernelBase &&from) argument
61 : parent_(from.parent_),
62 implementation_(std::move(from.implementation_)),
63 name_(std::move(from.name_)),
64 demangled_name_(std::move(from.demangled_name_)),
65 metadata_(from.metadata_) {
66 from.parent_ = nullptr;
/external/apache-http/src/org/apache/commons/codec/net/
H A DRFC1522Codec.java110 int from = 2;
111 int to = text.indexOf("?", from);
115 String charset = text.substring(from, to);
119 from = to + 1;
120 to = text.indexOf("?", from);
124 String encoding = text.substring(from, to);
129 from = to + 1;
130 to = text.indexOf("?", from);
131 byte[] data = text.substring(from, to).getBytes(StringEncodings.US_ASCII);

Completed in 554 milliseconds

1234567891011>>