Home
last modified time | relevance | path

Searched refs:code_int (Results 1 – 11 of 11) sorted by relevance

/external/libjpeg-turbo/
Dwrgif.c40 typedef INT16 code_int; /* must hold -1 .. 2**MAX_LZW_BITS */ typedef
42 #define LZW_TABLE_SIZE ((code_int)1 << MAX_LZW_BITS)
48 #define MAXCODE(n_bits) (((code_int)1 << (n_bits)) - 1)
78 code_int maxcode; /* maximum code, given n_bits */
84 code_int waiting_code; /* symbol not yet output; may be extendable */
88 code_int ClearCode; /* clear code (doesn't change) */
89 code_int EOFCode; /* EOF code (ditto) */
90 code_int free_code; /* LZW: first not-yet-used symbol code */
91 code_int code_counter; /* not LZW: counts output symbols */
94 code_int *hash_code; /* => hash table of symbol codes */
[all …]
/external/tensorflow/tensorflow/core/kernels/data/
Dwindow_dataset_op.cc348 int64 code_int; in ReadStatusLocked() local
349 TF_RETURN_IF_ERROR(reader->ReadScalar(CodeKey(index), &code_int)); in ReadStatusLocked()
350 error::Code code = static_cast<error::Code>(code_int); in ReadStatusLocked()
Dprefetch_dataset_op.cc526 int64 code_int; in ReadStatus() local
528 CodeKey(), &code_int)); in ReadStatus()
529 error::Code code = static_cast<error::Code>(code_int); in ReadStatus()
Dparallel_map_dataset_op.cc616 int64 code_int; in ReadStatusLocked() local
617 TF_RETURN_IF_ERROR(reader->ReadScalar(key, kErrorCode, &code_int)); in ReadStatusLocked()
618 error::Code code = static_cast<error::Code>(code_int); in ReadStatusLocked()
Ddataset_utils.cc773 int64 code_int; in ReadStatus() local
776 &code_int)); in ReadStatus()
777 error::Code code = static_cast<error::Code>(code_int); in ReadStatus()
Dparallel_interleave_dataset_op.cc1152 int64 code_int; in ReadStatusLocked() local
1154 reader->ReadScalar(iterator_name, CodeKey(idx), &code_int)); in ReadStatusLocked()
1155 error::Code code = static_cast<error::Code>(code_int); in ReadStatusLocked()
/external/python/cpython3/Modules/
Derrnomodule.c50 _add_errcode(PyObject *module_dict, PyObject *error_dict, const char *name_str, int code_int) in _add_errcode() argument
57 PyObject *code = PyLong_FromLong(code_int); in _add_errcode()
/external/tensorflow/tensorflow/core/kernels/data/experimental/
Dparallel_interleave_dataset_op.cc1093 int64 code_int; in ReadStatusLocked() local
1095 iterator_name, strings::StrCat(prefix, "_", kCode), &code_int)); in ReadStatusLocked()
1096 error::Code code = static_cast<error::Code>(code_int); in ReadStatusLocked()
Dparse_example_dataset_op.cc856 int64 code_int; in ReadStatusLocked() local
857 TF_RETURN_IF_ERROR(reader->ReadScalar(CodeKey(index), &code_int)); in ReadStatusLocked()
858 error::Code code = static_cast<error::Code>(code_int); in ReadStatusLocked()
Dsnapshot_dataset_op.cc1696 int64 code_int; in ReadStatus() local
1697 TF_RETURN_IF_ERROR(reader->ReadScalar(CodeKey(index), &code_int)); in ReadStatus()
1698 error::Code code = static_cast<error::Code>(code_int); in ReadStatus()
/external/scapy/test/
Dregression.uts226 def interact_emulator(code_int, extra_args=[]):
228 code_int.side_effect = lambda *args, **kwargs: lambda *args, **kwargs: None