Home
last modified time | relevance | path

Searched refs:frags (Results 1 – 25 of 27) sorted by relevance

12

/third_party/libwebsockets/lib/roles/http/
Dparsers.c93 memset(ah->frags, 0, sizeof(ah->frags)); in _lws_header_table_reset()
471 return wsi->http.ah->frags[n].len; in lws_hdr_fragment_length()
472 n = wsi->http.ah->frags[n].nfrag; in lws_hdr_fragment_length()
490 len += wsi->http.ah->frags[n].len; in lws_hdr_total_length()
491 n = wsi->http.ah->frags[n].nfrag; in lws_hdr_total_length()
516 f = wsi->http.ah->frags[f].nfrag; in lws_hdr_copy_fragment()
522 if (wsi->http.ah->frags[f].len >= len) in lws_hdr_copy_fragment()
525 memcpy(dst, wsi->http.ah->data + wsi->http.ah->frags[f].offset, in lws_hdr_copy_fragment()
526 wsi->http.ah->frags[f].len); in lws_hdr_copy_fragment()
527 dst[wsi->http.ah->frags[f].len] = '\0'; in lws_hdr_copy_fragment()
[all …]
Dcookie.c565 cookiep = wsi->http.ah->data + wsi->http.ah->frags[f].offset; in lws_parse_set_cookie()
566 fl = wsi->http.ah->frags[f].len; in lws_parse_set_cookie()
567 f = wsi->http.ah->frags[f].nfrag; in lws_parse_set_cookie()
Dprivate-lib-roles-http.h113 struct lws_fragments frags[WSI_TOKEN_COUNT]; member
/third_party/gstreamer/gstplugins_base/ext/gl/
Dgltestsrc.c326 const gchar *frags[2]; in _src_smpte_init() local
448 frags[0] = in _src_smpte_init()
452 frags[1] = smpte_fragment_src; in _src_smpte_init()
462 frags), NULL); in _src_smpte_init()
468 frags[1] = snow_fragment_src; in _src_smpte_init()
480 frags), NULL); in _src_smpte_init()
721 const gchar *frags[2]; in _src_checkers_init() local
725 frags[0] = in _src_checkers_init()
729 frags[1] = checkers_fragment_src; in _src_checkers_init()
741 frags), NULL); in _src_checkers_init()
[all …]
Dgstgldifferencematte.c92 const gchar *frags[2]; in gst_gl_differencematte_gl_start() local
117 frags[0] = in gst_gl_differencematte_gl_start()
122 frags[1] = difference_fragment_source; in gst_gl_differencematte_gl_start()
129 frags), NULL))) { in gst_gl_differencematte_gl_start()
135 frags[1] = hconv7_fragment_source_gles2; in gst_gl_differencematte_gl_start()
142 frags), NULL))) { in gst_gl_differencematte_gl_start()
148 frags[1] = vconv7_fragment_source_gles2; in gst_gl_differencematte_gl_start()
155 frags), NULL))) { in gst_gl_differencematte_gl_start()
161 frags[1] = texture_interp_fragment_source; in gst_gl_differencematte_gl_start()
168 frags), NULL))) { in gst_gl_differencematte_gl_start()
Dgstglcolorbalance.c281 const gchar *frags[4]; in _create_shader() local
288 frags[frag_i++] = glsl_external_image_extension; in _create_shader()
290 frags[frag_i++] = in _create_shader()
297 frags[frag_i++] = glsl_2D_image_sampler; in _create_shader()
300 frags[frag_i++] = glsl_external_image_sampler; in _create_shader()
307 frags[frag_i++] = frag_body = in _create_shader()
310 g_assert (frag_i <= G_N_ELEMENTS (frags)); in _create_shader()
318 frags), NULL))) { in _create_shader()
Dgstglalpha.c344 const gchar *frags[2]; in _create_shader() local
349 frags[0] = in _create_shader()
353 frags[1] = alpha_frag; in _create_shader()
361 frags), NULL))) { in _create_shader()
371 frags[1] = chroma_key_frag; in _create_shader()
379 frags), NULL))) { in _create_shader()
Dgstgldeinterlace.c424 const gchar *frags[2]; in gst_gl_deinterlace_get_fragment_shader() local
428 frags[0] = in gst_gl_deinterlace_get_fragment_shader()
432 frags[1] = shader_source; in gst_gl_deinterlace_get_fragment_shader()
442 frags), NULL))) { in gst_gl_deinterlace_get_fragment_shader()
/third_party/lwip/src/netif/
Dlowpan6.c80 struct pbuf *frags; member
293 if (lrh->frags) { in free_reass_datagram()
294 pbuf_free(lrh->frags); in free_reass_datagram()
718 lrh->frags = NULL; in lowpan6_input()
768 if (lrh->frags == NULL) { in lowpan6_input()
770 lrh->frags = p; in lowpan6_input()
775 for (q = lrh->frags, last = NULL; q != NULL; last = q, q = q->next) { in lowpan6_input()
801 lrh->frags = p; in lowpan6_input()
811 for (q = lrh->frags; q != NULL; q = q->next) { in lowpan6_input()
822 for (q = lrh->frags; q != NULL; q = q->next) { in lowpan6_input()
[all …]
/third_party/grpc/templates/
Dconfig.w32.template45 frags = dir.split('/')
46 for i in range(1, len(frags)):
47 dirset.add('/'.join(frags[:i]))
/third_party/libwebsockets/lib/roles/h2/
Dhpack.c236 if (!(ah->frags[ah->frag_index[hdr_token_idx]].flags & 1)) { in lws_frag_start()
247 ah->frags[ah->nfrag].offset = ah->pos; in lws_frag_start()
248 ah->frags[ah->nfrag].len = 0; in lws_frag_start()
249 ah->frags[ah->nfrag].nfrag = 0; in lws_frag_start()
250 ah->frags[ah->nfrag].flags = 2; /* we had reason to set it */ in lws_frag_start()
263 while (ah->frags[n].nfrag) in lws_frag_start()
264 n = ah->frags[n].nfrag; in lws_frag_start()
266 ah->frags[n].nfrag = ah->nfrag; in lws_frag_start()
278 ah->frags[ah->nfrag].len++; in lws_frag_append()
290 wsi->http.ah->frags[wsi->http.ah->nfrag].len--; in lws_frag_end()
[all …]
/third_party/pulseaudio/src/modules/oss/
Doss-util.h30 int pa_oss_set_fragments(int fd, int frags, int frag_size);
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/
Dieee802_11_common.c344 frag_ies->frags[frag_ies->n_frags].ie = pos; in ieee802_11_parse_fragment()
345 frag_ies->frags[frag_ies->n_frags].ie_len = elen; in ieee802_11_parse_fragment()
346 frag_ies->frags[frag_ies->n_frags].eid = frag_ies->last_eid; in ieee802_11_parse_fragment()
347 frag_ies->frags[frag_ies->n_frags].eid_ext = frag_ies->last_eid_ext; in ieee802_11_parse_fragment()
2681 if (frag_ies->frags[i].eid != eid || in ieee802_11_defrag_data()
2682 frag_ies->frags[i].eid_ext != eid_ext) in ieee802_11_defrag_data()
2685 ret = wpabuf_resize(&buf, frag_ies->frags[i].ie_len); in ieee802_11_defrag_data()
2692 wpabuf_put_data(buf, frag_ies->frags[i].ie, in ieee802_11_defrag_data()
2693 frag_ies->frags[i].ie_len); in ieee802_11_defrag_data()
Dieee802_11_common.h40 } frags[MAX_NUM_FRAG_IES_SUPPORTED]; member
/third_party/mbedtls/programs/ssl/
Dssl_client2.c651 int ret = 0, len, tail_len, i, written, frags, retry_left; in main() local
2485 frags = 0; in main()
2512 frags++; in main()
2550 frags = 1; in main()
2562 written, frags, (char *) buf ); in main()
Dssl_server2.c1287 int ret = 0, len, written, frags, exchanges_left; in main() local
3678 for( written = 0, frags = 0; written < len; written += ret, frags++ ) in main()
3733 frags = 1; in main()
3738 mbedtls_printf( " %d bytes written in %d fragments\n\n%s\n", written, frags, (char *) buf ); in main()
/third_party/libwebsockets/READMEs/
DREADME.cbor-lecp.md214 |`<t...>`||Container for indeterminite text string frags|
215 |`<b...>`||Container for indeterminite binary string frags|
DREADME.coding.md309 @section frags Fragmented messages
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DIntrinsicsNVVM.td242 // MMA ops must provide all parameters. Loads and stores -- only frags and layout_a.
248 class NVVM_MMA_SUPPORTED<list<WMMA_REGS> frags, string layout_a, string layout_b="-", int satf=-1> {
250 string mma = frags[0].ptx_elt_type
254 string ld = frags[0].ptx_elt_type
255 # ":" # frags[0].frag
258 string ldf = frags[0].ptx_elt_type
259 # ":" # frags[0].frag
261 string t = frags[0].ptx_elt_type;
266 string gcd = frags[0].geom
268 # !if(!eq(!size(frags), 4),
[all …]
/third_party/libwebsockets/lib/roles/http/client/
Dclient-http.c753 wsi->http.ah->frags[wsi->http.ah->frag_index[ in lws_client_interpret_server_handshake()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DHexagonPseudo.td9 // The pat frags in the definitions below need to have a named register,
DHexagonPatterns.td43 // SDNodes, use pf1/pf2 to convert them to PatFrags. Use common frags
66 // and GP, pat frags with HexagonCONST32 and HexagonCONST32_GP can be used.
79 // Type helper frags.
/third_party/libwebsockets/lib/roles/http/server/
Dserver.c1168 if (wsi->http.ah->frags[fi].nfrag) { in lws_check_basic_auth()
1226 wsi->http.ah->frags[fi].len = (uint16_t)lws_ptr_diff_size_t(pcolon, &plain[0]); in lws_check_basic_auth()
/third_party/FreeBSD/
DUPDATING825 As of r316810 for ipfilter, keep frags is no longer assumed when
827 documentation in man pages separating keep frags from keep state.
828 This allows keep state to be specified without forcing keep frags
829 and allows keep frags to be specified independently of keep state.
830 To maintain previous behaviour, also specify keep frags with
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Target/
DTargetSelectionDAG.td747 class PatFrags<dag ops, list<dag> frags, code pred = [{}],
750 list<dag> Fragments = frags;

12