/third_party/ffmpeg/libavcodec/ |
D | dpx.c | 87 static uint16_t read10in32_gray(const uint8_t **ptr, uint32_t *lbuf, in read10in32_gray() argument 95 *lbuf = read32(ptr, is_big); in read10in32_gray() 99 temp = *lbuf >> shift & 0x3FF; in read10in32_gray() 100 *lbuf = *lbuf >> 10; in read10in32_gray() 105 static uint16_t read10in32(const uint8_t **ptr, uint32_t *lbuf, in read10in32() argument 111 *lbuf = read32(ptr, is_big); in read10in32() 115 *lbuf = *lbuf << 10 | *lbuf >> shift & 0x3FFFFF; in read10in32() 117 return *lbuf & 0x3FF; in read10in32() 120 static uint16_t read12in32(const uint8_t **ptr, uint32_t *lbuf, in read12in32() argument 126 *lbuf = read32(ptr, is_big); in read12in32() [all …]
|
/third_party/libpsl/tests/ |
D | test-registrable-domain.c | 106 char lbuf[258]; in test_psl() local 136 memset(lbuf, 'a', it); in test_psl() 137 lbuf[it] = 0; in test_psl() 139 lbuf[0] = '\370'; in test_psl() 140 test_iso(psl, lbuf, NULL); in test_psl() 142 lbuf[0] = '\303'; in test_psl() 143 lbuf[1] = '\270'; in test_psl() 144 test(psl, lbuf, NULL); in test_psl()
|
/third_party/ltp/testcases/kernel/syscalls/link/ |
D | link05.c | 27 struct stat fbuf, lbuf; in verify_link() local 39 SAFE_STAT(lname, &lbuf); in verify_link() 40 if (fbuf.st_nlink <= 1 || lbuf.st_nlink <= 1 || in verify_link() 41 (fbuf.st_nlink != lbuf.st_nlink)) { in verify_link() 48 (int)fbuf.st_nlink, (int)lbuf.st_nlink); in verify_link()
|
D | link02.c | 24 struct stat fbuf, lbuf; in verify_link() local 32 SAFE_STAT(NEWPATH, &lbuf); in verify_link() 34 if (fbuf.st_nlink > 1 && fbuf.st_nlink == lbuf.st_nlink) { in verify_link() 40 (int)fbuf.st_nlink, (int)lbuf.st_nlink); in verify_link()
|
/third_party/libwebsockets/lib/cose/ |
D | cose_sign.c | 107 uint8_t lbuf[MAX_BLOBBED_PARAMS], lb[9]; in lws_cose_sign_payload_chunk() local 210 lws_lec_init(&lec, lbuf, sizeof(lbuf)); in lws_cose_sign_payload_chunk() 234 lws_lec_init(&lec, lbuf, sizeof(lbuf)); in lws_cose_sign_payload_chunk() 294 lws_lec_init(&lec, lbuf, sizeof(lbuf)); in lws_cose_sign_payload_chunk() 448 lws_lec_init(&lec, lbuf, sizeof(lbuf)); in lws_cose_sign_payload_chunk()
|
/third_party/ltp/testcases/kernel/syscalls/statx/ |
D | statx02.c | 64 struct statx lbuf; in test_sym_link() local 75 TEST(statx(AT_FDCWD, LINK_FILE, AT_SYMLINK_NOFOLLOW, 0, &lbuf)); in test_sym_link() 86 if (fbuf.stx_ino != lbuf.stx_ino) in test_sym_link()
|
/third_party/gstreamer/gstplugins_base/ext/libvisual/ |
D | visual.c | 222 VisBuffer *lbuf, *rbuf; in gst_visual_render() local 236 lbuf = visual_buffer_new_with_buffer (ldata, sizeof (ldata), NULL); in gst_visual_render() 275 visual_object_unref (VISUAL_OBJECT (lbuf)); in gst_visual_render() 283 lbuf, in gst_visual_render() 290 visual_object_unref (VISUAL_OBJECT (lbuf)); in gst_visual_render()
|
/third_party/libwebsockets/lib/misc/fts/ |
D | trie-fd.c | 693 unsigned char lbuf[256], *p; in lws_fts_search() local 717 m = (int)read(ofd, lbuf, sizeof(lbuf) - 1); in lws_fts_search() 720 lbuf[sizeof(lbuf) - 1] = '\0'; in lws_fts_search() 722 p = (unsigned char *)strchr((char *)lbuf, '\n'); in lws_fts_search() 724 m = lws_ptr_diff(p, lbuf); in lws_fts_search() 725 lbuf[m] = '\0'; in lws_fts_search() 726 p = (unsigned char *)strchr((char *)lbuf, '\r'); in lws_fts_search() 728 m = lws_ptr_diff(p, lbuf); in lws_fts_search() 729 lbuf[m] = '\0'; in lws_fts_search() 731 lws_json_purify(ebuf, (const char *)lbuf, in lws_fts_search()
|
/third_party/libuv/test/ |
D | test-tcp-oob.c | 60 char lbuf[12]; in read_cb() local 72 ASSERT(-1 != recv(fd, lbuf, sizeof(lbuf), MSG_OOB)); in read_cb()
|
/third_party/skia/third_party/externals/microhttpd/doc/chapters/ |
D | tlsauthentication.inc | 235 size_t lbuf; 237 lbuf = 0; 238 gnutls_x509_crt_get_dn(client_cert, NULL, &lbuf); 239 buf = malloc(lbuf); 246 gnutls_x509_crt_get_dn(client_cert, buf, &lbuf); 267 size_t lbuf; 276 lbuf = 0; 277 result = gnutls_x509_crt_get_subject_alt_name2(client_cert, seq, NULL, &lbuf, 287 buf = malloc(lbuf); 297 &lbuf,
|
/third_party/gstreamer/gstplugins_bad/ext/teletextdec/ |
D | gstteletextdec.c | 898 GstBuffer *lbuf; in gst_teletextdec_export_rgba_page() local 906 gst_buffer_pool_acquire_buffer (teletext->buf_pool, &lbuf, NULL); in gst_teletextdec_export_rgba_page() 911 lbuf = gst_buffer_new_allocate (NULL, size, NULL); in gst_teletextdec_export_rgba_page() 912 if (NULL == lbuf) in gst_teletextdec_export_rgba_page() 916 if (!gst_buffer_map (lbuf, &buf_map, GST_MAP_WRITE)) { in gst_teletextdec_export_rgba_page() 917 gst_buffer_unref (lbuf); in gst_teletextdec_export_rgba_page() 922 gst_buffer_unmap (lbuf, &buf_map); in gst_teletextdec_export_rgba_page() 923 *buf = lbuf; in gst_teletextdec_export_rgba_page()
|
/third_party/toybox/toys/pending/ |
D | ip.c | 1002 lbuf[INET6_ADDRSTRLEN] = {0,}, lbuf_ifa[INET6_ADDRSTRLEN] = {0,}; in print_addrinfo() local 1039 if (!if_indextoname(ifa->ifa_index, lbuf)) perror_exit(NULL); in print_addrinfo() 1040 printf("%u: %s",ifa->ifa_index, lbuf); in print_addrinfo() 1051 lbuf, sizeof(lbuf))) perror_exit("inet"); in print_addrinfo() 1053 sprintf(family+strlen(family), lbuf, strlen(lbuf)); in print_addrinfo() 1064 if (addrinfo.to && strcmp(addrinfo.addr, lbuf)) in print_addrinfo() 1069 lbuf, sizeof(lbuf))) perror_exit("inet"); in print_addrinfo() 1070 sprintf(brd, " brd %s", lbuf); in print_addrinfo() 1075 lbuf, sizeof(lbuf))) perror_exit("inet"); in print_addrinfo() 1076 sprintf(any, " any %s", lbuf); in print_addrinfo() [all …]
|
/third_party/node/deps/nghttp2/lib/ |
D | nghttp2_session.c | 372 nghttp2_buf_free(&iframe->lbuf, mem); in session_inbound_frame_reset() 373 nghttp2_buf_wrap_init(&iframe->lbuf, NULL, 0); in session_inbound_frame_reset() 4770 iframe->lbuf.pos, in session_process_goaway_frame() 4771 nghttp2_buf_len(&iframe->lbuf)); in session_process_goaway_frame() 4773 nghttp2_buf_wrap_init(&iframe->lbuf, NULL, 0); in session_process_goaway_frame() 4908 &frame->ext, nghttp2_get_uint16(iframe->sbuf.pos), iframe->lbuf.pos, in session_process_altsvc_frame() 4909 nghttp2_buf_len(&iframe->lbuf)); in session_process_altsvc_frame() 4913 nghttp2_buf_wrap_init(&iframe->lbuf, NULL, 0); in session_process_altsvc_frame() 4924 rv = nghttp2_frame_unpack_origin_payload(&frame->ext, iframe->lbuf.pos, in session_process_origin_frame() 4925 nghttp2_buf_len(&iframe->lbuf), mem); in session_process_origin_frame() [all …]
|
D | nghttp2_session.h | 142 nghttp2_buf lbuf; member
|
/third_party/nghttp2/lib/ |
D | nghttp2_session.c | 372 nghttp2_buf_free(&iframe->lbuf, mem); in session_inbound_frame_reset() 373 nghttp2_buf_wrap_init(&iframe->lbuf, NULL, 0); in session_inbound_frame_reset() 4770 iframe->lbuf.pos, in session_process_goaway_frame() 4771 nghttp2_buf_len(&iframe->lbuf)); in session_process_goaway_frame() 4773 nghttp2_buf_wrap_init(&iframe->lbuf, NULL, 0); in session_process_goaway_frame() 4908 &frame->ext, nghttp2_get_uint16(iframe->sbuf.pos), iframe->lbuf.pos, in session_process_altsvc_frame() 4909 nghttp2_buf_len(&iframe->lbuf)); in session_process_altsvc_frame() 4913 nghttp2_buf_wrap_init(&iframe->lbuf, NULL, 0); in session_process_altsvc_frame() 4924 rv = nghttp2_frame_unpack_origin_payload(&frame->ext, iframe->lbuf.pos, in session_process_origin_frame() 4925 nghttp2_buf_len(&iframe->lbuf), mem); in session_process_origin_frame() [all …]
|
D | nghttp2_session.h | 142 nghttp2_buf lbuf; member
|
/third_party/FatFs/source/ |
D | ff.h | 72 #define DEF_NAMBUF WCHAR lbuf[FF_MAX_LFN+1]; /* LFN working buffer */ 73 #define INIT_NAMBUF(fs) { (fs)->lfnbuf = lbuf; }
|
/third_party/libsnd/src/ |
D | common.h | 377 int64_t lbuf [SF_BUFFER_LEN / sizeof (int64_t)] ; member 379 long lbuf [SF_BUFFER_LEN / sizeof (double)] ; member
|
/third_party/ltp/testcases/kernel/fs/fsstress/ |
D | fsstress.c | 1139 int readlink_path(pathname_t * name, char *lbuf, size_t lbufsiz) in readlink_path() argument 1145 rval = readlink(name->path, lbuf, lbufsiz-1); in readlink_path() 1147 lbuf[rval] = '\0'; in readlink_path() 1152 rval = readlink_path(&newname, lbuf, lbufsiz); in readlink_path()
|
/third_party/e2fsprogs/contrib/ |
D | fsstress.c | 1173 int readlink_path(pathname_t * name, char *lbuf, size_t lbufsiz) in readlink_path() argument 1179 rval = readlink(name->path, lbuf, lbufsiz); in readlink_path() 1184 rval = readlink_path(&newname, lbuf, lbufsiz); in readlink_path()
|
/third_party/skia/third_party/externals/microhttpd/doc/ |
D | libmicrohttpd-tutorial.info | 1609 size_t lbuf; 1611 lbuf = 0; 1612 gnutls_x509_crt_get_dn(client_cert, NULL, &lbuf); 1613 buf = malloc(lbuf); 1620 gnutls_x509_crt_get_dn(client_cert, buf, &lbuf); 1641 size_t lbuf; 1650 lbuf = 0; 1651 result = gnutls_x509_crt_get_subject_alt_name2(client_cert, seq, NULL, &lbuf, 1661 buf = malloc(lbuf); 1671 &lbuf,
|