Searched refs:bytes_size (Results 1 - 6 of 6) sorted by relevance
/third_party/libcoap/src/ |
H A D | coap_ws.c | 164 ssize_t bytes_size; in coap_ws_log_header() 167 bytes_size = header[1] & WS_B1_LEN_MASK; in coap_ws_log_header() 168 if (bytes_size == 127) { in coap_ws_log_header() 170 } else if (bytes_size == 126) { in coap_ws_log_header() 581 ssize_t bytes_size = 0; in coap_ws_read() local 655 bytes_size = session->ws->rd_header[1] & WS_B1_LEN_MASK; in coap_ws_read() 656 if (bytes_size == 127) { in coap_ws_read() 658 } else if (bytes_size == 126) { in coap_ws_read() 688 if (bytes_size == 127) { in coap_ws_read() 689 bytes_size in coap_ws_read() [all...] |
/third_party/python/Modules/_io/ |
H A D | winconsoleio.c | 777 DWORD bytes_size, rn; in _io__WindowsConsoleIO_readall_impl() local 845 bytes_size = WideCharToMultiByte(CP_UTF8, 0, buf, len, in _io__WindowsConsoleIO_readall_impl() local 849 if (!bytes_size) { in _io__WindowsConsoleIO_readall_impl() 855 bytes_size = 0; in _io__WindowsConsoleIO_readall_impl() 858 bytes_size += _buflen(self); in _io__WindowsConsoleIO_readall_impl() 859 bytes = PyBytes_FromStringAndSize(NULL, bytes_size); in _io__WindowsConsoleIO_readall_impl() 860 rn = _copyfrombuf(self, PyBytes_AS_STRING(bytes), bytes_size); in _io__WindowsConsoleIO_readall_impl() 864 bytes_size = WideCharToMultiByte(CP_UTF8, 0, buf, len, in _io__WindowsConsoleIO_readall_impl() local 865 &PyBytes_AS_STRING(bytes)[rn], bytes_size - rn, NULL, NULL); in _io__WindowsConsoleIO_readall_impl() 868 if (!bytes_size) { in _io__WindowsConsoleIO_readall_impl() 906 Py_ssize_t bytes_size; _io__WindowsConsoleIO_read_impl() local [all...] |
/third_party/python/Lib/multiprocessing/ |
H A D | reduction.py | 156 bytes_size = a.itemsize * size 157 msg, ancdata, flags, addr = sock.recvmsg(1, socket.CMSG_SPACE(bytes_size))
|
/third_party/jerryscript/jerry-core/ecma/base/ |
H A D | ecma-helpers-string.c | 495 lit_utf8_size_t bytes_size = lit_code_unit_to_utf8 (code_unit, lit_utf8_bytes); in ecma_new_ecma_string_from_code_unit() local 497 return ecma_new_ecma_string_from_utf8 (lit_utf8_bytes, bytes_size); in ecma_new_ecma_string_from_code_unit() 512 lit_utf8_size_t bytes_size = lit_code_unit_to_utf8 (first_code_unit, lit_utf8_bytes); in ecma_new_ecma_string_from_code_units() local 513 bytes_size += lit_code_unit_to_utf8 (second_code_unit, lit_utf8_bytes + bytes_size); in ecma_new_ecma_string_from_code_units() 515 return ecma_new_ecma_string_from_utf8 (lit_utf8_bytes, bytes_size); in ecma_new_ecma_string_from_code_units()
|
/third_party/f2fs-tools/tools/ |
H A D | f2fscrypt.c | 211 size_t bytes_size) in hex2byte() 225 if ((x >> 1) >= bytes_size) in hex2byte() 210 hex2byte(const char *hex, size_t hex_size, unsigned char *bytes, size_t bytes_size) hex2byte() argument
|
/third_party/mesa3d/src/amd/compiler/ |
H A D | aco_instruction_selection.cpp | 4415 unsigned bytes_size = 0; 4418 bytes_size = 1; 4421 bytes_size = 2; 4424 bytes_size = 4; 4427 bytes_size = 8; 4430 bytes_size = 12; 4433 bytes_size = 16; 4448 RegClass rc = RegClass::get(RegType::vgpr, bytes_size); 4462 unsigned bytes_size = 0; 4465 bytes_size [all...] |
Completed in 14 milliseconds