Home
last modified time | relevance | path

Searched refs:p_buf (Results 1 – 5 of 5) sorted by relevance

/third_party/ffmpeg/libavformat/
Dspdifdec.c116 int ff_spdif_probe(const uint8_t *p_buf, int buf_size, enum AVCodecID *codec) in ff_spdif_probe() argument
118 const uint8_t *buf = p_buf; in ff_spdif_probe()
119 const uint8_t *probe_end = p_buf + FFMIN(2 * SPDIF_MAX_OFFSET, buf_size - 1); in ff_spdif_probe()
139 if (buf + 4 + AV_AAC_ADTS_HEADER_SIZE > p_buf + buf_size) in ff_spdif_probe()
143 probe_end = FFMIN(buf + SPDIF_MAX_OFFSET, p_buf + buf_size - 1); in ff_spdif_probe()
148 if (buf + offset >= p_buf + buf_size) in ff_spdif_probe()
Dspdif.h63 int ff_spdif_probe(const uint8_t *p_buf, int buf_size, enum AVCodecID *codec);
/third_party/openssl/test/
Dtrace_api_test.c80 char *p_buf = NULL; in test_trace_channel() local
100 len = BIO_get_mem_data(bio, &p_buf); in test_trace_channel()
101 if (!TEST_strn2_eq(p_buf, len, expected, expected_len)) in test_trace_channel()
/third_party/ltp/testcases/lib/
Dtst_net_vars.c464 char *p_buf = buf; in get_ipv4_network() local
480 sprintf(p_buf, i < prefix ? ".%d" : "%d", byte); in get_ipv4_network()
481 p_buf += strlen(p_buf); in get_ipv4_network()
/third_party/python/Lib/multiprocessing/
Dshared_memory.py167 p_buf = _winapi.MapViewOfFile(
176 size = _winapi.VirtualQuerySize(p_buf)