Searched refs:short_size (Results 1 - 3 of 3) sorted by relevance
/third_party/lwip/src/api/ |
H A D | sockets.c | 1660 u16_t short_size; in lwip_sendto_internal() local 1687 short_size = (u16_t)size; in lwip_sendto_internal() 1708 LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_sendto(%d, data=%p, short_size=%"U16_F", flags=0x%x to=", in lwip_sendto_internal() 1709 s, data, short_size, flags)); in lwip_sendto_internal() 1716 if (netbuf_alloc(&buf, short_size) == NULL) { in lwip_sendto_internal() 1721 u16_t chksum = LWIP_CHKSUM_COPY(buf.p->payload, data, short_size); in lwip_sendto_internal() 1726 MEMCPY(buf.p->payload, data, short_size); in lwip_sendto_internal() 1731 err = netbuf_ref(&buf, data, short_size); in lwip_sendto_internal() 1751 return (err == ERR_OK ? short_size : -1); in lwip_sendto_internal()
|
/third_party/node/deps/v8/src/codegen/ia32/ |
H A D | assembler-ia32.cc | 1675 const int short_size = 2; in jmp_rel() local 1677 if (is_int8(offset - short_size) && !predictable_code_size()) { in jmp_rel() 1680 EMIT((offset - short_size) & 0xFF); in jmp_rel() 1747 const int short_size = 2; in j() local 1751 if (is_int8(offs - short_size)) { in j() 1754 EMIT((offs - short_size) & 0xFF); in j()
|
/third_party/node/deps/v8/src/codegen/x64/ |
H A D | assembler-x64.cc | 1370 const int short_size = 2; in j() local 1383 if (is_int8(offs - short_size) && !predictable_code_size()) { in j() 1386 emit((offs - short_size) & 0xFF); in j()
|
Completed in 17 milliseconds