OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:requested
(Results
1 - 25
of
12437
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/e2fsprogs/tests/m_mkfs_overhead/
expect
1
test.img: Cannot create filesystem with
requested
number of inodes while setting up superblock
/external/valgrind/memcheck/tests/
sbfragment.stdout.exp
1
after 3000 loops, last size block
requested
96032008
/toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
msr-reg-bad.l
5
[^:]*:14: Error: selected processor does not support
requested
special purpose register -- `msr CPSR,r9'
6
[^:]*:15: Error: selected processor does not support
requested
special purpose register -- `msr CPSR_s,r9'
7
[^:]*:16: Error: selected processor does not support
requested
special purpose register -- `msr CPSR_f,r9'
8
[^:]*:17: Error: selected processor does not support
requested
special purpose register -- `msr CPSR_c,r9'
9
[^:]*:18: Error: selected processor does not support
requested
special purpose register -- `msr CPSR_x,r9'
10
[^:]*:21: Error: selected processor does not support
requested
special purpose register -- `msr CPSR_fs,r9'
11
[^:]*:22: Error: selected processor does not support
requested
special purpose register -- `msr CPSR_fx,r9'
12
[^:]*:23: Error: selected processor does not support
requested
special purpose register -- `msr CPSR_fc,r9'
13
[^:]*:24: Error: selected processor does not support
requested
special purpose register -- `msr CPSR_sf,r9'
14
[^:]*:25: Error: selected processor does not support
requested
special purpose register -- `msr CPSR_sx,r9
[
all
...]
mrs-msr-arm-v7-a-bad.l
3
[^:]*:6: Error: selected processor does not support
requested
special purpose register -- `mrs r5,iapsr'
4
[^:]*:7: Error: selected processor does not support
requested
special purpose register -- `msr iapsr,r4'
/external/autotest/tko/
parser_lib.py
6
"""Creates a parser instance for the
requested
version.
7
@param version: the
requested
version.
/external/clang/test/SemaTemplate/
recursive-template-instantiation.cpp
5
// expected-note 3{{
requested
here}}
9
f(p); // expected-note{{
requested
here}}
instantiate-default-assignment-operator.cpp
8
struct A { RefPtr<int> a; }; // expected-note {{instantiation of member function 'RefPtr<int>::operator='
requested
here}}
9
struct B : RefPtr<float> { }; // expected-note {{in instantiation of member function 'RefPtr<float>::operator='
requested
here}}
instantiate-decl-dtor.cpp
10
A<int> b = 10; // expected-note {{
requested
here}}
/external/clang/test/SemaCXX/
builtin-assume-aligned-tmpl.cpp
5
a = (int *) __builtin_assume_aligned(a, z + 1); // expected-error {{
requested
alignment is not a power of 2}}
10
test9<42>(a); // expected-note {{in instantiation of function template specialization 'test9<42>'
requested
here}}
20
return test10(a, 42); // expected-note {{in instantiation of function template specialization 'test10<int>'
requested
here}}
24
void *atest() __attribute__((assume_aligned(q))); // expected-error {{
requested
alignment is not a power of 2}}
27
void *atest2() __attribute__((assume_aligned(q, o))); // expected-error {{
requested
alignment is not a power of 2}}
30
atest<31>(); // expected-note {{in instantiation of function template specialization 'atest<31>'
requested
here}}
33
atest2<31, 5>(); // expected-note {{in instantiation of function template specialization 'atest2<31, 5>'
requested
here}}
40
void *p = f<void>(); // expected-note {{in instantiation of function template specialization 'f<void>'
requested
here}}
46
void *p = g<void>(); // expected-note {{in instantiation of function template specialization 'g<void>'
requested
here}}
50
T *atest3() __attribute__((assume_aligned(31, o))); // expected-error {{
requested
alignment is not a power of 2}
[
all
...]
warn-char-subscripts.cpp
18
t1<char>(); // expected-note {{in instantiation of function template specialization 't1<char>'
requested
here}}
19
t2<char>(); // expected-note {{in instantiation of function template specialization 't2<char>'
requested
here}}
/external/nos/host/generic/nugget/include/
avb.h
19
/* The
requested
operation can only be performed by the AP bootloader */
22
/* The
requested
operation can only be performed by the HLOS */
26
* The
requested
operation is not allowed by the spec, for example trying to
/art/test/659-unpadded-array/
info.txt
3
instead of the initially
requested
number of bytes.
/external/clang/test/Sema/
expr-address-of.c
13
add_one(&p->bitf); // expected-error {{address of bit-field
requested
}}
14
add_one(&pvalue.bitf); // expected-error {{address of bit-field
requested
}}
15
add_one(&p->whatever->bitf); // expected-error {{address of bit-field
requested
}}
20
&x[10]; // expected-error {{address of register variable
requested
}}
24
int *x2 = &y; // expected-error {{address of register variable
requested
}}
31
float* r = &q[0]; // expected-error {{address of vector element
requested
}}
37
return &x.w; // expected-error {{address of vector element
requested
}}
52
int *_dummy00 = x0; // fixme-error {{address of register variable
requested
}}
53
int *_dummy01 = &(*x0); // fixme-error {{address of register variable
requested
}}
56
int *_dummy1 = &(*(x1 + 1)); // fixme-error {{address of register variable
requested
}}
[
all
...]
/external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.align/
p5.cpp
3
alignas(1) int n1; // expected-error {{
requested
alignment is less than minimum alignment of 4 for type 'int'}}
14
enum alignas(1) E1 {}; // expected-error {{
requested
alignment is less than minimum alignment of 4 for type 'E1'}}
17
enum alignas(4) E4 { e4 = 1ull << 33 }; // expected-error {{
requested
alignment is less than minimum alignment of 8 for type 'E4'}}
28
struct alignas(2) S2 { // expected-error {{
requested
alignment is less than minimum alignment of 4 for type 'S2'}}
31
struct alignas(2) S3 { // expected-error {{
requested
alignment is less than minimum alignment of 8 for type 'S3'}}
34
struct alignas(2) S4 : S1 { // expected-error {{
requested
alignment is less than minimum alignment of 8 for type 'S4'}}
37
alignas(2) S1 s1; // expected-error {{
requested
alignment is less than minimum alignment of 8 for type 'S1'}}
47
S1 s1 alignas(4); // expected-error {{
requested
alignment is less than minimum alignment of 8 for type 'S1'}}
48
S6 s6 alignas(4); // expected-error {{
requested
alignment is less than minimum alignment of 8 for type 'S6'}}
49
S7 s7 alignas(4); // expected-error {{
requested
alignment is less than minimum alignment of 8 for type 'S7'}
[
all
...]
/external/boringssl/src/crypto/rand_extra/
fuchsia.c
26
void CRYPTO_sysrand(uint8_t *out, size_t
requested
) {
27
while (
requested
> 0) {
29
if (
requested
< output_bytes_this_pass) {
30
output_bytes_this_pass =
requested
;
38
requested
-= bytes_drawn;
windows.c
38
void CRYPTO_sysrand(uint8_t *out, size_t
requested
) {
39
while (
requested
> 0) {
41
if (
requested
< output_bytes_this_pass) {
42
output_bytes_this_pass = (ULONG)
requested
;
47
requested
-= output_bytes_this_pass;
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
p2.cpp
15
// expected-note{{in instantiation of function template specialization 'recurse_until_fail<char [7]>'
requested
here}} \
16
// expected-note{{in instantiation of function template specialization 'recurse_until_fail<double, char [7]>'
requested
here}}
20
recurse_until_fail(1, 3.14159, "string"); // expected-note{{in instantiation of function template specialization 'recurse_until_fail<int, double, char [7]>'
requested
here}}
/external/libmojo/third_party/catapult/devil/devil/android/tools/
script_common.py
19
requested
= set(requested_devices)
21
missing =
requested
.difference(available)
25
for d in available.intersection(
requested
))
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/any/any.nonmembers/any.cast/
reference_types.fail.cpp
30
any_cast<int &>(&a); // expected-note {{
requested
here}}
33
any_cast<int &&>(&a); // expected-note {{
requested
here}}
36
any_cast<int const &>(&a); // expected-note {{
requested
here}}
39
any_cast<int const&&>(&a); // expected-note {{
requested
here}}
44
any_cast<int &>(&a2); // expected-note {{
requested
here}}
47
any_cast<int &&>(&a2); // expected-note {{
requested
here}}
50
any_cast<int const &>(&a2); // expected-note {{
requested
here}}
53
any_cast<int const &&>(&a2); // expected-note {{
requested
here}}
/external/mockftpserver/branches/1.x_Branch/src/main/resources/
ReplyText.properties
30
226=Closing data connection.
Requested
file action successful.
31
226.WithFilename=Closing data connection.
Requested
file action successful. Filename={0}.
34
250=
Requested
file action okay, completed.
38
350=
Requested
file action pending further information.
43
450=
Requested
file action not taken.
45
451=
Requested
action aborted: local error in processing.
46
452=
Requested
action not taken.
56
550=
Requested
action not taken.
58
551=
Requested
action aborted: page type unknown.
59
552=
Requested
file action aborted.
[
all
...]
/external/junit/src/main/java/org/junit/runner/notification/
StoppedByUserException.java
4
* Thrown when a user has
requested
that the test run stop. Writers of
/external/llvm/cmake/modules/
LLVMConfigVersion.cmake.in
4
# and patch versions not less than that
requested
.
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sched_setparam/
11-1.sh
4
# the
requested
priority change until the higher priority process has executed.
/external/tensorflow/tensorflow/core/api_def/base_api/
api_def_DecodeWav.pbtxt
30
Length of audio
requested
.
38
then the last channel will be duplicated to give the
requested
number, else if
39
the input has more channels than
requested
then the additional channels will be
43
to the
requested
length.
/external/tensorflow/tensorflow/tools/api/tests/
API_UPDATE_WARNING.txt
1
Golden file update
requested
!
Completed in 1742 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>