/third_party/mesa3d/src/gallium/drivers/nouveau/nv50/ |
H A D | nv50_miptree.c | 68 nv50_mt_choose_storage_type(struct nv50_miptree *mt, bool compressed) in nv50_mt_choose_storage_type() argument 70 const unsigned ms = util_logbase2(mt->base.base.nr_samples); in nv50_mt_choose_storage_type() 73 if (unlikely(mt->base.base.flags & NOUVEAU_RESOURCE_FLAG_LINEAR)) in nv50_mt_choose_storage_type() 75 if (unlikely(mt->base.base.bind & PIPE_BIND_CURSOR)) in nv50_mt_choose_storage_type() 78 switch (mt->base.base.format) { in nv50_mt_choose_storage_type() 116 switch (util_format_get_blocksizebits(mt->base.base.format)) { in nv50_mt_choose_storage_type() 131 if (mt->base.base.bind & PIPE_BIND_SCANOUT) { in nv50_mt_choose_storage_type() 151 if (mt->base.base.bind & PIPE_BIND_CURSOR) in nv50_mt_choose_storage_type() 164 struct nv50_miptree *mt = nv50_miptree(pt); in nv50_miptree_destroy() local 166 if (mt in nv50_miptree_destroy() 191 struct nv50_miptree *mt = nv50_miptree(pt); nv50_miptree_get_handle() local 206 nv50_miptree_init_ms_mode(struct nv50_miptree *mt) nv50_miptree_init_ms_mode() argument 235 nv50_miptree_init_layout_linear(struct nv50_miptree *mt, unsigned pitch_align) nv50_miptree_init_layout_linear() argument 261 nv50_miptree_init_layout_video(struct nv50_miptree *mt) nv50_miptree_init_layout_video() argument 283 nv50_miptree_init_layout_tiled(struct nv50_miptree *mt) nv50_miptree_init_layout_tiled() argument 335 struct nv50_miptree *mt = CALLOC_STRUCT(nv50_miptree); nv50_miptree_create() local 408 struct nv50_miptree *mt; nv50_miptree_from_handle() local 447 nv50_mt_zslice_offset(const struct nv50_miptree *mt, unsigned l, unsigned z) nv50_mt_zslice_offset() argument 470 nv50_surface_from_miptree(struct nv50_miptree *mt, const struct pipe_surface *templ) nv50_surface_from_miptree() argument 508 struct nv50_miptree *mt = nv50_miptree(pt); nv50_miptree_surface_new() local [all...] |
H A D | nv50_state_validate.c | 37 struct nv50_miptree *mt; in nv50_validate_fb() local 46 mt = nv50_miptree(fb->cbufs[i]->texture); in nv50_validate_fb() 48 bo = mt->base.bo; in nv50_validate_fb() 51 if (mt->layout_3d) in nv50_validate_fb() 55 assert(mt->layout_3d || !array_mode || array_size == 1); in nv50_validate_fb() 58 PUSH_DATAh(push, mt->base.address + sf->offset); in nv50_validate_fb() 59 PUSH_DATA (push, mt->base.address + sf->offset); in nv50_validate_fb() 64 PUSH_DATA (push, mt->level[sf->base.u.tex.level].tile_mode); in nv50_validate_fb() 65 PUSH_DATA (push, mt->layer_stride >> 2); in nv50_validate_fb() 76 PUSH_DATA (push, NV50_3D_RT_HORIZ_LINEAR | mt in nv50_validate_fb() 97 struct nv50_miptree *mt = nv50_miptree(fb->zsbuf->texture); nv50_validate_fb() local [all...] |
H A D | nv50_tex.c | 73 struct nv50_miptree *mt = nv50_miptree(texture); in nv50_create_texture_view() local 113 addr = mt->base.address; in nv50_create_texture_view() 115 depth = MAX2(mt->base.base.array_size, mt->base.base.depth0); in nv50_create_texture_view() 117 if (mt->base.base.array_size > 1) { in nv50_create_texture_view() 119 addr += view->pipe.u.tex.first_layer * mt->layer_stride; in nv50_create_texture_view() 141 tic[3] = mt->level[0].pitch; in nv50_create_texture_view() 142 tic[4] = mt->base.base.width0; in nv50_create_texture_view() 143 tic[5] = (1 << 16) | (mt->base.base.height0); in nv50_create_texture_view() 156 ((mt in nv50_create_texture_view() [all...] |
H A D | nv50_transfer.c | 20 struct nv50_miptree *mt = nv50_miptree(res); in nv50_m2mf_rect_setup() local 24 rect->bo = mt->base.bo; in nv50_m2mf_rect_setup() 25 rect->domain = mt->base.domain; in nv50_m2mf_rect_setup() 26 rect->base = mt->level[l].offset; in nv50_m2mf_rect_setup() 27 if (mt->base.bo->offset != mt->base.address) in nv50_m2mf_rect_setup() 28 rect->base += mt->base.address - mt->base.bo->offset; in nv50_m2mf_rect_setup() 29 rect->pitch = mt->level[l].pitch; in nv50_m2mf_rect_setup() 31 rect->width = w << mt in nv50_m2mf_rect_setup() 380 const struct nv50_miptree *mt = nv50_miptree(res); nv50_miptree_transfer_map() local 473 struct nv50_miptree *mt = nv50_miptree(tx->base.resource); nv50_miptree_transfer_unmap() local [all...] |
H A D | nv98_video_ppp.c | 46 struct nv50_miptree *mt = (struct nv50_miptree *)target->resources[i]; in nv98_decoder_setup_ppp() local 47 bo_refs[i].bo = mt->base.bo; in nv98_decoder_setup_ppp() 67 struct nv50_miptree *mt = (struct nv50_miptree *)target->resources[i]; in nv98_decoder_setup_ppp() local 69 PUSH_DATA (push, mt->base.address >> 8); in nv98_decoder_setup_ppp() 70 PUSH_DATA (push, (mt->base.address + mt->total_size/2) >> 8); in nv98_decoder_setup_ppp() 71 mt->base.status |= NOUVEAU_BUFFER_STATUS_GPU_WRITING; in nv98_decoder_setup_ppp()
|
/third_party/mesa3d/src/gallium/drivers/nouveau/nvc0/ |
H A D | nvc0_miptree.c | 187 const struct nv50_miptree *mt, in nvc0_mt_choose_storage_type() 190 const unsigned ms = util_logbase2(mt->base.base.nr_samples); in nvc0_mt_choose_storage_type() 192 if (unlikely(mt->base.base.bind & PIPE_BIND_CURSOR)) in nvc0_mt_choose_storage_type() 194 if (unlikely(mt->base.base.flags & NOUVEAU_RESOURCE_FLAG_LINEAR)) in nvc0_mt_choose_storage_type() 197 return nvc0_choose_tiled_storage_type(pscreen, mt->base.base.format, ms, compressed); in nvc0_mt_choose_storage_type() 201 nvc0_miptree_init_ms_mode(struct nv50_miptree *mt) in nvc0_miptree_init_ms_mode() argument 203 switch (mt->base.base.nr_samples) { in nvc0_miptree_init_ms_mode() 205 mt->ms_mode = NVC0_3D_MULTISAMPLE_MODE_MS8; in nvc0_miptree_init_ms_mode() 206 mt->ms_x = 2; in nvc0_miptree_init_ms_mode() 207 mt in nvc0_miptree_init_ms_mode() 186 nvc0_mt_choose_storage_type(struct pipe_screen *pscreen, const struct nv50_miptree *mt, bool compressed) nvc0_mt_choose_storage_type() argument 230 nvc0_miptree_init_layout_video(struct nv50_miptree *mt) nvc0_miptree_init_layout_video() argument 252 nvc0_miptree_init_layout_tiled(struct nv50_miptree *mt, uint64_t modifier) nvc0_miptree_init_layout_tiled() argument 313 nvc0_miptree_get_modifier(struct pipe_screen *pscreen, struct nv50_miptree *mt) nvc0_miptree_get_modifier() argument 349 struct nv50_miptree *mt = nv50_miptree(pt); nvc0_miptree_get_handle() local 362 nvc0_miptree_select_best_modifier(struct pipe_screen *pscreen, const struct nv50_miptree *mt, const uint64_t *modifiers, unsigned int count) nvc0_miptree_select_best_modifier() argument 449 struct nv50_miptree *mt = CALLOC_STRUCT(nv50_miptree); nvc0_miptree_create() local 558 nvc0_mt_zslice_offset(const struct nv50_miptree *mt, unsigned l, unsigned z) nvc0_mt_zslice_offset() argument [all...] |
H A D | nvc0_tex.c | 78 struct nv50_miptree *mt; in gm107_create_texture_view() local 84 mt = nv50_miptree(texture); in gm107_create_texture_view() 117 address = mt->base.address; in gm107_create_texture_view() 143 assert(!(mt->level[0].pitch & 0x1f)); in gm107_create_texture_view() 147 tic[3] |= mt->level[0].pitch >> 5; in gm107_create_texture_view() 148 tic[4] |= mt->base.base.width0 - 1; in gm107_create_texture_view() 150 tic[5] |= mt->base.base.height0 - 1; in gm107_create_texture_view() 161 ((mt->level[0].tile_mode & 0x0f0) >> 4 << 3) | in gm107_create_texture_view() 162 ((mt->level[0].tile_mode & 0xf00) >> 8 << 6); in gm107_create_texture_view() 164 depth = MAX2(mt in gm107_create_texture_view() 291 struct nv50_miptree *mt; gf100_create_texture_view() local 1050 struct nv50_miptree *mt = nv50_miptree(&res->base); nve4_set_surface_info() local 1111 struct nv50_miptree *mt = nv50_miptree(&res->base); nvc0_set_surface_info() local 1176 struct nv50_miptree *mt = nv50_miptree(view->resource); nvc0_validate_suf() local [all...] |
H A D | nvc0_transfer.c | 350 nvc0_mt_transfer_can_map_directly(struct nv50_miptree *mt) in nvc0_mt_transfer_can_map_directly() argument 352 if (mt->base.domain == NOUVEAU_BO_VRAM) in nvc0_mt_transfer_can_map_directly() 354 if (mt->base.base.usage != PIPE_USAGE_STAGING) in nvc0_mt_transfer_can_map_directly() 356 return !nouveau_bo_memtype(mt->base.bo); in nvc0_mt_transfer_can_map_directly() 360 nvc0_mt_sync(struct nvc0_context *nvc0, struct nv50_miptree *mt, unsigned usage) in nvc0_mt_sync() argument 362 if (!mt->base.mm) { in nvc0_mt_sync() 365 return !nouveau_bo_wait(mt->base.bo, access, nvc0->base.client); in nvc0_mt_sync() 368 return !mt->base.fence || nouveau_fence_wait(mt->base.fence, &nvc0->base.debug); in nvc0_mt_sync() 369 return !mt in nvc0_mt_sync() 382 struct nv50_miptree *mt = nv50_miptree(res); nvc0_miptree_transfer_map() local 501 struct nv50_miptree *mt = nv50_miptree(tx->base.resource); nvc0_miptree_transfer_unmap() local [all...] |
H A D | nvc0_video_ppp.c | 46 struct nv50_miptree *mt = (struct nv50_miptree *)target->resources[i]; in nvc0_decoder_setup_ppp() local 47 bo_refs[i].bo = mt->base.bo; in nvc0_decoder_setup_ppp() 67 struct nv50_miptree *mt = (struct nv50_miptree *)target->resources[i]; in nvc0_decoder_setup_ppp() local 69 PUSH_DATA (push, mt->base.address >> 8); in nvc0_decoder_setup_ppp() 70 PUSH_DATA (push, (mt->base.address + mt->total_size/2) >> 8); in nvc0_decoder_setup_ppp() 71 mt->base.status |= NOUVEAU_BUFFER_STATUS_GPU_WRITING; in nvc0_decoder_setup_ppp()
|
/third_party/toybox/toys/posix/ |
H A D | df.c | 98 static void show_mt(struct mtab_list *mt, int measuring) in show_mt() argument 104 if (!mt) return; in show_mt() 111 if (!strcmp(mt->type, al->arg)) break; in show_mt() 117 if (!(toys.optflags & FLAG_a) && !mt->statvfs.f_blocks) return; in show_mt() 122 size = mt->statvfs.f_files; in show_mt() 123 used = mt->statvfs.f_files - mt->statvfs.f_ffree; in show_mt() 124 avail = getuid() ? mt->statvfs.f_favail : mt->statvfs.f_ffree; in show_mt() 126 block = mt in show_mt() 173 struct mtab_list *mt, *mtstart, *mtend; df_main() local [all...] |
/third_party/libfuse/lib/ |
H A D | fuse_loop_mt.c | 50 struct fuse_mt *mt; member 125 static int fuse_loop_start_thread(struct fuse_mt *mt); 130 struct fuse_mt *mt = w->mt; in fuse_do_work() local 132 while (!fuse_session_exited(mt->se)) { in fuse_do_work() 137 res = fuse_session_receive_buf_int(mt->se, &w->fbuf, w->ch); in fuse_do_work() 143 fuse_session_exit(mt->se); in fuse_do_work() 144 mt->error = res; in fuse_do_work() 149 pthread_mutex_lock(&mt->lock); in fuse_do_work() 150 if (mt in fuse_do_work() 245 fuse_clone_chan(struct fuse_mt *mt) fuse_clone_chan() argument 279 fuse_loop_start_thread(struct fuse_mt *mt) fuse_loop_start_thread() argument 316 fuse_join_worker(struct fuse_mt *mt, struct fuse_worker *w) fuse_join_worker() argument 332 struct fuse_mt mt; fuse_session_loop_mt_312() local [all...] |
/third_party/mesa3d/src/gallium/drivers/nouveau/nv30/ |
H A D | nv30_miptree.c | 40 struct nv30_miptree *mt = nv30_miptree(pt); in layer_offset() local 41 struct nv30_miptree_level *lvl = &mt->level[level]; in layer_offset() 44 return (layer * mt->layer_size) + lvl->offset; in layer_offset() 59 struct nv30_miptree *mt = nv30_miptree(pt); in nv30_miptree_get_handle() local 62 if (!mt || !mt->base.bo) in nv30_miptree_get_handle() 65 stride = mt->level[0].pitch; in nv30_miptree_get_handle() 67 return nouveau_screen_bo_get_handle(pscreen, mt->base.bo, stride, handle); in nv30_miptree_get_handle() 73 struct nv30_miptree *mt = nv30_miptree(pt); in nv30_miptree_destroy() local 75 nouveau_bo_ref(NULL, &mt in nv30_miptree_destroy() 98 struct nv30_miptree *mt = nv30_miptree(pt); define_rect() local 287 struct nv30_miptree *mt = nv30_miptree(pt); nv30_miptree_transfer_map() local 379 struct nv30_miptree *mt = nv30_miptree(tx->base.resource); nv30_miptree_transfer_unmap() local 410 struct nv30_miptree *mt = CALLOC_STRUCT(nv30_miptree); nv30_miptree_create() local 511 struct nv30_miptree *mt; nv30_miptree_from_handle() local 548 struct nv30_miptree *mt = nv30_miptree(pt); /* guaranteed */ nv30_miptree_surface_new() local [all...] |
/third_party/mesa3d/src/glx/ |
H A D | indirect_transpose_matrix.c | 54 GLdouble mt[16]; in __indirect_glLoadTransposeMatrixd() local 56 TransposeMatrixd(m, mt); in __indirect_glLoadTransposeMatrixd() 57 __indirect_glLoadMatrixd(mt); in __indirect_glLoadTransposeMatrixd() 63 GLfloat mt[16]; in __indirect_glLoadTransposeMatrixf() local 65 TransposeMatrixf(m, mt); in __indirect_glLoadTransposeMatrixf() 66 __indirect_glLoadMatrixf(mt); in __indirect_glLoadTransposeMatrixf() 72 GLdouble mt[16]; in __indirect_glMultTransposeMatrixd() local 74 TransposeMatrixd(m, mt); in __indirect_glMultTransposeMatrixd() 75 __indirect_glMultMatrixd(mt); in __indirect_glMultTransposeMatrixd() 81 GLfloat mt[1 in __indirect_glMultTransposeMatrixf() local [all...] |
/third_party/node/deps/openssl/openssl/util/perl/ |
H A D | checkhandshake.pm | 112 $chnum++ if $message->mt() == TLSProxy::Message::MT_CLIENT_HELLO; 113 $shnum++ if $message->mt() == TLSProxy::Message::MT_SERVER_HELLO; 115 next if ($message->mt() != TLSProxy::Message::MT_CLIENT_HELLO 116 && $message->mt() != TLSProxy::Message::MT_SERVER_HELLO 117 && $message->mt() != 119 && $message->mt() != TLSProxy::Message::MT_CERTIFICATE 120 && $message->mt() != TLSProxy::Message::MT_CERTIFICATE_REQUEST); 122 next if $message->mt() == TLSProxy::Message::MT_CERTIFICATE 138 next if ($message->mt() != $extensions[$extloop][0]); 174 ok($message->mt [all...] |
/third_party/openssl/util/perl/ |
H A D | checkhandshake.pm | 112 $chnum++ if $message->mt() == TLSProxy::Message::MT_CLIENT_HELLO; 113 $shnum++ if $message->mt() == TLSProxy::Message::MT_SERVER_HELLO; 115 next if ($message->mt() != TLSProxy::Message::MT_CLIENT_HELLO 116 && $message->mt() != TLSProxy::Message::MT_SERVER_HELLO 117 && $message->mt() != 119 && $message->mt() != TLSProxy::Message::MT_CERTIFICATE 120 && $message->mt() != TLSProxy::Message::MT_CERTIFICATE_REQUEST); 122 next if $message->mt() == TLSProxy::Message::MT_CERTIFICATE 138 next if ($message->mt() != $extensions[$extloop][0]); 174 ok($message->mt [all...] |
/third_party/python/Modules/ |
H A D | _randommodule.c | 129 uint32_t *mt; in genrand_uint32() local 131 mt = self->state; in genrand_uint32() 136 y = (mt[kk]&UPPER_MASK)|(mt[kk+1]&LOWER_MASK); in genrand_uint32() 137 mt[kk] = mt[kk+M] ^ (y >> 1) ^ mag01[y & 0x1U]; in genrand_uint32() 140 y = (mt[kk]&UPPER_MASK)|(mt[kk+1]&LOWER_MASK); in genrand_uint32() 141 mt[kk] = mt[k in genrand_uint32() 188 uint32_t *mt; init_genrand() local 211 uint32_t *mt; init_by_array() local [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | readonlyArraysAndTuples.js | 15 function f1(ma: string[], ra: readonly string[], mt: [string, string], rt: readonly [string, string]) { 17 ma = mt; 20 ra = mt; 22 mt = ma; // Error 23 mt = ra; // Error 24 mt = rt; // Error 27 rt = mt; 42 function f1(ma, ra, mt, rt) {
44 ma = mt;
47 ra = mt;
[all...] |
/third_party/libwebsockets/lib/system/metrics/ |
H A D | metrics.c | 170 lws_metric_t *mt = lws_container_of(d, lws_metric_t, list); in lws_metrics_periodic_cb() local 171 lws_metric_pub_t *pub = lws_metrics_priv_to_pub(mt); in lws_metrics_periodic_cb() 315 lws_metric_t *mt; in lws_metric_create() local 333 mt = (lws_metric_t *)lws_zalloc(sizeof(*mt) /* private */ + in lws_metric_create() 337 if (!mt) in lws_metric_create() 340 pub = lws_metrics_priv_to_pub(mt); in lws_metric_create() 353 mt->ctx = ctx; in lws_metric_create() 364 lws_dll2_add_tail(&mt->list, &dmp->owner); in lws_metric_create() 375 lws_dll2_add_tail(&mt in lws_metric_create() 386 lws_metric_get_policy(lws_metric_t *mt) lws_metric_get_policy() argument 418 lws_metric_t *mt = lws_container_of(d, lws_metric_t, list); lws_metric_rebind_policies() local 439 lws_metric_t *mt = *pmt; lws_metric_destroy() local 478 lws_metric_switch_policy(lws_metric_t *mt, const char *polname) lws_metric_switch_policy() argument 541 lws_metric_t *mt = lws_container_of(d, lws_metric_t, list); lws_metrics_destroy() local 653 lws_metric_t *mt = lws_container_of(d, lws_metric_t, list); lws_metrics_foreach() local 669 lws_metric_t *mt = lws_container_of(e, lws_metric_t, list); lws_metrics_foreach() local 854 lws_metric_event(lws_metric_t *mt, char go_nogo, u_mt_t val) lws_metric_event() argument 882 lws_metrics_hist_bump_priv_tagged(lws_metric_pub_t *mt, lws_dll2_owner_t *tow, lws_dll2_owner_t *tow2) lws_metrics_hist_bump_priv_tagged() argument [all...] |
/third_party/node/benchmark/fixtures/ |
H A D | coverage-many-branches.js | 35 const mt = new CoveredClass(x, y); 36 return mt.add(); 40 let mt; 42 mt = new CoveredClass(x, y); 44 mt = new CoveredClass(x, y, { 51 return mt.addSpecial(); 55 const mt = new CoveredClass(x, y); 56 return mt.mult(); 60 let mt; 62 mt [all...] |
/third_party/toybox/lib/ |
H A D | portability.c | 58 struct mtab_list *mtlist = 0, *mt; in xgetmountlist() local 72 mt = xzalloc(sizeof(struct mtab_list) + strlen(me->f_fstypename) + in xgetmountlist() 74 dlist_add_nomalloc((void *)&mtlist, (void *)mt); in xgetmountlist() 78 stat(me->f_mntonname, &(mt->stat)); in xgetmountlist() 79 statvfs(me->f_mntonname, &(mt->statvfs)); in xgetmountlist() 82 mt->dir = stpcpy(mt->type, me->f_fstypename)+1; in xgetmountlist() 83 mt->device = stpcpy(mt->dir, me->f_mntonname)+1; in xgetmountlist() 84 mt in xgetmountlist() 151 struct mtab_list *mtlist = 0, *mt; xgetmountlist() local [all...] |
/third_party/node/deps/openssl/openssl/util/perl/TLSProxy/ |
H A D | Message.pm | 139 my $mt; 214 $message = create_message($server, $mt, $payload, 237 ($mt, $lenhi, $lenlo) = unpack('CnC', 241 print " Message type: $message_type{$mt}\n"; 255 $message = create_message($server, $mt, $payload, 305 my ($server, $mt, $data, $startoffset) = @_; 310 if ($mt == MT_CLIENT_HELLO) { 319 } elsif ($mt == MT_SERVER_HELLO) { 328 } elsif ($mt == MT_ENCRYPTED_EXTENSIONS) { 337 } elsif ($mt 568 sub mt global() subroutine [all...] |
/third_party/openssl/util/perl/TLSProxy/ |
H A D | Message.pm | 139 my $mt; 214 $message = create_message($server, $mt, $payload, 237 ($mt, $lenhi, $lenlo) = unpack('CnC', 241 print " Message type: $message_type{$mt}\n"; 255 $message = create_message($server, $mt, $payload, 305 my ($server, $mt, $data, $startoffset) = @_; 310 if ($mt == MT_CLIENT_HELLO) { 319 } elsif ($mt == MT_SERVER_HELLO) { 328 } elsif ($mt == MT_ENCRYPTED_EXTENSIONS) { 337 } elsif ($mt 568 sub mt global() subroutine [all...] |
/third_party/libwebsockets/include/libwebsockets/ |
H A D | lws-metrics.h | 202 lws_metrics_hist_bump_priv_tagged(lws_metric_pub_t *mt, lws_dll2_owner_t *tow, 220 struct lws_metric *mt; /**< NULL == inactive */ member 228 { if (_name.mt) { \ 230 lws_metrics_priv_to_pub(_name.mt)->name); \ 232 _name.mt = _mt; _name.us_start = lws_now_usecs(); } 234 lws_metric_caliper_t _name = { .mt = _mt, .us_start = lws_now_usecs() } 236 { if (_name.us_start) { lws_metric_event(_name.mt, _go_nogo, \ 240 #define lws_metrics_caliper_report_hist(_name, pwsi) if (_name.mt) { \ 241 lws_metrics_hist_bump_priv_tagged(lws_metrics_priv_to_pub(_name.mt), \ 252 _name.us_start = 0; _name.mt [all...] |
/third_party/toybox/toys/lsb/ |
H A D | umount.c | 55 struct mtab_list *mt = dlist_terminate(xgetmountlist("/etc/fstab")); in do_umount() local 58 while (mt) { in do_umount() 59 struct mtab_list *mtemp = mt; in do_umount() 62 if (!strcmp(mt->dir, dir)) while ((s = comma_iterate(&mt->opts, &len))) { in do_umount() 67 mt = mt->next; in do_umount()
|
/third_party/node/deps/openssl/openssl/ssl/statem/ |
H A D | statem_quic.c | 14 int quic_get_message(SSL *s, int *mt) in quic_get_message() argument 22 *mt = 0; in quic_get_message() 28 *mt = 0; in quic_get_message() 35 *mt = 0; in quic_get_message() 41 *mt = 0; in quic_get_message() 53 s->s3.tmp.message_type = *mt = *(s->init_buf->data); in quic_get_message()
|