Home
last modified time | relevance | path

Searched refs:is_eof (Results 1 - 15 of 15) sorted by relevance

/drivers/hdf_core/framework/tools/hc-gen/
H A Dhcs_build_info.py46 def __init__(self, is_eof, char):
47 self.is_eof = is_eof
51 return "{%s, %s}" % (self.is_eof, self.char)
99 while not self.peek_char().is_eof:
124 while not self.peek_char().is_eof:
141 while not self.peek_char().is_eof and self.peek_char().char != '"':
155 if not new_char.is_eof:
167 while not self.peek_char().is_eof:
178 while not self.peek_char().is_eof
[all...]
/third_party/ffmpeg/libavfilter/
H A Df_interleave.c78 int is_eof = !!ff_inlink_acknowledge_status(ctx->inputs[i], &status, &rpts); in activate() local
80 nb_eofs += is_eof; in activate()
82 first_eof = is_eof; in activate()
/drivers/hdf_core/framework/tools/hdi-gen/
H A Dbuild_hdi_files_info.py51 def __init__(self, is_eof, char):
52 self.is_eof = is_eof
56 return "{%s, %s}" % (self.is_eof, self.char)
111 while not self.peek_char().is_eof:
133 while not self.peek_char().is_eof:
152 if not new_char.is_eof:
164 while not self.peek_char().is_eof:
175 while not self.peek_char().is_eof:
/kernel/linux/linux-5.10/tools/testing/selftests/powerpc/nx-gzip/
H A Dgunz_test.c289 int is_final, is_eof; in decompress_file() local
395 is_final = is_eof = 0; in decompress_file()
421 if (is_eof != 0) in decompress_file()
455 is_eof = 1; in decompress_file()
472 is_eof = 1; in decompress_file()
894 if (is_eof && (source_sz == 0)) in decompress_file()
/kernel/linux/linux-6.6/tools/testing/selftests/powerpc/nx-gzip/
H A Dgunz_test.c289 int is_final, is_eof; in decompress_file() local
395 is_final = is_eof = 0; in decompress_file()
421 if (is_eof != 0) in decompress_file()
455 is_eof = 1; in decompress_file()
472 is_eof = 1; in decompress_file()
894 if (is_eof && (source_sz == 0)) in decompress_file()
/third_party/rust/crates/regex/regex-syntax/src/ast/
H A Dparse.rs469 if self.is_eof() { in bump()
521 !self.is_eof() in bump_and_bump_space()
537 while !self.is_eof() { in bump_space()
544 while !self.is_eof() { in bump_space()
567 if self.is_eof() { in peek()
579 if self.is_eof() { in peek_space()
600 fn is_eof(&self) -> bool { in is_eof() functions
963 if self.is_eof() { in parse_with_comments()
1112 if self.is_eof() { in parse_counted_repetition()
1136 if self.is_eof() || sel in parse_counted_repetition()
[all...]
/third_party/skia/third_party/externals/tint/src/reader/wgsl/
H A Dlexer.h74 bool is_eof() const;
H A Dlexer.cc115 bool Lexer::is_eof() const { in is_eof() function in tint::reader::wgsl::Lexer
144 while (!is_eof() && is_whitespace(content_->data[pos_])) { in skip_whitespace_and_comments()
166 if (is_eof()) { in skip_whitespace_and_comments()
177 while (!is_eof() && !matches(pos_, "\n")) { in skip_comment()
195 while (!is_eof() && depth > 0) { in skip_comment()
662 while (!is_eof() && is_hex(content_->data[end])) { in try_hex_integer()
735 while (!is_eof() && is_alphanum_underscore(content_->data[pos_])) { in try_ident()
/kernel/linux/linux-6.6/drivers/net/ethernet/freescale/enetc/
H A Denetc.c313 tx_ring->tx_swbd[i].is_eof = true; in enetc_map_tx_buffs()
411 tx_swbd->is_eof = 1; in enetc_map_tx_tso_data()
834 bool is_eof = tx_swbd->is_eof; in enetc_clean_tx_ring() local
887 if (is_eof) { in enetc_clean_tx_ring()
1280 while (unlikely(!tmp_tx_swbd->is_eof)) { in enetc_xdp_tx()
1293 if (xdp_tx_swbd->is_eof) { in enetc_xdp_tx()
1330 xdp_tx_swbd->is_eof = false; in enetc_xdp_frame_to_xdp_tx_swbd()
1361 xdp_tx_swbd->is_eof = false; in enetc_xdp_frame_to_xdp_tx_swbd()
1368 xdp_tx_arr[n - 1].is_eof in enetc_xdp_frame_to_xdp_tx_swbd()
[all...]
H A Denetc.h37 u8 is_eof:1; member
/third_party/skia/third_party/externals/brotli/c/tools/
H A Dbrotli.c944 BROTLI_BOOL is_eof = BROTLI_FALSE; in CompressFile() local
947 if (context->available_in == 0 && !is_eof) { in CompressFile()
949 is_eof = !HasMoreInput(context); in CompressFile()
953 is_eof ? BROTLI_OPERATION_FINISH : BROTLI_OPERATION_PROCESS, in CompressFile()
/third_party/rust/crates/regex/src/
H A Ddfa.rs919 if b.is_eof() { in exec_byte()
988 let cache = if b.is_eof() && self.prog.matches.len() > 1 { in exec_byte()
1726 fn is_eof(&self) -> bool { in is_eof() functions
1742 if self.is_eof() { in as_byte()
/kernel/linux/linux-5.10/drivers/net/ethernet/freescale/enetc/
H A Denetc.c410 bool is_eof = !!tx_swbd->skb; in enetc_clean_tx_ring() local
429 if (is_eof) { in enetc_clean_tx_ring()
449 if (is_eof) { in enetc_clean_tx_ring()
/kernel/linux/linux-5.10/drivers/tty/
H A Dn_tty.c1964 bool is_eof; in copy_from_read_buf() local
1973 is_eof = n == 1 && *from == EOF_CHAR(tty); in copy_from_read_buf()
1978 if (L_EXTPROC(tty) && ldata->icanon && is_eof && in copy_from_read_buf()
/kernel/linux/linux-6.6/drivers/tty/
H A Dn_tty.c1964 bool is_eof; in copy_from_read_buf() local
1973 is_eof = n == 1 && *from == EOF_CHAR(tty); in copy_from_read_buf()
1978 if (L_EXTPROC(tty) && ldata->icanon && is_eof && in copy_from_read_buf()

Completed in 27 milliseconds