HomeSort by relevance Sort by last modified time
    Searched full:requested (Results 1 - 25 of 11551) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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.25/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'
mrs-msr-thumb-v7-m-bad.l 2 [^:]*:5: Error: selected processor does not support requested special purpose register -- `mrs r4,cpsr'
3 [^:]*:6: Error: selected processor does not support requested special purpose register -- `mrs r5,spsr'
8 [^:]*:11: Error: selected processor does not support requested special purpose register -- `msr cpsr_f,r7'
9 [^:]*:12: Error: selected processor does not support requested special purpose register -- `msr spsr,r8'
  /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}}
  /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/chromium-trace/catapult/devil/devil/android/tools/
script_common.py 20 requested = set(requested_devices)
22 missing = requested.difference(available)
26 for d in available.intersection(requested))
  /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))
  /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.
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-scripts/
rgn-at8.d 5 # Test that lma is aligned when lma_region!=region and requested by script.
  /external/iw/
reason.c 33 [36] = "Requested from peer QSTA as the QSTA is leaving the QBSS (or resetting)",
34 [37] = "Requested from peer QSTA as it does not want to use Traffic Stream",
35 [38] = "Requested from peer QSTA as the QSTA received frames indicated Traffic Stream for which it has not set up",
36 [39] = "Requested from peer QSTA due to time out",
37 [40] = "Requested from peer QSTA as the QSTA is leaving the QBSS (or resetting)",
38 [41] = "Requested from peer QSTA as it does not want to receive frames directly from the QSTA",
39 [42] = "Requested from peer QSTA as the QSTA received DLP frames for which it has not set up",
40 [43] = "Requested from peer QSTA as it does not want to use Block Ack",
41 [44] = "Requested from peer QSTA as the QSTA received frames indicated Block Acknowledgement policy for which it has not set up",
42 [45] = "Peer QSTA does not support the requested cipher suite"
    [all...]

Completed in 411 milliseconds

1 2 3 4 5 6 7 8 91011>>