/third_party/openssl/ssl/record/ |
H A D | record.h | 220 unsigned char *buf, size_t len, int peek, 240 unsigned char *buf, size_t len, int peek,
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-cff2-interp-cs.hh | 206 if (unlikely (env.argStack.peek ().blending ())) in process_op() 219 if (unlikely (env.argStack.peek ().blending ())) in process_op()
|
/third_party/python/Lib/ |
H A D | lzma.py | 182 def peek(self, size=-1): member in LZMAFile 189 # Relies on the undocumented fact that BufferedReader.peek() always 191 return self._buffer.peek(size)
|
H A D | bz2.py | 145 def peek(self, n=0): member in BZ2File 152 # Relies on the undocumented fact that BufferedReader.peek() 155 return self._buffer.peek(n)
|
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | uvector.h | 314 inline void* peek(void) const; 395 inline void* UStack::peek(void) const { in peek() function in UStack
|
/third_party/skia/client_utils/android/ |
H A D | FrontBufferedStream.cpp | 26 size_t peek(void* buffer, size_t size) const override; 186 size_t FrontBufferedStream::peek(void* dst, size_t size) const { in peek() function in __anon18311::FrontBufferedStream
|
/third_party/glslang/glslang/MachineIndependent/ |
H A D | Scan.cpp | 68 int c = peek(); // don't accidentally consume anything other than whitespace in consumeWhiteSpace() 73 c = peek(); in consumeWhiteSpace() 80 if (peek() != '/') in consumeComment() 84 int c = peek(); in consumeComment() 107 if (c == '\r' && peek() == '\n') in consumeComment() 151 int c = peek(); in consumeWhitespaceComment() 192 if (peek() != '\n' && peek() != '\r') { in scanVersion() 197 while (peek() == '\n' || peek() in scanVersion() [all...] |
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/src/main/cpp/utils/ |
H A D | LockFreeQueue.h | 103 bool peek(T &item) const { in peek() function in LockFreeQueue
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | JSON.cpp | 243 char peek() { return P == End ? 0 : *P; } in peek() function in llvm::json::__anon24323::Parser 284 if (peek() == ']') { in parseValue() 308 if (peek() == '}') { in parseValue() 347 while (isNumber(peek())) in parseNumber()
|
/third_party/skia/src/image/ |
H A D | SkSurface.cpp | 93 SkPixmap peek; in onAsyncRescaleAndReadPixels() local 95 if (this->peekPixels(&peek)) { in onAsyncRescaleAndReadPixels() 96 src.installPixels(peek); in onAsyncRescaleAndReadPixels()
|
/third_party/skia/src/gpu/ |
H A D | GrSurfaceProxy.cpp | 147 auto peek = this->peekSurface(); in canSkipResourceAllocator() local 148 if (!peek) { in canSkipResourceAllocator() 153 return !peek->resourcePriv().getScratchKey().isValid(); in canSkipResourceAllocator()
|
/third_party/skia/third_party/externals/tint/tools/src/cmd/intrinsic-gen/parser/ |
H A D | parser.go | 48 t := p.peek(0) 300 t := p.peek(i) 307 func (p *parser) peek(i int) *tok.Token {
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/Disassembler/ |
H A D | X86Disassembler.cpp | 178 static bool peek(struct InternalInstruction *insn, uint8_t &byte) { in peek() function 226 if ((byte == 0xf2 || byte == 0xf3) && !peek(insn, nextByte)) { in readPrefixes() 253 if (peek(insn, nnextByte)) in readPrefixes() 266 if (peek(insn, nextByte)) in readPrefixes() 301 if (peek(insn, nextByte)) in readPrefixes() 329 if (peek(insn, byte2)) { in readPrefixes() 371 if (peek(insn, byte1)) { in readPrefixes() 402 if (peek(insn, byte1)) { in readPrefixes() 434 if (peek(insn, byte1)) { in readPrefixes() 472 if (peek(ins in readPrefixes() [all...] |
/third_party/rust/crates/cxx/gen/src/ |
H A D | file.rs | 37 if !ahead.peek(Token![mod]) { in parse()
|
/third_party/rust/crates/cxx/gen/cmd/src/gen/ |
H A D | file.rs | 37 if !ahead.peek(Token![mod]) { in parse()
|
/third_party/rust/crates/cxx/gen/build/src/gen/ |
H A D | file.rs | 37 if !ahead.peek(Token![mod]) { in parse()
|
/third_party/rust/crates/cxx/gen/lib/src/gen/ |
H A D | file.rs | 37 if !ahead.peek(Token![mod]) { in parse()
|
/third_party/rust/crates/syn/src/ |
H A D | ident.rs | 95 fn peek(cursor: Cursor) -> bool { in peek() functions
|
/kernel/linux/linux-5.10/arch/powerpc/include/asm/ |
H A D | fsl_hcalls.h | 493 uint32_t addr_hi, uint32_t addr_lo, int peek) in fh_err_get_info() 507 r7 = peek; in fh_err_get_info() 492 fh_err_get_info(int queue, uint32_t *bufsize, uint32_t addr_hi, uint32_t addr_lo, int peek) fh_err_get_info() argument
|
/kernel/linux/linux-6.6/arch/powerpc/include/asm/ |
H A D | fsl_hcalls.h | 493 uint32_t addr_hi, uint32_t addr_lo, int peek) in fh_err_get_info() 507 r7 = peek; in fh_err_get_info() 492 fh_err_get_info(int queue, uint32_t *bufsize, uint32_t addr_hi, uint32_t addr_lo, int peek) fh_err_get_info() argument
|
/third_party/node/deps/v8/src/parsing/ |
H A D | preparser.cc | 207 DCHECK_EQ(Token::RBRACE, scanner()->peek()); in PreParseFunction() 371 DCHECK_IMPLIES(!has_error(), scanner()->peek() == Token::RBRACE); in ParseStatementListAndLogFunction()
|
/third_party/rust/crates/codespan/codespan-reporting/src/term/ |
H A D | views.rs | 327 if let Some((next_line_index, _)) = lines.peek() { 373 if labeled_files.peek().is_none() && self.diagnostic.notes.is_empty() {
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/ |
H A D | RecordSerialization.h | 108 while (!Reader.empty() && Reader.peek() < LF_PAD0) { in deserialize() 128 while (Reader.peek() != 0) { in deserialize()
|
/third_party/rust/crates/serde/serde_derive/src/ |
H A D | ser.rs | 268 let let_mut = mut_if(serialized_fields.peek().is_some()); in serialize_tuple_struct() 332 let let_mut = mut_if(serialized_fields.peek().is_some() || tag_field_exists); in serialize_struct_as_struct() 371 let let_mut = mut_if(serialized_fields.peek().is_some() || tag_field_exists); in serialize_struct_as_map() 835 let let_mut = mut_if(serialized_fields.peek().is_some()); in serialize_tuple_variant() 912 let let_mut = mut_if(serialized_fields.peek().is_some()); in serialize_struct_variant() 986 let let_mut = mut_if(serialized_fields.peek().is_some()); in serialize_struct_variant_with_flatten()
|
/kernel/linux/linux-5.10/net/sched/ |
H A D | sch_taprio.c | 81 struct sk_buff *(*peek)(struct Qdisc *sch); member 472 skb = child->ops->peek(child); in taprio_peek_soft() 504 skb = child->ops->peek(child); in taprio_peek_offload() 518 return q->peek(sch); in taprio_peek() 566 skb = child->ops->peek(child); in taprio_dequeue_soft() 1558 q->peek = taprio_peek_offload; in taprio_change() 1564 q->peek = taprio_peek_soft; in taprio_change() 1680 q->peek = taprio_peek_soft; in taprio_init() 1994 .peek = taprio_peek,
|