/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_t 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 | 538 int64_t code_int; in ReadStatus() local 540 CodeKey(), &code_int)); in ReadStatus() 541 error::Code code = static_cast<error::Code>(code_int); in ReadStatus()
|
D | parallel_filter_dataset_op.cc | 571 int64_t code_int; in ReadStatusLocked() local 572 TF_RETURN_IF_ERROR(reader->ReadScalar(key, kErrorCode, &code_int)); in ReadStatusLocked() 573 error::Code code = static_cast<error::Code>(code_int); in ReadStatusLocked()
|
D | parallel_map_dataset_op.cc | 656 int64_t code_int; in ReadStatusLocked() local 657 TF_RETURN_IF_ERROR(reader->ReadScalar(key, kErrorCode, &code_int)); in ReadStatusLocked() 658 error::Code code = static_cast<error::Code>(code_int); in ReadStatusLocked()
|
D | parallel_interleave_dataset_op.cc | 1250 int64_t code_int; in ReadStatusLocked() local 1252 reader->ReadScalar(iterator_name, CodeKey(idx), &code_int)); in ReadStatusLocked() 1253 error::Code code = static_cast<error::Code>(code_int); in ReadStatusLocked()
|
/external/python/cpython3/Modules/ |
D | errnomodule.c | 59 _add_errcode(PyObject *module_dict, PyObject *error_dict, const char *name_str, int code_int) in _add_errcode() argument 66 PyObject *code = PyLong_FromLong(code_int); in _add_errcode()
|
/external/tensorflow/tensorflow/core/data/ |
D | dataset_utils.cc | 665 int64_t code_int; in ReadStatus() local 668 &code_int)); in ReadStatus() 669 error::Code code = static_cast<error::Code>(code_int); in ReadStatus()
|
/external/tensorflow/tensorflow/core/kernels/data/experimental/ |
D | parse_example_dataset_op.cc | 867 int64_t code_int; in ReadStatusLocked() local 868 TF_RETURN_IF_ERROR(reader->ReadScalar(CodeKey(index), &code_int)); in ReadStatusLocked() 869 error::Code code = static_cast<error::Code>(code_int); in ReadStatusLocked()
|
D | parallel_interleave_dataset_op.cc | 1131 int64_t code_int; in ReadStatusLocked() local 1133 iterator_name, strings::StrCat(prefix, "_", kCode), &code_int)); in ReadStatusLocked() 1134 error::Code code = static_cast<error::Code>(code_int); in ReadStatusLocked()
|
D | snapshot_dataset_op.cc | 1601 int64_t code_int; in ReadStatus() local 1602 TF_RETURN_IF_ERROR(reader->ReadScalar(CodeKey(index), &code_int)); in ReadStatus() 1603 error::Code code = static_cast<error::Code>(code_int); in ReadStatus()
|
/external/python/cpython3/Lib/test/ |
D | test_monitoring.py | 1716 code_int = code_template.format(cls="int", call=call_str) 1720 ns_int = self._exec(code_int)
|
/external/scapy/test/ |
D | regression.uts | 716 def interact_emulator(code_int, extra_args=[]): 718 code_int.side_effect = lambda *args, **kwargs: lambda *args, **kwargs: None
|