Home
last modified time | relevance | path

Searched full:needed (Results 1 – 25 of 17845) sorted by relevance

12345678910>>...714

/aosp_15_r20/external/sdv/vsomeip/third_party/boost/numeric/ublas/include/boost/numeric/ublas/
Dblas.hpp30 * \tparam V type of the vector (not needed by default)
43 * \tparam V type of the vector (not needed by default)
56 * \tparam V type of the vector (not needed by default)
70 * \tparam V1 type of first vector (not needed by default)
71 * \tparam V2 type of second vector (not needed by default)
85 * \tparam V1 type of first vector (not needed by default)
86 * \tparam V2 type of second vector (not needed by default)
99 * \tparam V1 type of first vector (not needed by default)
100 * \tparam V2 type of second vector (not needed by default)
114 * \tparam V type of the vector (not needed by default)
[all …]
/aosp_15_r20/out/soong/.intermediates/packages/modules/Permission/service/statslog-service-permission-java-gen/gen/com/android/permission/
DPermissionStatsLog.java1094 int needed = LIST_TYPE_OVERHEAD + LONG_TYPE_SIZE + INT_TYPE_SIZE; in write() local
1095 needed += INT_TYPE_SIZE; in write()
1096 if (needed > MAX_EVENT_PAYLOAD) { in write()
1099 byte[] buff = new byte[needed]; in write()
1119 int needed = LIST_TYPE_OVERHEAD + LONG_TYPE_SIZE + INT_TYPE_SIZE; in write() local
1120 needed += INT_TYPE_SIZE; in write()
1121 needed += INT_TYPE_SIZE; in write()
1122 if (needed > MAX_EVENT_PAYLOAD) { in write()
1125 byte[] buff = new byte[needed]; in write()
1148 int needed = LIST_TYPE_OVERHEAD + LONG_TYPE_SIZE + INT_TYPE_SIZE; in write() local
[all …]
/aosp_15_r20/external/elfutils/libcpu/
H A Di386_data.h402 int needed; in FCT_MOD$R_M() local
404 needed = snprintf (buf, avail, "%%%s", dregs[byte]); in FCT_MOD$R_M()
406 needed = snprintf (buf, avail, "%%mm%" PRIxFAST8, byte); in FCT_MOD$R_M()
407 if ((size_t) needed > avail) in FCT_MOD$R_M()
408 return needed - avail; in FCT_MOD$R_M()
409 *bufcntp += needed; in FCT_MOD$R_M()
431 int needed = snprintf (&d->bufp[*bufcntp], avail, "%%xmm%" PRIxFAST8, in FCT_Mod$R_m() local
433 if ((size_t) needed > avail) in FCT_Mod$R_m()
434 return needed - avail; in FCT_Mod$R_m()
435 *d->bufcntp += needed; in FCT_Mod$R_m()
[all …]
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/nom-7.1.3/src/number/
H A Dstreaming.rs19 /// # use nom::{Err, error::ErrorKind, Needed};
27 /// assert_eq!(parser(&b""[..]), Err(Err::Incomplete(Needed::new(1))));
36 Err(Err::Incomplete(Needed::new(1))) in be_u8()
49 /// # use nom::{Err, error::ErrorKind, Needed};
57 /// assert_eq!(parser(&b"\x01"[..]), Err(Err::Incomplete(Needed::new(1))));
66 Err(Err::Incomplete(Needed::new(bound - input.input_len()))) in be_u16()
82 /// # use nom::{Err, error::ErrorKind, Needed};
90 /// assert_eq!(parser(&b"\x01"[..]), Err(Err::Incomplete(Needed::new(2))));
99 Err(Err::Incomplete(Needed::new(bound - input.input_len()))) in be_u24()
115 /// # use nom::{Err, error::ErrorKind, Needed};
[all …]
H A Dcomplete.rs20 /// # use nom::{Err, error::ErrorKind, Needed};
21 /// # use nom::Needed::Size;
50 /// # use nom::{Err, error::ErrorKind, Needed};
51 /// # use nom::Needed::Size;
83 /// # use nom::{Err, error::ErrorKind, Needed};
84 /// # use nom::Needed::Size;
116 /// # use nom::{Err, error::ErrorKind, Needed};
117 /// # use nom::Needed::Size;
149 /// # use nom::{Err, error::ErrorKind, Needed};
150 /// # use nom::Needed::Size;
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/nom/src/number/
Dstreaming.rs19 /// # use nom::{Err, error::ErrorKind, Needed};
27 /// assert_eq!(parser(&b""[..]), Err(Err::Incomplete(Needed::new(1))));
36 Err(Err::Incomplete(Needed::new(1))) in be_u8()
49 /// # use nom::{Err, error::ErrorKind, Needed};
57 /// assert_eq!(parser(&b"\x01"[..]), Err(Err::Incomplete(Needed::new(1))));
66 Err(Err::Incomplete(Needed::new(bound - input.input_len()))) in be_u16()
82 /// # use nom::{Err, error::ErrorKind, Needed};
90 /// assert_eq!(parser(&b"\x01"[..]), Err(Err::Incomplete(Needed::new(2))));
99 Err(Err::Incomplete(Needed::new(bound - input.input_len()))) in be_u24()
115 /// # use nom::{Err, error::ErrorKind, Needed};
[all …]
Dcomplete.rs20 /// # use nom::{Err, error::ErrorKind, Needed};
21 /// # use nom::Needed::Size;
50 /// # use nom::{Err, error::ErrorKind, Needed};
51 /// # use nom::Needed::Size;
83 /// # use nom::{Err, error::ErrorKind, Needed};
84 /// # use nom::Needed::Size;
116 /// # use nom::{Err, error::ErrorKind, Needed};
117 /// # use nom::Needed::Size;
149 /// # use nom::{Err, error::ErrorKind, Needed};
150 /// # use nom::Needed::Size;
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/winnow/src/binary/
Dmod.rs14 use crate::error::Needed;
44 /// # use winnow::{error::ErrMode, error::ErrorKind, error::InputError, error::Needed};
46 /// # use winnow::error::Needed::Size;
58 /// # use winnow::{error::ErrMode, error::ErrorKind, error::InputError, error::Needed};
68 /// assert_eq!(parser(Partial::new(&b""[..])), Err(ErrMode::Incomplete(Needed::new(1))));
88 /// # use winnow::{error::ErrMode, error::ErrorKind, error::InputError, error::Needed};
90 /// # use winnow::error::Needed::Size;
102 /// # use winnow::{error::ErrMode, error::ErrorKind, error::InputError, error::Needed};
112 /// assert_eq!(parser(Partial::new(&b"\x01"[..])), Err(ErrMode::Incomplete(Needed::new(1))));
133 /// # use winnow::{error::ErrMode, error::ErrorKind, error::InputError, error::Needed};
[all …]
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/nom-7.1.3/src/bytes/
H A Dstreaming.rs5 use crate::internal::{Err, IResult, Needed, Parser};
19 /// # use nom::{Err, error::{Error, ErrorKind}, Needed, IResult};
29 /// assert_eq!(parser("H"), Err(Err::Incomplete(Needed::new(4))));
44 CompareResult::Incomplete => Err(Err::Incomplete(Needed::new(tag_len - i.input_len()))), in tag()
60 /// # use nom::{Err, error::{Error, ErrorKind}, Needed, IResult};
71 /// assert_eq!(parser(""), Err(Err::Incomplete(Needed::new(5))));
86 CompareResult::Incomplete => Err(Err::Incomplete(Needed::new(tag_len - i.input_len()))), in tag_no_case()
102 /// It will return a `Err::Incomplete(Needed::new(1))` if the pattern wasn't met.
105 /// # use nom::{Err, error::ErrorKind, Needed, IResult};
114 /// assert_eq!(not_space("Nospace"), Err(Err::Incomplete(Needed::new(1))));
[all …]
H A Dtests.rs7 use crate::internal::{Err, IResult, Needed};
65 assert_eq!(a_or_b(e), Err(Err::Incomplete(Needed::new(1)))); in is_not()
282 assert_eq!(y(&b"nd"[..]), Err(Err::Incomplete(Needed::Unknown)));
283 assert_eq!(y(&b"123"[..]), Err(Err::Incomplete(Needed::Unknown)));
284 assert_eq!(y(&b"123en"[..]), Err(Err::Incomplete(Needed::Unknown)));
293 assert_eq!(ys("123en"), Err(Err::Incomplete(Needed::Unknown)));
365 assert_eq!(f(&a[..]), Err(Err::Incomplete(Needed::new(1))));
366 assert_eq!(f(&b[..]), Err(Err::Incomplete(Needed::new(1))));
383 assert_eq!(f(&a[..]), Err(Err::Incomplete(Needed::new(1))));
384 assert_eq!(f(&b[..]), Err(Err::Incomplete(Needed::new(1))));
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/nom/src/bytes/
Dstreaming.rs5 use crate::internal::{Err, IResult, Needed, Parser};
19 /// # use nom::{Err, error::{Error, ErrorKind}, Needed, IResult};
29 /// assert_eq!(parser("H"), Err(Err::Incomplete(Needed::new(4))));
44 CompareResult::Incomplete => Err(Err::Incomplete(Needed::new(tag_len - i.input_len()))), in tag()
60 /// # use nom::{Err, error::{Error, ErrorKind}, Needed, IResult};
71 /// assert_eq!(parser(""), Err(Err::Incomplete(Needed::new(5))));
86 CompareResult::Incomplete => Err(Err::Incomplete(Needed::new(tag_len - i.input_len()))), in tag_no_case()
102 /// It will return a `Err::Incomplete(Needed::new(1))` if the pattern wasn't met.
105 /// # use nom::{Err, error::ErrorKind, Needed, IResult};
114 /// assert_eq!(not_space("Nospace"), Err(Err::Incomplete(Needed::new(1))));
[all …]
Dtests.rs7 use crate::internal::{Err, IResult, Needed};
65 assert_eq!(a_or_b(e), Err(Err::Incomplete(Needed::new(1)))); in is_not()
282 assert_eq!(y(&b"nd"[..]), Err(Err::Incomplete(Needed::Unknown)));
283 assert_eq!(y(&b"123"[..]), Err(Err::Incomplete(Needed::Unknown)));
284 assert_eq!(y(&b"123en"[..]), Err(Err::Incomplete(Needed::Unknown)));
293 assert_eq!(ys("123en"), Err(Err::Incomplete(Needed::Unknown)));
365 assert_eq!(f(&a[..]), Err(Err::Incomplete(Needed::new(1))));
366 assert_eq!(f(&b[..]), Err(Err::Incomplete(Needed::new(1))));
383 assert_eq!(f(&a[..]), Err(Err::Incomplete(Needed::new(1))));
384 assert_eq!(f(&b[..]), Err(Err::Incomplete(Needed::new(1))));
[all …]
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/nom-7.1.3/src/character/
H A Dstreaming.rs9 use crate::internal::{Err, IResult, Needed};
22 /// # use nom::{Err, error::{ErrorKind, Error}, Needed, IResult};
29 /// assert_eq!(parser(""), Err(Err::Incomplete(Needed::new(1))));
40 None => Err(Err::Incomplete(Needed::new(c.len() - i.input_len()))), in char()
52 /// # use nom::{Err, error::{ErrorKind, Error}, Needed, IResult};
59 /// assert_eq!(parser(""), Err(Err::Incomplete(Needed::Unknown)));
72 None => Err(Err::Incomplete(Needed::Unknown)), in satisfy()
84 /// # use nom::{Err, error::ErrorKind, Needed};
88 /// assert_eq!(one_of::<_, _, (_, ErrorKind)>("a")(""), Err(Err::Incomplete(Needed::new(1))));
97 None => Err(Err::Incomplete(Needed::new(1))), in one_of()
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/nom/src/character/
Dstreaming.rs9 use crate::internal::{Err, IResult, Needed};
22 /// # use nom::{Err, error::{ErrorKind, Error}, Needed, IResult};
29 /// assert_eq!(parser(""), Err(Err::Incomplete(Needed::new(1))));
40 None => Err(Err::Incomplete(Needed::new(c.len() - i.input_len()))), in char()
52 /// # use nom::{Err, error::{ErrorKind, Error}, Needed, IResult};
59 /// assert_eq!(parser(""), Err(Err::Incomplete(Needed::Unknown)));
72 None => Err(Err::Incomplete(Needed::Unknown)), in satisfy()
84 /// # use nom::{Err, error::ErrorKind, Needed};
88 /// assert_eq!(one_of::<_, _, (_, ErrorKind)>("a")(""), Err(Err::Incomplete(Needed::new(1))));
97 None => Err(Err::Incomplete(Needed::new(1))), in one_of()
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/winnow/src/token/
Dmod.rs9 use crate::error::Needed;
38 /// # use winnow::{token::any, error::ErrMode, error::ErrorKind, error::InputError, error::Needed};
42 /// assert_eq!(any::<_, InputError<_>>.parse_peek(Partial::new("")), Err(ErrMode::Incomplete(Needed
70 ErrMode::Incomplete(Needed::new(1)) in any_()
90 /// # use winnow::{error::ErrMode, error::{InputError, ErrorKind}, error::Needed};
104 /// # use winnow::{error::ErrMode, error::{InputError, ErrorKind}, error::Needed};
115 /// assert_eq!(parser(Partial::new("H")), Err(ErrMode::Incomplete(Needed::new(4))));
119 /// # use winnow::{error::ErrMode, error::{InputError, ErrorKind}, error::Needed};
167 Err(ErrMode::Incomplete(Needed::new(tag_len - i.eof_offset()))) in tag_()
186 /// # use winnow::{error::ErrMode, error::{InputError, ErrorKind}, error::Needed};
[all …]
/aosp_15_r20/frameworks/base/services/tests/servicestests/src/com/android/server/uri/
H A DUriGrantsManagerServiceTest.java84 * is needed for {@link UriGrantsManagerInternal#checkGrantUriPermissionFromIntent}. This is
125 final NeededUriGrants needed = mService.checkGrantUriPermissionFromIntent( in testNeeded_normal_sameUser() local
127 assertEquals(PKG_SOCIAL, needed.targetPkg); in testNeeded_normal_sameUser()
128 assertEquals(UID_PRIMARY_SOCIAL, needed.targetUid); in testNeeded_normal_sameUser()
129 assertEquals(FLAG_READ, needed.flags); in testNeeded_normal_sameUser()
130 assertEquals(asSet(expectedGrant), needed.uris); in testNeeded_normal_sameUser()
143 final NeededUriGrants needed = mService.checkGrantUriPermissionFromIntent( in testNeeded_normal_differentUser() local
145 assertEquals(PKG_SOCIAL, needed.targetPkg); in testNeeded_normal_differentUser()
146 assertEquals(UID_SECONDARY_SOCIAL, needed.targetUid); in testNeeded_normal_differentUser()
147 assertEquals(FLAG_READ, needed.flags); in testNeeded_normal_differentUser()
[all …]
/aosp_15_r20/external/protobuf/javamicro/src/main/java/com/google/protobuf/micro/
H A DCodedOutputStreamMicro.java400 * Compute the number of bytes that would be needed to encode a
409 * Compute the number of bytes that would be needed to encode a
417 * Compute the number of bytes that would be needed to encode a
425 * Compute the number of bytes that would be needed to encode an
433 * Compute the number of bytes that would be needed to encode an
441 * Compute the number of bytes that would be needed to encode a
450 * Compute the number of bytes that would be needed to encode a
459 * Compute the number of bytes that would be needed to encode a
468 * Compute the number of bytes that would be needed to encode a
477 * Compute the number of bytes that would be needed to encode a
[all …]
/aosp_15_r20/out/soong/.intermediates/packages/apps/DocumentsUI/statslog-docsui-java-gen/gen/com/android/documentsui/
DDocumentsStatsLog.java539 int needed = LIST_TYPE_OVERHEAD + LONG_TYPE_SIZE + INT_TYPE_SIZE; in write() local
540 needed += INT_TYPE_SIZE; in write()
541 if (needed > MAX_EVENT_PAYLOAD) { in write()
544 byte[] buff = new byte[needed]; in write()
564 int needed = LIST_TYPE_OVERHEAD + LONG_TYPE_SIZE + INT_TYPE_SIZE; in write() local
565 needed += INT_TYPE_SIZE; in write()
566 if (needed > MAX_EVENT_PAYLOAD) { in write()
569 byte[] buff = new byte[needed]; in write()
589 int needed = LIST_TYPE_OVERHEAD + LONG_TYPE_SIZE + INT_TYPE_SIZE; in write() local
590 needed += INT_TYPE_SIZE; in write()
[all …]
/aosp_15_r20/external/cronet/third_party/protobuf/csharp/src/Google.Protobuf/
H A DCodedOutputStream.ComputeSize.cs50 /// Computes the number of bytes that would be needed to encode a
59 /// Computes the number of bytes that would be needed to encode a
68 /// Computes the number of bytes that would be needed to encode a
77 /// Computes the number of bytes that would be needed to encode an
86 /// Computes the number of bytes that would be needed to encode an
103 /// Computes the number of bytes that would be needed to encode a
112 /// Computes the number of bytes that would be needed to encode a
121 /// Computes the number of bytes that would be needed to encode a
130 /// Computes the number of bytes that would be needed to encode a
140 /// Computes the number of bytes that would be needed to encode a
[all …]
/aosp_15_r20/external/protobuf/csharp/src/Google.Protobuf/
H A DCodedOutputStream.ComputeSize.cs50 /// Computes the number of bytes that would be needed to encode a
59 /// Computes the number of bytes that would be needed to encode a
68 /// Computes the number of bytes that would be needed to encode a
77 /// Computes the number of bytes that would be needed to encode an
86 /// Computes the number of bytes that would be needed to encode an
103 /// Computes the number of bytes that would be needed to encode a
112 /// Computes the number of bytes that would be needed to encode a
121 /// Computes the number of bytes that would be needed to encode a
130 /// Computes the number of bytes that would be needed to encode a
140 /// Computes the number of bytes that would be needed to encode a
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/winnow/src/ascii/
Dmod.rs15 use crate::error::{ErrMode, ErrorKind, Needed};
76 /// # use winnow::{error::ErrMode, error::ErrorKind, error::InputError, error::Needed};
81 …!(crlf::<_, InputError<_>>.parse_peek(Partial::new("")), Err(ErrMode::Incomplete(Needed::new(2))));
103 /// # use winnow::{error::ErrMode, error::{InputError, ErrorKind}, error::Needed};
119 /// # use winnow::{error::ErrMode, error::{InputError, ErrorKind}, error::Needed};
123 …ing::<_, InputError<_>>.parse_peek(Partial::new("abc")), Err(ErrMode::Incomplete(Needed::new(1))));
124 …ending::<_, InputError<_>>.parse_peek(Partial::new("")), Err(ErrMode::Incomplete(Needed::new(1))));
175 return Err(ErrMode::Incomplete(Needed::Unknown)); in till_line_ending_()
196 /// # use winnow::{error::ErrMode, error::{InputError, ErrorKind}, error::Needed};
209 /// # use winnow::{error::ErrMode, error::ErrorKind, error::InputError, error::Needed};
[all …]
/aosp_15_r20/external/crosvm/sandbox/src/
H A Dpolicy.rs42 // Token levels and integrity levels needed for access to hypervisor APIs.
46 // Needed for access to audio APIs.
48 // Needed for access to UI APIs.
51 // Needed to display window on main desktop.
60 // Needed for access to WinINet.
77 // INTEGRITY_LEVEL_MEDIUM needed to open disk file.
90 // Needed to connect to crash handler.
106 // Needed to connect to crash handler.
108 // Needed for access to winsock.
110 // Needed for access to winsock.
[all …]
/aosp_15_r20/frameworks/base/packages/Shell/
H A DAndroidManifest.xml121 <!-- ACCESS_BACKGROUND_LOCATION is needed for testing purposes only. -->
123 <!-- ACCESS_MTP is needed for testing purposes only. -->
132 <!-- BLUETOOTH_PRIVILEGED is needed for testing purposes only. -->
301 <!-- Permission needed to rename bugreport notifications (so they're not shown as Shell) -->
304 <!-- Permission needed to hold a wakelock in dumpstate.cpp (drop_root_user()) -->
306 <!-- Permission needed to enable/disable overlays -->
308 <!-- Permission needed to access privileged VR APIs -->
316 <!-- Permissions needed to test system only camera devices -->
320 <!-- Permissions needed to test onCameraOpened/Closed callbacks -->
322 <!-- Permissions needed for CTS camera test: RecordingTest.java when assuming shell id -->
[all …]
/aosp_15_r20/out/soong/.intermediates/frameworks/base/packages/Shell/Shell/android_common/manifest_fixer/
DAndroidManifest.xml118 <!-- ACCESS_BACKGROUND_LOCATION is needed for testing purposes only. -->
120 <!-- ACCESS_MTP is needed for testing purposes only. -->
129 <!-- BLUETOOTH_PRIVILEGED is needed for testing purposes only. -->
297 <!-- Permission needed to rename bugreport notifications (so they're not shown as Shell) -->
300 <!-- Permission needed to hold a wakelock in dumpstate.cpp (drop_root_user()) -->
302 <!-- Permission needed to enable/disable overlays -->
304 <!-- Permission needed to access privileged VR APIs -->
312 <!-- Permissions needed to test system only camera devices -->
316 <!-- Permissions needed to test onCameraOpened/Closed callbacks -->
318 <!-- Permissions needed for CTS camera test: RecordingTest.java when assuming shell id -->
[all …]
/aosp_15_r20/external/protobuf/javanano/src/main/java/com/google/protobuf/nano/
H A DCodedOutputByteBufferNano.java398 * compute the exact amount needed, or leave room for {@code 3 * sequence.length()}, which is the
557 * Compute the number of bytes that would be needed to encode a
566 * Compute the number of bytes that would be needed to encode a
574 * Compute the number of bytes that would be needed to encode a
582 * Compute the number of bytes that would be needed to encode an
590 * Compute the number of bytes that would be needed to encode an
598 * Compute the number of bytes that would be needed to encode a
607 * Compute the number of bytes that would be needed to encode a
616 * Compute the number of bytes that would be needed to encode a
625 * Compute the number of bytes that would be needed to encode a
[all …]

12345678910>>...714