Home
last modified time | relevance | path

Searched refs:char_value (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython3/PC/clinic/
Dmsvcrtmodule.c.h314 msvcrt_putch_impl(PyObject *module, char char_value);
320 char char_value; in msvcrt_putch() local
322 if (!PyArg_Parse(arg, "c:putch", &char_value)) { in msvcrt_putch()
325 return_value = msvcrt_putch_impl(module, char_value); in msvcrt_putch()
372 msvcrt_ungetch_impl(PyObject *module, char char_value);
378 char char_value; in msvcrt_ungetch() local
380 if (!PyArg_Parse(arg, "c:ungetch", &char_value)) { in msvcrt_ungetch()
383 return_value = msvcrt_ungetch_impl(module, char_value); in msvcrt_ungetch()
/external/google-breakpad/src/client/
Dminidump_file_writer_unittest.cc63 unsigned char char_value; member
91 local.char_value = i; in WriteFile()
104 local.char_value = i; in WriteFile()
/external/python/cpython3/PC/
Dmsvcrtmodule.c315 msvcrt_putch_impl(PyObject *module, char char_value) in msvcrt_putch_impl() argument
319 _putch(char_value); in msvcrt_putch_impl()
358 msvcrt_ungetch_impl(PyObject *module, char char_value) in msvcrt_ungetch_impl() argument
364 res = _ungetch(char_value); in msvcrt_ungetch_impl()
/external/clang/test/PCH/
Dcxx_exprs.cpp44 static_assert(char_value == 97, "char_value is correct");
Dcxx_exprs.h85 const char char_value = 'a'; variable
/external/tensorflow/tensorflow/core/kernels/
Dunicode_ops.cc373 int64* next_row_split, UChar32 char_value, int char_length, in Decode() argument
379 UChar32 decoded_value = char_value; in Decode()
380 if (ShouldHandleFormatError(error_options_, char_value, in Decode()
/external/ImageMagick/coders/
Dmiff.c1899 char_value; in PopRunlengthPacket() local
1903 char_value=(unsigned char) ScaleQuantumToChar(ClampToQuantum( in PopRunlengthPacket()
1905 pixels=PopCharPixel(char_value,pixels); in PopRunlengthPacket()