Searched refs:minsize (Results 1 - 23 of 23) sorted by relevance

/external/elfutils/libdw/
H A Dlibdw_alloc.c66 __libdw_allocate (Dwarf *dbg, size_t minsize, size_t align) argument
70 2 * minsize + offsetof (struct libdw_memblock, mem)));
78 newp->remaining = (uintptr_t) newp + size - (result + minsize);
H A DlibdwP.h355 extern void *__libdw_allocate (Dwarf *dbg, size_t minsize, size_t align)
/external/dnsmasq/contrib/wrt/
H A Ddhcp_lease_time.c71 static unsigned char *option_find1(unsigned char *p, unsigned char *end, int opt, int minsize) argument
87 if (*p == opt && opt_len >= minsize)
96 static unsigned char *option_find(struct dhcp_packet *mess, size_t size, int opt_type, int minsize) argument
101 if ((ret = option_find1(&mess->options[0], ((unsigned char *)mess) + size, opt_type, minsize)))
110 (ret = option_find1(&mess->file[0], &mess->file[128], opt_type, minsize)))
115 (ret = option_find1(&mess->sname[0], &mess->sname[64], opt_type, minsize)))
/external/openssl/crypto/ui/
H A Dui.h131 char *result_buf, int minsize, int maxsize);
133 char *result_buf, int minsize, int maxsize);
135 char *result_buf, int minsize, int maxsize, const char *test_buf);
137 char *result_buf, int minsize, int maxsize, const char *test_buf);
H A Dui_lib.c167 char *result_buf, int minsize, int maxsize, const char *test_buf)
177 s->_.string_data.result_minsize=minsize;
244 char *result_buf, int minsize, int maxsize)
247 UIT_PROMPT, flags, result_buf, minsize, maxsize, NULL);
252 char *result_buf, int minsize, int maxsize)
267 UIT_PROMPT, flags, result_buf, minsize, maxsize, NULL);
271 char *result_buf, int minsize, int maxsize, const char *test_buf)
274 UIT_VERIFY, flags, result_buf, minsize, maxsize, test_buf);
278 char *result_buf, int minsize, int maxsize, const char *test_buf)
293 UIT_VERIFY, flags, result_buf, minsize, maxsiz
165 general_allocate_string(UI *ui, const char *prompt, int prompt_freeable, enum UI_string_types type, int input_flags, char *result_buf, int minsize, int maxsize, const char *test_buf) argument
243 UI_add_input_string(UI *ui, const char *prompt, int flags, char *result_buf, int minsize, int maxsize) argument
251 UI_dup_input_string(UI *ui, const char *prompt, int flags, char *result_buf, int minsize, int maxsize) argument
270 UI_add_verify_string(UI *ui, const char *prompt, int flags, char *result_buf, int minsize, int maxsize, const char *test_buf) argument
277 UI_dup_verify_string(UI *ui, const char *prompt, int flags, char *result_buf, int minsize, int maxsize, const char *test_buf) argument
[all...]
/external/openssl/include/openssl/
H A Dui.h131 char *result_buf, int minsize, int maxsize);
133 char *result_buf, int minsize, int maxsize);
135 char *result_buf, int minsize, int maxsize, const char *test_buf);
137 char *result_buf, int minsize, int maxsize, const char *test_buf);
H A Dasn1.h273 long minsize; member in struct:asn1_string_table_st
1075 long minsize, long maxsize);
/external/openssl/crypto/asn1/
H A Da_strnid.c136 tbl->minsize, tbl->maxsize);
213 long minsize, long maxsize, unsigned long mask,
235 if(minsize != -1) tmp->minsize = minsize;
212 ASN1_STRING_TABLE_add(int nid, long minsize, long maxsize, unsigned long mask, unsigned long flags) argument
H A Da_mbstr.c91 long minsize, long maxsize)
146 if((minsize > 0) && (nchar < minsize)) {
148 BIO_snprintf(strbuf, sizeof strbuf, "%ld", minsize);
149 ERR_add_error_data(2, "minsize=", strbuf);
89 ASN1_mbstring_ncopy(ASN1_STRING **out, const unsigned char *in, int len, int inform, unsigned long mask, long minsize, long maxsize) argument
H A Dasn1.h273 long minsize; member in struct:asn1_string_table_st
1075 long minsize, long maxsize);
/external/stressapptest/src/
H A Dos.cc336 int64 minsize = 0; local
363 minsize = min_hugepages_bytes_;
365 minsize = ((pages * 85) / 100) * pagesize;
367 minsize = ((pages * 95) / 100) * pagesize - (192 * kMegabyte);
372 if (hugepagesize < minsize) {
376 minsize / kMegabyte);
378 size = minsize;
385 size = minsize;
/external/libvorbis/lib/
H A Dbitrate.c180 long minsize=(min_target_bits-bm->minmax_reservoir+7)/8; local
187 minsize-=oggpack_bytes(vbi->packetblob[choice]);
188 while(minsize-->0)oggpack_write(vbi->packetblob[choice],0,8);
/external/qemu/slirp/
H A Dip_icmp.h157 void icmp_error(struct mbuf *msrc, u_char type, u_char code, int minsize,
H A Dip_icmp.c204 icmp_error(struct mbuf *msrc, u_char type, u_char code, int minsize, argument
260 if(minsize) s_ip_len=shlen+ICMP_MINLEN; /* return header+8b only */
/external/qemu/slirp-android/
H A Dip_icmp.h159 void icmp_error(struct mbuf *msrc, u_char type, u_char code, int minsize,
H A Dip_icmp.c206 icmp_error(struct mbuf *msrc, u_char type, u_char code, int minsize, argument
262 if(minsize) s_ip_len=shlen+ICMP_MINLEN; /* return header+8b only */
/external/dnsmasq/src/
H A Drfc2131.c95 static unsigned char *option_find(struct dhcp_packet *mess, size_t size, int opt_type, int minsize);
96 static unsigned char *option_find1(unsigned char *p, unsigned char *end, int opt, int minsize);
1448 static unsigned char *option_find1(unsigned char *p, unsigned char *end, int opt, int minsize) argument
1466 if (*p == opt && opt_len >= minsize)
1473 static unsigned char *option_find(struct dhcp_packet *mess, size_t size, int opt_type, int minsize) argument
1478 if ((ret = option_find1(&mess->options[0] + sizeof(u32), ((unsigned char *)mess) + size, opt_type, minsize)))
1487 (ret = option_find1(&mess->file[0], &mess->file[128], opt_type, minsize)))
1492 (ret = option_find1(&mess->sname[0], &mess->sname[64], opt_type, minsize)))
/external/quake/quake/src/QW/client/
H A Dvid_x.c276 int minsize = getpagesize(); local
331 if (size < minsize)
332 Sys_Error("VID: Window must use at least %d bytes\n", minsize);
/external/quake/quake/src/WinQuake/
H A Dvid_sunx.cpp431 int minsize = getpagesize(); local
465 if (size < minsize)
466 Sys_Error("VID: Window must use at least %d bytes\n", minsize);
H A Dvid_x.cpp355 int minsize = getpagesize(); local
410 if (size < minsize)
411 Sys_Error("VID: Window must use at least %d bytes\n", minsize);
/external/mdnsresponder/mDNSCore/
H A DDNSCommon.h246 extern const mDNSu8 *LocateOptRR(const DNSMessage *const msg, const mDNSu8 *const end, int minsize);
H A DDNSCommon.c2449 mDNSexport const mDNSu8 *LocateOptRR(const DNSMessage *const msg, const mDNSu8 *const end, int minsize) argument
2460 if (ptr + DNSOpt_Header_Space + minsize <= end && // Make sure we have 11+minsize bytes of data
2464 ((mDNSu16)ptr[9] << 8 | (mDNSu16)ptr[10]) >= (mDNSu16)minsize)
/external/elfutils/src/
H A Dldgeneric.c3507 size_t minsize; local
3521 minsize = maxcnt;
3528 minsize = MAX (1, maxcnt / 4);
3540 for (size = minsize; size <= maxsize; ++size)

Completed in 384 milliseconds