Searched refs:code_int (Results 1 – 11 of 11) sorted by relevance
/external/libjpeg-turbo/ |
D | wrgif.c | 40 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/ |
D | window_dataset_op.cc | 348 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()
|
D | prefetch_dataset_op.cc | 526 int64 code_int; in ReadStatus() local 528 CodeKey(), &code_int)); in ReadStatus() 529 error::Code code = static_cast<error::Code>(code_int); in ReadStatus()
|
D | parallel_map_dataset_op.cc | 616 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()
|
D | dataset_utils.cc | 773 int64 code_int; in ReadStatus() local 776 &code_int)); in ReadStatus() 777 error::Code code = static_cast<error::Code>(code_int); in ReadStatus()
|
D | parallel_interleave_dataset_op.cc | 1152 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/ |
D | errnomodule.c | 50 _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/ |
D | parallel_interleave_dataset_op.cc | 1093 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()
|
D | parse_example_dataset_op.cc | 856 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()
|
D | snapshot_dataset_op.cc | 1696 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/ |
D | regression.uts | 226 def interact_emulator(code_int, extra_args=[]): 228 code_int.side_effect = lambda *args, **kwargs: lambda *args, **kwargs: None
|