Home
last modified time | relevance | path

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

12345678910>>...606

/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 …]
/external/elfutils/libcpu/
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 …]
/external/crosvm/sandbox/src/
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 …]
/external/sandboxed-api/oss-internship-2020/curl/curl_wrapper/
Dcurl_wrapper.h24 // The wrapper method is needed to make the variadic argument explicit
27 // The wrapper method is needed to make the variadic argument explicit
30 // The wrapper method is needed to make the variadic argument explicit
34 // The wrapper method is needed to make the variadic argument explicit
37 // The typedef and wrapper method are needed because the original method has
42 // The typedef and wrapper method are needed because the original method has
49 // The wrapper method is needed to make the variadic argument explicit
53 // The wrapper method is needed to make the variadic argument explicit
57 // The wrapper method is needed to make the variadic argument explicit
61 // The wrapper method is needed because incomplete array type is not supported
[all …]
/external/rust/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 …]
/external/cronet/third_party/protobuf/csharp/src/Google.Protobuf/
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 …]
/external/protobuf/csharp/src/Google.Protobuf/
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 …]
/external/rust/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 …]
/external/llvm/test/Linker/
Donly-needed-named-metadata.ll1 ; Without -only-needed we should lazy link linkonce globals, and the
3 ; RUN: llvm-link -S %S/Inputs/only-needed-named-metadata.ll %S/only-needed-named-metadata.ll | File…
7 ; With -only-needed the metadata references should not cause any of the
11 ; Note that doing -only-needed with the comdat shown below leads to a only
13 ; RUN: llvm-link -S -only-needed %S/Inputs/only-needed-named-metadata.ll %S/only-needed-named-metad…
14 ; RUN: llvm-link -S -internalize -only-needed %S/Inputs/only-needed-named-metadata.ll %S/only-neede…
/external/rust/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 …]
/external/rust/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 …]
/external/rust/crates/grpcio-sys/grpc/src/core/lib/gprpp/
Dtchar.cc25 int needed = MultiByteToWideChar(CP_UTF8, 0, input.c_str(), -1, NULL, 0); in CharToTchar() local
26 if (needed <= 0) return TcharString(); in CharToTchar()
27 TcharString ret(needed, L'\0'); in CharToTchar()
29 const_cast<LPTSTR>(ret.data()), needed); in CharToTchar()
34 int needed = in TcharToChar() local
36 if (needed <= 0) return std::string(); in TcharToChar()
37 std::string ret(needed, '\0'); in TcharToChar()
39 const_cast<LPSTR>(ret.data()), needed, NULL, NULL); in TcharToChar()
/external/grpc-grpc/src/core/lib/gprpp/
Dtchar.cc25 int needed = MultiByteToWideChar(CP_UTF8, 0, input.c_str(), -1, NULL, 0); in CharToTchar() local
26 if (needed <= 0) return TcharString(); in CharToTchar()
27 TcharString ret(needed, L'\0'); in CharToTchar()
29 const_cast<LPTSTR>(ret.data()), needed); in CharToTchar()
34 int needed = in TcharToChar() local
36 if (needed <= 0) return std::string(); in TcharToChar()
37 std::string ret(needed, '\0'); in TcharToChar()
39 const_cast<LPSTR>(ret.data()), needed, NULL, NULL); in TcharToChar()
/external/protobuf/javamicro/src/main/java/com/google/protobuf/micro/
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 …]
/external/stardoc/
DWORKSPACE10 # Include dependencies which are only needed for development of Stardoc here.
14 # Needed for generating the Stardoc release binary.
22 # The following binds are needed for building protobuf java libraries.
38 # Needed only because of java_tools.
49 # Needed as a transitive dependency of @io_bazel
57 # Needed for //distro:__pkg__ and as a transitive dependency of @io_bazel
71 # Needed as a transitive dependency of @io_bazel
81 # Needed only for testing stardoc across local-repository bounds.
/external/tink/java_src/src/test/java/com/google/crypto/tink/
DRegistryMultithreadTest.java56 throw new UnsupportedOperationException("Not needed for test"); in getPrimitive()
61 throw new UnsupportedOperationException("Not needed for test"); in newKeyData()
90 throw new UnsupportedOperationException("Not needed for test"); in getVersion()
95 throw new UnsupportedOperationException("Not needed for test"); in keyMaterialType()
103 throw new UnsupportedOperationException("Not needed for test"); in parseKey()
122 throw new UnsupportedOperationException("Not needed for test"); in getVersion()
127 throw new UnsupportedOperationException("Not needed for test"); in keyMaterialType()
135 throw new UnsupportedOperationException("Not needed for test"); in parseKey()
155 throw new UnsupportedOperationException("Not needed for test"); in getVersion()
160 throw new UnsupportedOperationException("Not needed for test"); in keyMaterialType()
[all …]
/external/rust/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 …]
/external/rust/crates/nom/tests/
Doverflow.rs10 use nom::{Err, IResult, Needed};
23 Err(Err::Incomplete(Needed::new(18446744073709551615))) in overflow_incomplete_tuple()
37 Err(Err::Incomplete(Needed::new(18446744073709551615))) in overflow_incomplete_length_bytes()
51 Err(Err::Incomplete(Needed::new(18446744073709551599))) in overflow_incomplete_many0()
67 Err(Err::Incomplete(Needed::new(18446744073709551599))) in overflow_incomplete_many1()
83 Err(Err::Incomplete(Needed::new(18446744073709551599))) in overflow_incomplete_many_till()
99 Err(Err::Incomplete(Needed::new(18446744073709551599))) in overflow_incomplete_many_m_n()
114 Err(Err::Incomplete(Needed::new(18446744073709551599))) in overflow_incomplete_count()
130 Err(Err::Incomplete(Needed::new(18446744073709551598))) in overflow_incomplete_length_count()
143 Err(Err::Incomplete(Needed::new(18446744073709551615))) in overflow_incomplete_length_data()
/external/sdk-platform-java/java-common-protos/proto-google-common-protos/src/main/java/com/google/api/
DMonitoringOrBuilder.java33 * needed for different sets of metrics associated with that monitored
48 * needed for different sets of metrics associated with that monitored
63 * needed for different sets of metrics associated with that monitored
78 * needed for different sets of metrics associated with that monitored
94 * needed for different sets of metrics associated with that monitored
111 * needed for different sets of metrics associated with that monitored
126 * needed for different sets of metrics associated with that monitored
141 * needed for different sets of metrics associated with that monitored
156 * needed for different sets of metrics associated with that monitored
172 * needed for different sets of metrics associated with that monitored
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DICUCurrencyMetaInfo.java81 int needed = collector.collects(); in collect() local
83 needed |= Region; in collect()
86 needed |= Currency; in collect()
89 needed |= Date; in collect()
92 needed |= Tender; in collect()
95 if (needed != 0) { in collect()
99 collectRegion(collector, filter, needed, b); in collect()
103 collectRegion(collector, filter, needed, regionInfo.at(i)); in collect()
112 int needed, ICUResourceBundle b) { in collectRegion() argument
115 if (needed == Region) { in collectRegion()
[all …]
/external/icu/icu4j/main/currdata/src/main/java/com/ibm/icu/impl/
DICUCurrencyMetaInfo.java79 int needed = collector.collects(); in collect() local
81 needed |= Region; in collect()
84 needed |= Currency; in collect()
87 needed |= Date; in collect()
90 needed |= Tender; in collect()
93 if (needed != 0) { in collect()
97 collectRegion(collector, filter, needed, b); in collect()
101 collectRegion(collector, filter, needed, regionInfo.at(i)); in collect()
110 int needed, ICUResourceBundle b) { in collectRegion() argument
113 if (needed == Region) { in collectRegion()
[all …]
/external/protobuf/javanano/src/main/java/com/google/protobuf/nano/
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 …]
/external/rust/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 …]

12345678910>>...606