Searched defs:short_size (Results 1 - 4 of 4) sorted by relevance

/external/syslinux/core/lwip/src/api/
H A Dsockets.c793 u16_t short_size; local
817 short_size = (u16_t)size;
831 p = pbuf_alloc(PBUF_TRANSPORT, short_size, PBUF_RAM);
836 chksum = LWIP_CHKSUM_COPY(p->payload, data, short_size);
841 p = pbuf_alloc(PBUF_TRANSPORT, short_size, PBUF_REF);
897 LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_sendto(%d, data=%p, short_size=%"U16_F", flags=0x%x to=",
898 s, data, short_size, flags));
905 if (netbuf_alloc(&buf, short_size) == NULL) {
910 u16_t chksum = LWIP_CHKSUM_COPY(buf.p->payload, data, short_size);
916 err = netbuf_take(&buf, data, short_size);
[all...]
/external/v8/src/x87/
H A Dassembler-x87.cc1461 const int short_size = 2; local
1465 if (is_int8(offs - short_size)) {
1468 EMIT((offs - short_size) & 0xFF);
1516 const int short_size = 2; local
1520 if (is_int8(offs - short_size)) {
1523 EMIT((offs - short_size) & 0xFF);
/external/v8/src/ia32/
H A Dassembler-ia32.cc1590 const int short_size = 2; local
1594 if (is_int8(offs - short_size)) {
1597 EMIT((offs - short_size) & 0xFF);
1645 const int short_size = 2; local
1649 if (is_int8(offs - short_size)) {
1652 EMIT((offs - short_size) & 0xFF);
/external/v8/src/x64/
H A Dassembler-x64.cc1207 const int short_size = 2; local
1220 if (is_int8(offs - short_size) && !predictable_code_size()) {
1223 emit((offs - short_size) & 0xFF);
1282 const int short_size = sizeof(int8_t); local
1287 if (is_int8(offs - short_size) && !predictable_code_size()) {
1290 emit((offs - short_size) & 0xFF);

Completed in 772 milliseconds