Home
last modified time | relevance | path

Searched refs:read_unsigned (Results 1 – 25 of 74) sorted by relevance

123

/dports/print/cups-filters/cups-filters-1.28.10/cupsfilters/
H A Dimage-sun.c58 static unsigned read_unsigned(FILE *fp);
99 read_unsigned(fp); /* Skip magic */ in _cupsImageReadSunRaster()
100 img->xsize = read_unsigned(fp); in _cupsImageReadSunRaster()
101 img->ysize = read_unsigned(fp); in _cupsImageReadSunRaster()
102 ras_depth = read_unsigned(fp); in _cupsImageReadSunRaster()
103 /* ras_length */read_unsigned(fp); in _cupsImageReadSunRaster()
104 ras_type = read_unsigned(fp); in _cupsImageReadSunRaster()
105 /* ras_maptype*/read_unsigned(fp); in _cupsImageReadSunRaster()
106 ras_maplength = read_unsigned(fp); in _cupsImageReadSunRaster()
393 read_unsigned(FILE *fp) /* I - File to read from */ in read_unsigned() function
/dports/print/ghostscript9-base/ghostscript-9.06/cups/libs/filter/
H A Dimage-sun.c63 static unsigned read_unsigned(FILE *fp);
104 read_unsigned(fp); /* Skip magic */ in _cupsImageReadSunRaster()
105 img->xsize = read_unsigned(fp); in _cupsImageReadSunRaster()
106 img->ysize = read_unsigned(fp); in _cupsImageReadSunRaster()
107 ras_depth = read_unsigned(fp); in _cupsImageReadSunRaster()
108 /* ras_length */read_unsigned(fp); in _cupsImageReadSunRaster()
109 ras_type = read_unsigned(fp); in _cupsImageReadSunRaster()
110 /* ras_maptype*/read_unsigned(fp); in _cupsImageReadSunRaster()
111 ras_maplength = read_unsigned(fp); in _cupsImageReadSunRaster()
391 read_unsigned(FILE *fp) /* I - File to read from */ in read_unsigned() function
/dports/print/ghostscript9-x11/ghostscript-9.06/cups/libs/filter/
H A Dimage-sun.c63 static unsigned read_unsigned(FILE *fp);
104 read_unsigned(fp); /* Skip magic */ in _cupsImageReadSunRaster()
105 img->xsize = read_unsigned(fp); in _cupsImageReadSunRaster()
106 img->ysize = read_unsigned(fp); in _cupsImageReadSunRaster()
107 ras_depth = read_unsigned(fp); in _cupsImageReadSunRaster()
108 /* ras_length */read_unsigned(fp); in _cupsImageReadSunRaster()
109 ras_type = read_unsigned(fp); in _cupsImageReadSunRaster()
110 /* ras_maptype*/read_unsigned(fp); in _cupsImageReadSunRaster()
111 ras_maplength = read_unsigned(fp); in _cupsImageReadSunRaster()
391 read_unsigned(FILE *fp) /* I - File to read from */ in read_unsigned() function
/dports/audio/py-fmoo-audiotools/audiotools-3.0/docs/reference/shorten/algorithms/
H A Dprocess_audio_command.pfl17 FUNC read_unsigned "read unsigned" "shorten:read_unsigned";
23 energy <- read_unsigned(3);
30 energy <- read_unsigned(3);
37 energy <- read_unsigned(3);
44 energy <- read_unsigned(3);
H A Dread_long.pfl13 FUNC read_unsigned "read unsigned" "shorten:read_unsigned";
14 bit_count <- read_unsigned(2);
15 unsigned_ <- read_unsigned(bit_count);
H A Dprocess_verbatim.pfl13 FUNC read_unsigned "read unsigned" "shorten:read_unsigned";
14 total_bytes <- read_unsigned(5);
16 bytes_[i] <- read_unsigned(8);
H A Dprocess_qlpc_command.pfl20 FUNC read_unsigned "read unsigned" "shorten:read_unsigned";
22 energy <- read_unsigned(3);
23 LPC_count <- read_unsigned(2);
H A Dread_signed.pfl13 FUNC read_unsigned "read unsigned" "shorten:read_unsigned";
14 unsigned_ <- read_unsigned(bit_count + 1);
H A Dprocess_commands.pfl21 FUNC read_unsigned "read unsigned" "shorten:read_unsigned";
37 command <- read_unsigned(2);
71 left_shift <- read_unsigned(2);
/dports/math/z3/z3-z3-4.8.13/src/util/
H A Dhash.cpp24 static unsigned read_unsigned(const char *s) { in read_unsigned() function
43 a += read_unsigned(str); in string_hash()
44 b += read_unsigned(str+4); in string_hash()
45 c += read_unsigned(str+8); in string_hash()
/dports/math/py-z3-solver/z3-z3-4.8.10/src/util/
H A Dhash.cpp24 static unsigned read_unsigned(const char *s) { in read_unsigned() function
43 a += read_unsigned(str); in string_hash()
44 b += read_unsigned(str+4); in string_hash()
45 c += read_unsigned(str+8); in string_hash()
/dports/audio/py-fmoo-audiotools/audiotools-3.0/src/decoders/
H A Dshn.c284 verbatim_size = read_unsigned(self->bitstream, in OpusDecoder_exit()
288 read_unsigned(self->bitstream,
522 const unsigned energy = read_unsigned(bs, ENERGY_SIZE);
548 energy = read_unsigned(bs, ENERGY_SIZE);
576 energy = read_unsigned(bs, ENERGY_SIZE);
605 energy = read_unsigned(bs, ENERGY_SIZE);
626 const unsigned energy = read_unsigned(bs, ENERGY_SIZE);
694 read_unsigned(BitstreamReader* bs, unsigned count)
706 const unsigned u = read_unsigned(bs, count + 1);
716 return read_unsigned(bs, read_unsigned(bs, 2));
[all …]
/dports/math/pynac/pynac-pynac-0.7.27/ginac/
H A Darchive.cpp199 static unsigned read_unsigned(std::istream &is) in read_unsigned() function
263 unsigned num_props = read_unsigned(is); in operator >>()
266 unsigned name_type = read_unsigned(is); in operator >>()
269 n.props[i].value = read_unsigned(is); in operator >>()
282 unsigned version = read_unsigned(is); in operator >>()
287 unsigned num_atoms = read_unsigned(is); in operator >>()
295 unsigned num_exprs = read_unsigned(is); in operator >>()
298 archive_atom name = read_unsigned(is); in operator >>()
299 archive_node_id root = read_unsigned(is); in operator >>()
304 unsigned num_nodes = read_unsigned(is); in operator >>()
/dports/audio/py-fmoo-audiotools/audiotools-3.0/audiotools/
H A Dshn.py44 def read_unsigned(r, c): function
50 return read_unsigned(r, read_unsigned(r, 2))
89 command = read_unsigned(reader, 2)
93 bytes([read_unsigned(reader, 8) & 0xFF
94 for i in range(read_unsigned(reader, 5))])
97 b"".join([chr(read_unsigned(reader, 8) & 0xFF)
98 for i in range(read_unsigned(reader, 5))])
/dports/math/GiNaC/ginac-1.8.2/ginac/
H A Darchive.cpp184 static unsigned read_unsigned(std::istream &is) in read_unsigned() function
248 unsigned num_props = read_unsigned(is); in operator >>()
251 unsigned name_type = read_unsigned(is); in operator >>()
254 n.props[i].value = read_unsigned(is); in operator >>()
269 unsigned version = read_unsigned(is); in operator >>()
274 unsigned num_atoms = read_unsigned(is); in operator >>()
282 unsigned num_exprs = read_unsigned(is); in operator >>()
285 archive_atom name = read_unsigned(is); in operator >>()
286 archive_node_id root = read_unsigned(is); in operator >>()
291 unsigned num_nodes = read_unsigned(is); in operator >>()
/dports/math/gretl/gretl-2021d/plugin/
H A Deviews_import.c79 static unsigned int read_unsigned (FILE *fp, int *err) in read_unsigned() function
131 hpos = read_unsigned(fp, &err); in wf1_read_history()
300 sz = read_unsigned(fp, &err); in read_wf1_variables()
303 sz = read_unsigned(fp, &err); in read_wf1_variables()
323 u = read_unsigned(fp, &err); in read_wf1_variables()
336 u = read_unsigned(fp, &err); in read_wf1_variables()
394 off = read_unsigned(fp, &err); in parse_wf1_header()
/dports/sysutils/dua-cli/dua-cli-2.14.11/cargo-crates/windows_gen-0.9.1/src/parser/
H A Dblob.rs33 pub fn read_unsigned(&mut self) -> u32 { in read_unsigned() method
58 mods.push(TypeDefOrRef::decode(self.file, self.read_unsigned())) in read_modifiers()
66 let len = self.read_unsigned() as usize; in read_str()
/dports/sysutils/dua-cli/dua-cli-2.14.11/cargo-crates/windows_gen-0.9.1/src/tables/
H A Dattribute.rs28 let _this_and_gen_param_count = sig.read_unsigned(); in args()
29 let fixed_arg_count = sig.read_unsigned(); in args()
30 let _ret_type = sig.read_unsigned(); in args()
/dports/audio/py-fmoo-audiotools/audiotools-3.0/docs/reference/
H A Dshorten.tex18 \label{shorten:read_unsigned}
20 \input{shorten/algorithms/read_unsigned}
/dports/devel/py-billiard/billiard-3.6.3.0/billiard/
H A Dpopen_forkserver.py57 self.pid = forkserver.read_unsigned(self.sentinel)
66 self.returncode = forkserver.read_unsigned(self.sentinel)
/dports/devel/py-multiprocess/multiprocess-0.70.12.2/py3.4/multiprocess/
H A Dpopen_forkserver.py56 self.pid = forkserver.read_unsigned(self.sentinel)
65 self.returncode = forkserver.read_unsigned(self.sentinel)
/dports/devel/py-multiprocess/multiprocess-0.70.12.2/py3.6/multiprocess/
H A Dpopen_forkserver.py55 self.pid = forkserver.read_unsigned(self.sentinel)
64 self.returncode = forkserver.read_unsigned(self.sentinel)
/dports/devel/py-multiprocess/multiprocess-0.70.12.2/pypy3.6/multiprocess/
H A Dpopen_forkserver.py55 self.pid = forkserver.read_unsigned(self.sentinel)
64 self.returncode = forkserver.read_unsigned(self.sentinel)
/dports/devel/py-multiprocess/multiprocess-0.70.12.2/py3.5/multiprocess/
H A Dpopen_forkserver.py56 self.pid = forkserver.read_unsigned(self.sentinel)
65 self.returncode = forkserver.read_unsigned(self.sentinel)
/dports/games/warzone2100/warzone2100/3rdparty/date/include/date/
H A Dptz.h76 unsigned read_unsigned(const string_t& s, unsigned i, unsigned limit, unsigned& u,
607 i = read_unsigned(s, i, 3, n, "Expected to find the Julian day [1, 365]"); in read_date()
615 i = read_unsigned(s, i, 2, m, "Expected to find month [1, 12]"); in read_date()
620 i = read_unsigned(s, i, 1, n, "Expected to find week number [1, 5]"); in read_date()
625 i = read_unsigned(s, i, 1, wd, "Expected to find day of week [0, 6]"); in read_date()
634 i = read_unsigned(s, i, 3, n); in read_date()
715 i = read_unsigned(s, i, 2, x, "Expected to find hours [0, 24]"); in read_unsigned_time()
720 i = read_unsigned(s, i, 2, x, "Expected to find minutes [0, 59]"); in read_unsigned_time()
725 i = read_unsigned(s, i, 2, x, "Expected to find seconds [0, 59]"); in read_unsigned_time()
734 read_unsigned(const string_t& s, unsigned i, unsigned limit, unsigned& u, in read_unsigned() function

123