Home
last modified time | relevance | path

Searched refs:frame_size (Results 1 – 7 of 7) sorted by relevance

/minix/minix/lib/libc/sys/
H A Dexecve.c17 size_t frame_size = 0; /* Size of the new initial stack. */ in execve() local
25 minix_stack_params(path, argv, envp, &frame_size, &overflow, in execve()
35 if ((frame = (char *) sbrk(frame_size)) == (char *) -1) { in execve()
40 minix_stack_fill(path, argc, argv, envc, envp, frame_size, frame, in execve()
50 m.m_lc_pm_exec.framelen = frame_size; in execve()
56 (void) sbrk(-frame_size); in execve()
/minix/minix/servers/rs/
H A Dexec.c24 size_t frame_size = 0; /* Size of the new initial stack. */ in srv_execve() local
34 minix_stack_params(argv[0], argv, envp, &frame_size, &overflow, in srv_execve()
44 if ((frame = (char *) sbrk(frame_size)) == (char *) -1) { in srv_execve()
49 minix_stack_fill(argv[0], argc, argv, envc, envp, frame_size, frame, in srv_execve()
52 r = do_exec(proc_e, exec, exec_len, progname, frame, frame_size, in srv_execve()
56 (void) sbrk(-frame_size); in srv_execve()
/minix/minix/servers/vm/
H A Dmain.c338 size_t frame_size = 0; /* Size of the new initial stack. */ in exec_bootproc() local
388 minix_stack_params(path, argv, envp, &frame_size, &overflow, &argc, in exec_bootproc()
393 if(overflow || frame_size > sizeof(frame)) in exec_bootproc()
397 minix_stack_fill(path, argc, argv, envc, envp, frame_size, frame, &vsp, in exec_bootproc()
400 if(handle_memory_once(vmp, vsp, frame_size, 1) != OK) in exec_bootproc()
404 if(sys_datacopy(SELF, (vir_bytes)frame, vmp->vm_endpoint, vsp, frame_size) != OK) in exec_bootproc()
/minix/minix/servers/vfs/
H A Dexec.c413 static int stack_prepare_elf(struct vfs_exec_info *execi, char *frame, size_t *frame_size, in stack_prepare_elf() argument
420 (frame + (*frame_size - sizeof(struct ps_strings))); in stack_prepare_elf()
432 if (*frame_size < STACK_MIN_SZ) { in stack_prepare_elf()
444 ((char *)aux_vec > (frame + *frame_size))) { in stack_prepare_elf()
451 ((char *)aux_vec_end > (frame + *frame_size))) { in stack_prepare_elf()
/minix/minix/lib/liblwip/dist/src/apps/snmp/
H A Dsnmp_msg.c1610 u16_t frame_size; in snmp_complete_outbound_frame() local
1677 frame_size = request->outbound_pbuf_stream.offset; in snmp_complete_outbound_frame()
1683 …outbound_padding = (8 - (u8_t)((frame_size - request->outbound_scoped_pdu_seq_offset) & 0x07)) & 0… in snmp_complete_outbound_frame()
1691 …SNMP_ASN1_SET_TLV_PARAMS(tlv, SNMP_ASN1_TYPE_SEQUENCE, 3, frame_size + outbound_padding - 1 - 3); … in snmp_complete_outbound_frame()
1716 …SNMP_ASN1_SET_TLV_PARAMS(tlv, SNMP_ASN1_TYPE_SEQUENCE, 3, frame_size - request->outbound_scoped_pd… in snmp_complete_outbound_frame()
1724frame_size - request->outbound_pdu_offset - 1 - 3); /* - type - length_len(fixed, see snmp_prepare… in snmp_complete_outbound_frame()
1783 …SNMP_ASN1_SET_TLV_PARAMS(tlv, SNMP_ASN1_TYPE_SEQUENCE, 3, frame_size - request->outbound_varbind_o… in snmp_complete_outbound_frame()
1797 SNMP_ASN1_SET_TLV_PARAMS(tlv, SNMP_ASN1_TYPE_OCTET_STRING, 3, frame_size + outbound_padding in snmp_complete_outbound_frame()
1816 …OF_BUILD_EXEC(snmpv3_auth(&request->outbound_pbuf_stream, frame_size + outbound_padding, key, algo… in snmp_complete_outbound_frame()
1831 pbuf_realloc(request->outbound_pbuf, frame_size + outbound_padding); in snmp_complete_outbound_frame()
/minix/crypto/external/bsd/openssl/dist/crypto/aes/asm/
H A Daesni-x86_64.pl1320 my $frame_size = 0x68 + ($win64?160:0);
1327 lea -$frame_size(%rsp),%rsp
1706 lea $frame_size(%rsp),%rsp
1717 lea -$frame_size(%rsp),%rsp
2132 lea $frame_size(%rsp),%rsp
/minix/external/bsd/libpcap/dist/
H A Dpcap-linux.c3803 unsigned int frame_size; local
3847 frame_size = handle->snapshot;
3864 if (frame_size > mtu + 18)
3865 frame_size = mtu + 18;
3929 req.tp_frame_size = TPACKET_ALIGN(macoff + frame_size);