Home
last modified time | relevance | path

Searched refs:short_size (Results 1 – 8 of 8) sorted by relevance

/third_party/gstreamer/gstplugins_base/ext/ogg/
Dvorbis_parse.c85 int short_size; in gst_parse_vorbis_header_packet() local
89 short_size = 1 << (packet->packet[28] & 0xF); in gst_parse_vorbis_header_packet()
92 pad->nln_increments[2] = 3 * (long_size >> 2) - (short_size >> 2); in gst_parse_vorbis_header_packet()
93 pad->nln_increments[1] = (long_size >> 2) + (short_size >> 2); in gst_parse_vorbis_header_packet()
95 pad->short_size = short_size; in gst_parse_vorbis_header_packet()
97 pad->nsn_increment = short_size >> 1; in gst_parse_vorbis_header_packet()
Dgstoggstream.h83 int short_size; member
Dgstoggstream.c989 size = pad->vorbis_mode_sizes[mode] ? pad->long_size : pad->short_size; in packet_duration_vorbis()
/third_party/gstreamer/gstplugins_base/ext/vorbis/
Dgstvorbisenc.h83 int long_size, short_size; member
Dgstvorbisenc.c563 size = enc->vorbis_mode_sizes[mode] ? enc->long_size : enc->short_size; in packet_duration_vorbis()
587 enc->short_size = 1 << (packet->packet[28] & 0xF); in parse_vorbis_header_packet()
/third_party/lwip/src/api/
Dsockets.c1660 u16_t short_size; in lwip_sendto_internal() local
1687 short_size = (u16_t)size; 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/
Dassembler-ia32.cc1675 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/
Dassembler-x64.cc1370 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()