Home
last modified time | relevance | path

Searched defs:P (Results 1 – 25 of 637) sorted by relevance

12345678910>>...26

/third_party/ltp/tools/sparse/sparse-src/validation/
Drepeat.h1 #define R0(P, S) P(S) argument
2 #define R1(P, S) R0(P,S##0) R0(P,S##1) argument
3 #define R2(P, S) R0(P,S##0) R0(P,S##1) R0(P,S##2) R0(P,S##3) argument
4 #define R3(P, S) R0(P,S##0) R0(P,S##1) R0(P,S##2) R0(P,S##3) R0(P,S##4) R0(P,S##5) R0(P,S##… argument
5 #define R4(P, S) R3(P,S##0) R3(P,S##1) argument
6 #define R5(P, S) R3(P,S##0) R3(P,S##1) R3(P,S##2) R3(P,S##3) argument
7 #define R6(P, S) R3(P,S##0) R3(P,S##1) R3(P,S##2) R3(P,S##3) R3(P,S##4) R3(P,S##5) R3(P,S##… argument
8 #define R7(P, S) R6(P,S##0) R6(P,S##1) argument
9 #define R8(P, S) R6(P,S##0) R6(P,S##1) R6(P,S##2) R6(P,S##3) argument
10 #define R9(P, S) R6(P,S##0) R6(P,S##1) R6(P,S##2) R6(P,S##3) R6(P,S##4) R6(P,S##5) R6(P,S##… argument
[all …]
Dmulti_typedef.c1 typedef int T, *P; typedef
4 unsigned P = 0; in f() local
9 int P = 0; in g() local
/third_party/typescript/tests/cases/conformance/types/mapped/
DmappedTypeModifiers.ts16 var v01: { [P in keyof T]: T[P] }; variable
21 var v02: { [P in keyof T]?: T[P] }; variable
23 var v02: { [P in keyof TP]: TP[P] } variable
27 var v03: { readonly [P in keyof T]: T[P] }; variable
29 var v03: { [P in keyof TR]: TR[P] } variable
33 var v04: { readonly [P in keyof T]?: T[P] }; variable
38 var v04: { [P in keyof TPR]: TPR[P] } variable
55 var b01: { [P in keyof B]: B[P] }; variable
60 var b02: { [P in keyof B]?: B[P] }; variable
62 var b02: { [P in keyof BP]: BP[P] } variable
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DEndian.h354 template <typename T> inline T read(const void *P, endianness E) { in read()
358 template <typename T, endianness E> inline T read(const void *P) { in read()
362 inline uint16_t read16(const void *P, endianness E) { in read16()
365 inline uint32_t read32(const void *P, endianness E) { in read32()
368 inline uint64_t read64(const void *P, endianness E) { in read64()
372 template <endianness E> inline uint16_t read16(const void *P) { in read16()
375 template <endianness E> inline uint32_t read32(const void *P) { in read32()
378 template <endianness E> inline uint64_t read64(const void *P) { in read64()
382 inline uint16_t read16le(const void *P) { return read16<little>(P); } in read16le()
383 inline uint32_t read32le(const void *P) { return read32<little>(P); } in read32le()
[all …]
/third_party/skia/third_party/externals/swiftshader/src/Renderer/
DPoint.cpp39 Point operator+(const Point &P, const Vector &v) in operator +()
44 Point operator-(const Point &P, const Vector &v) in operator -()
49 Vector operator-(const Point &P, const Point &Q) in operator -()
54 Point operator*(const Matrix &M, const Point &P) in operator *()
61 Point operator*(const Point &P, const Matrix &M) in operator *()
68 Point &operator*=(Point &P, const Matrix &M) in operator *=()
83 float Point::d(const Point &P, const Point &Q) in d()
88 float Point::d2(const Point &P, const Point &Q) in d2()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DEndian.h303 template <typename T, endianness E> inline T read(const void *P) { in read()
307 template <endianness E> inline uint16_t read16(const void *P) { in read16()
310 template <endianness E> inline uint32_t read32(const void *P) { in read32()
313 template <endianness E> inline uint64_t read64(const void *P) { in read64()
317 inline uint16_t read16le(const void *P) { return read16<little>(P); } in read16le()
318 inline uint32_t read32le(const void *P) { return read32<little>(P); } in read32le()
319 inline uint64_t read64le(const void *P) { return read64<little>(P); } in read64le()
320 inline uint16_t read16be(const void *P) { return read16<big>(P); } in read16be()
321 inline uint32_t read32be(const void *P) { return read32<big>(P); } in read32be()
322 inline uint64_t read64be(const void *P) { return read64<big>(P); } in read64be()
[all …]
/third_party/rust/crates/rustix/src/fs/
Dat.rs58 path: P, in openat()
80 path: P, in readlinkat()
116 pub fn mkdirat<P: path::Arg, Fd: AsFd>(dirfd: Fd, path: P, mode: Mode) -> io::Result<()> { in mkdirat()
132 old_path: P, in linkat()
163 pub fn unlinkat<P: path::Arg, Fd: AsFd>(dirfd: Fd, path: P, flags: AtFlags) -> io::Result<()> { in unlinkat()
179 old_path: P, in renameat()
207 old_path: P, in renameat_with()
235 old_path: P, in symlinkat()
261 pub fn statat<P: path::Arg, Fd: AsFd>(dirfd: Fd, path: P, flags: AtFlags) -> io::Result<Stat> { in statat()
279 path: P, in accessat()
[all …]
/third_party/python/Modules/_blake2/impl/
Dblake2b-ref.c85 static inline int blake2b_param_set_digest_length( blake2b_param *P, const uint8_t digest_length ) in blake2b_param_set_digest_length()
91 static inline int blake2b_param_set_fanout( blake2b_param *P, const uint8_t fanout ) in blake2b_param_set_fanout()
97 static inline int blake2b_param_set_max_depth( blake2b_param *P, const uint8_t depth ) in blake2b_param_set_max_depth()
103 static inline int blake2b_param_set_leaf_length( blake2b_param *P, const uint32_t leaf_length ) in blake2b_param_set_leaf_length()
109 static inline int blake2b_param_set_node_offset( blake2b_param *P, const uint64_t node_offset ) in blake2b_param_set_node_offset()
115 static inline int blake2b_param_set_node_depth( blake2b_param *P, const uint8_t node_depth ) in blake2b_param_set_node_depth()
121 static inline int blake2b_param_set_inner_length( blake2b_param *P, const uint8_t inner_length ) in blake2b_param_set_inner_length()
127 static inline int blake2b_param_set_salt( blake2b_param *P, const uint8_t salt[BLAKE2B_SALTBYTES] ) in blake2b_param_set_salt()
133 static inline int blake2b_param_set_personal( blake2b_param *P, const uint8_t personal[BLAKE2B_PERS… in blake2b_param_set_personal()
162 int blake2b_init_param( blake2b_state *S, const blake2b_param *P ) in blake2b_init_param()
[all …]
Dblake2s-ref.c78 static inline int blake2s_param_set_digest_length( blake2s_param *P, const uint8_t digest_length ) in blake2s_param_set_digest_length()
84 static inline int blake2s_param_set_fanout( blake2s_param *P, const uint8_t fanout ) in blake2s_param_set_fanout()
90 static inline int blake2s_param_set_max_depth( blake2s_param *P, const uint8_t depth ) in blake2s_param_set_max_depth()
96 static inline int blake2s_param_set_leaf_length( blake2s_param *P, const uint32_t leaf_length ) in blake2s_param_set_leaf_length()
102 static inline int blake2s_param_set_node_offset( blake2s_param *P, const uint64_t node_offset ) in blake2s_param_set_node_offset()
108 static inline int blake2s_param_set_node_depth( blake2s_param *P, const uint8_t node_depth ) in blake2s_param_set_node_depth()
114 static inline int blake2s_param_set_inner_length( blake2s_param *P, const uint8_t inner_length ) in blake2s_param_set_inner_length()
120 static inline int blake2s_param_set_salt( blake2s_param *P, const uint8_t salt[BLAKE2S_SALTBYTES] ) in blake2s_param_set_salt()
126 static inline int blake2s_param_set_personal( blake2s_param *P, const uint8_t personal[BLAKE2S_PERS… in blake2s_param_set_personal()
155 int blake2s_init_param( blake2s_state *S, const blake2s_param *P ) in blake2s_init_param()
[all …]
Dblake2s.c115 static inline int blake2s_param_set_digest_length( blake2s_param *P, const uint8_t digest_length ) in blake2s_param_set_digest_length()
121 static inline int blake2s_param_set_fanout( blake2s_param *P, const uint8_t fanout ) in blake2s_param_set_fanout()
127 static inline int blake2s_param_set_max_depth( blake2s_param *P, const uint8_t depth ) in blake2s_param_set_max_depth()
133 static inline int blake2s_param_set_leaf_length( blake2s_param *P, const uint32_t leaf_length ) in blake2s_param_set_leaf_length()
139 static inline int blake2s_param_set_node_offset( blake2s_param *P, const uint64_t node_offset ) in blake2s_param_set_node_offset()
145 static inline int blake2s_param_set_node_depth( blake2s_param *P, const uint8_t node_depth ) in blake2s_param_set_node_depth()
151 static inline int blake2s_param_set_inner_length( blake2s_param *P, const uint8_t inner_length ) in blake2s_param_set_inner_length()
157 static inline int blake2s_param_set_salt( blake2s_param *P, const uint8_t salt[BLAKE2S_SALTBYTES] ) in blake2s_param_set_salt()
163 static inline int blake2s_param_set_personal( blake2s_param *P, const uint8_t personal[BLAKE2S_PERS… in blake2s_param_set_personal()
193 int blake2s_init_param( blake2s_state *S, const blake2s_param *P ) in blake2s_init_param()
[all …]
Dblake2b.c127 static inline int blake2b_param_set_digest_length( blake2b_param *P, const uint8_t digest_length ) in blake2b_param_set_digest_length()
133 static inline int blake2b_param_set_fanout( blake2b_param *P, const uint8_t fanout ) in blake2b_param_set_fanout()
139 static inline int blake2b_param_set_max_depth( blake2b_param *P, const uint8_t depth ) in blake2b_param_set_max_depth()
145 static inline int blake2b_param_set_leaf_length( blake2b_param *P, const uint32_t leaf_length ) in blake2b_param_set_leaf_length()
151 static inline int blake2b_param_set_node_offset( blake2b_param *P, const uint64_t node_offset ) in blake2b_param_set_node_offset()
157 static inline int blake2b_param_set_node_depth( blake2b_param *P, const uint8_t node_depth ) in blake2b_param_set_node_depth()
163 static inline int blake2b_param_set_inner_length( blake2b_param *P, const uint8_t inner_length ) in blake2b_param_set_inner_length()
169 static inline int blake2b_param_set_salt( blake2b_param *P, const uint8_t salt[BLAKE2B_SALTBYTES] ) in blake2b_param_set_salt()
175 static inline int blake2b_param_set_personal( blake2b_param *P, const uint8_t personal[BLAKE2B_PERS… in blake2b_param_set_personal()
206 int blake2b_init_param( blake2b_state *S, const blake2b_param *P ) in blake2b_init_param()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DLegacyPassNameParser.h57 virtual bool ignorablePassImpl(const PassInfo *P) const { return false; } in ignorablePassImpl()
59 inline bool ignorablePass(const PassInfo *P) const { in ignorablePass()
68 void passRegistered(const PassInfo *P) override { in passRegistered()
77 void passEnumerate(const PassInfo *P) override { passRegistered(P); } in passEnumerate()
107 bool ignorablePassImpl(const PassInfo *P) const override { in ignorablePassImpl()
/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-atomic.hh65 #define hb_atomic_ptr_impl_set_relaxed(P, V) __atomic_store_n ((P), (V), __ATOMIC_RELAXED) argument
66 #define hb_atomic_ptr_impl_get_relaxed(P) __atomic_load_n ((P), __ATOMIC_RELAXED) argument
67 #define hb_atomic_ptr_impl_get(P) __atomic_load_n ((P), __ATOMIC_ACQUIRE) argument
69 _hb_atomic_ptr_impl_cmplexch (const void **P, const void *O_, const void *N) in _hb_atomic_ptr_impl_cmplexch()
74 #define hb_atomic_ptr_impl_cmpexch(P,O,N) _hb_atomic_ptr_impl_cmplexch ((const void **) (P), (O), (… argument
93 #define hb_atomic_ptr_impl_set_relaxed(P, V) (reinterpret_cast<std::atomic<void*> *> (P)->store ((V… argument
94 #define hb_atomic_ptr_impl_get_relaxed(P) (reinterpret_cast<std::atomic<void*> const *> (P)->load (… argument
95 #define hb_atomic_ptr_impl_get(P) (reinterpret_cast<std::atomic<void*> *> (P)->load (std::memory_o… argument
97 _hb_atomic_ptr_impl_cmplexch (const void **P, const void *O_, const void *N) in _hb_atomic_ptr_impl_cmplexch()
102 #define hb_atomic_ptr_impl_cmpexch(P,O,N) _hb_atomic_ptr_impl_cmplexch ((const void **) (P), (O), (… argument
[all …]
/third_party/openssl/providers/implementations/digests/
Dblake2b_prov.c65 static void blake2b_init_param(BLAKE2B_CTX *S, const BLAKE2B_PARAM *P) in blake2b_init_param()
83 void ossl_blake2b_param_init(BLAKE2B_PARAM *P) in ossl_blake2b_param_init()
98 void ossl_blake2b_param_set_digest_length(BLAKE2B_PARAM *P, uint8_t outlen) in ossl_blake2b_param_set_digest_length()
103 void ossl_blake2b_param_set_key_length(BLAKE2B_PARAM *P, uint8_t keylen) in ossl_blake2b_param_set_key_length()
108 void ossl_blake2b_param_set_personal(BLAKE2B_PARAM *P, const uint8_t *personal, in ossl_blake2b_param_set_personal()
115 void ossl_blake2b_param_set_salt(BLAKE2B_PARAM *P, const uint8_t *salt, in ossl_blake2b_param_set_salt()
126 int ossl_blake2b_init(BLAKE2B_CTX *c, const BLAKE2B_PARAM *P) in ossl_blake2b_init()
136 int ossl_blake2b_init_key(BLAKE2B_CTX *c, const BLAKE2B_PARAM *P, in ossl_blake2b_init_key()
Dblake2s_prov.c61 static void blake2s_init_param(BLAKE2S_CTX *S, const BLAKE2S_PARAM *P) in blake2s_init_param()
78 void ossl_blake2s_param_init(BLAKE2S_PARAM *P) in ossl_blake2s_param_init()
92 void ossl_blake2s_param_set_digest_length(BLAKE2S_PARAM *P, uint8_t outlen) in ossl_blake2s_param_set_digest_length()
97 void ossl_blake2s_param_set_key_length(BLAKE2S_PARAM *P, uint8_t keylen) in ossl_blake2s_param_set_key_length()
102 void ossl_blake2s_param_set_personal(BLAKE2S_PARAM *P, const uint8_t *personal, in ossl_blake2s_param_set_personal()
109 void ossl_blake2s_param_set_salt(BLAKE2S_PARAM *P, const uint8_t *salt, in ossl_blake2s_param_set_salt()
119 int ossl_blake2s_init(BLAKE2S_CTX *c, const BLAKE2S_PARAM *P) in ossl_blake2s_init()
129 int ossl_blake2s_init_key(BLAKE2S_CTX *c, const BLAKE2S_PARAM *P, in ossl_blake2s_init_key()
/third_party/node/deps/openssl/openssl/providers/implementations/digests/
Dblake2b_prov.c65 static void blake2b_init_param(BLAKE2B_CTX *S, const BLAKE2B_PARAM *P) in blake2b_init_param()
83 void ossl_blake2b_param_init(BLAKE2B_PARAM *P) in ossl_blake2b_param_init()
98 void ossl_blake2b_param_set_digest_length(BLAKE2B_PARAM *P, uint8_t outlen) in ossl_blake2b_param_set_digest_length()
103 void ossl_blake2b_param_set_key_length(BLAKE2B_PARAM *P, uint8_t keylen) in ossl_blake2b_param_set_key_length()
108 void ossl_blake2b_param_set_personal(BLAKE2B_PARAM *P, const uint8_t *personal, in ossl_blake2b_param_set_personal()
115 void ossl_blake2b_param_set_salt(BLAKE2B_PARAM *P, const uint8_t *salt, in ossl_blake2b_param_set_salt()
126 int ossl_blake2b_init(BLAKE2B_CTX *c, const BLAKE2B_PARAM *P) in ossl_blake2b_init()
136 int ossl_blake2b_init_key(BLAKE2B_CTX *c, const BLAKE2B_PARAM *P, in ossl_blake2b_init_key()
Dblake2s_prov.c61 static void blake2s_init_param(BLAKE2S_CTX *S, const BLAKE2S_PARAM *P) in blake2s_init_param()
78 void ossl_blake2s_param_init(BLAKE2S_PARAM *P) in ossl_blake2s_param_init()
92 void ossl_blake2s_param_set_digest_length(BLAKE2S_PARAM *P, uint8_t outlen) in ossl_blake2s_param_set_digest_length()
97 void ossl_blake2s_param_set_key_length(BLAKE2S_PARAM *P, uint8_t keylen) in ossl_blake2s_param_set_key_length()
102 void ossl_blake2s_param_set_personal(BLAKE2S_PARAM *P, const uint8_t *personal, in ossl_blake2s_param_set_personal()
109 void ossl_blake2s_param_set_salt(BLAKE2S_PARAM *P, const uint8_t *salt, in ossl_blake2s_param_set_salt()
119 int ossl_blake2s_init(BLAKE2S_CTX *c, const BLAKE2S_PARAM *P) in ossl_blake2s_init()
129 int ossl_blake2s_init_key(BLAKE2S_CTX *c, const BLAKE2S_PARAM *P, in ossl_blake2s_init_key()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/PBQP/
DCostAllocator.h61 static unsigned getHashValue(PoolEntry *P) { in getHashValue()
65 static unsigned getHashValue(const PoolEntry *P) { in getHashValue()
75 static bool isEqual(const ValueKeyT &C, PoolEntry *P) { in isEqual()
92 void removeEntry(PoolEntry *P) { EntrySet.erase(P); } in removeEntry()
101 auto P = std::make_shared<PoolEntry>(*this, std::move(ValueKey)); in getValue() local
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/
DStackMapParser.h72 FunctionAccessor(const uint8_t *P) : P(P) {} in FunctionAccessor()
80 const uint8_t *P; variable
92 ConstantAccessor(const uint8_t *P) : P(P) {} in ConstantAccessor()
100 const uint8_t *P; variable
151 LocationAccessor(const uint8_t *P) : P(P) {} in LocationAccessor()
163 const uint8_t *P; variable
183 LiveOutAccessor(const uint8_t *P) : P(P) {} in LiveOutAccessor()
194 const uint8_t *P; variable
271 RecordAccessor(const uint8_t *P) : P(P) {} in RecordAccessor()
299 const uint8_t *P; variable
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DPassTimingInfo.cpp128 Timer *PassTimingInfo::getPassTimer(Pass *P, PassInstanceID Pass) { in getPassTimer() argument
150 Timer *getPassTimer(Pass *P) { in getPassTimer()
267 [this](StringRef P, Any) { return this->runBeforePass(P); }); in registerCallbacks()
269 [this](StringRef P, Any) { this->runAfterPass(P); }); in registerCallbacks()
271 [this](StringRef P) { this->runAfterPass(P); }); in registerCallbacks()
273 [this](StringRef P, Any) { this->runBeforePass(P); }); in registerCallbacks()
275 [this](StringRef P, Any) { this->runAfterPass(P); }); in registerCallbacks()
DLegacyPassManager.cpp166 Pass *P, Module &M, int64_t Delta, unsigned CountBefore, in emitInstrCountChangedRemark()
336 void add(Pass *P) { in add()
497 void add(Pass *P) { in add()
550 PMTopLevelManager::setLastUser(ArrayRef<Pass*> AnalysisPasses, Pass *P) { in setLastUser()
600 Pass *P) { in collectLastUses()
613 AnalysisUsage *PMTopLevelManager::findAnalysisUsage(Pass *P) { in findAnalysisUsage()
649 void PMTopLevelManager::schedulePass(Pass *P) { in schedulePass()
756 if (Pass *P = ImmutablePassMap.lookup(AID)) in findAnalysisPass() local
761 if (Pass *P = PassManager->findAnalysisPass(AID, false)) in findAnalysisPass() local
766 if (Pass *P = IndirectPassManager->findAnalysisPass(AID, false)) in findAnalysisPass() local
[all …]
/third_party/python/Tools/peg_generator/pegen/
Dparser.py16 P = TypeVar("P", bound="Parser") variable
27 def logger_wrapper(self: P, *args: object) -> T:
47 def memoize_wrapper(self: P, *args: object) -> T:
80 def memoize_left_rec(method: Callable[[P], Optional[T]]) -> Callable[[P], Optional[T]]:
84 def memoize_left_rec_wrapper(self: P) -> Optional[T]:
/third_party/rust/crates/nix/src/sys/
Dstat.rs173 pub fn mknod<P: ?Sized + NixPath>( in mknod()
196 path: &P, in mknodat()
274 pathname: &P, in fstatat()
330 path: &P, in fchmodat()
360 pub fn utimes<P: ?Sized + NixPath>( in utimes()
392 pub fn lutimes<P: ?Sized + NixPath>( in lutimes()
446 path: &P, in utimensat()
472 path: &P, in mkdirat()
Dquota.rs242 special: Option<&P>, in quotactl()
262 special: &P, in quotactl_on()
264 quota_file: &P, in quotactl_on()
281 special: &P, in quotactl_off()
296 special: Option<&P>, in quotactl_sync()
309 special: &P, in quotactl_get()
325 special: &P, in quotactl_set()
/third_party/mbedtls/library/
Drsa_alt_helpers.c64 mbedtls_mpi *P, mbedtls_mpi *Q) in mbedtls_rsa_deduce_primes()
194 int mbedtls_rsa_deduce_private_exponent(mbedtls_mpi const *P, in mbedtls_rsa_deduce_private_exponent()
237 int mbedtls_rsa_deduce_crt(const mbedtls_mpi *P, const mbedtls_mpi *Q, in mbedtls_rsa_deduce_crt()
271 int mbedtls_rsa_validate_params(const mbedtls_mpi *N, const mbedtls_mpi *P, in mbedtls_rsa_validate_params()
384 int mbedtls_rsa_validate_crt(const mbedtls_mpi *P, const mbedtls_mpi *Q, in mbedtls_rsa_validate_crt()

12345678910>>...26