Searched defs:max_len (Results 1 - 25 of 83) sorted by relevance

1234

/external/syslinux/gpxe/src/include/gpxe/
H A Ddhcpopts.h21 size_t max_len; member in struct:dhcp_options
32 void *data, size_t max_len );
H A Ddhcppkt.h26 size_t max_len; member in struct:dhcp_packet
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dip_addr.h19 u8 max_len[16]; member in union:hostapd_ip_addr::__anon26907
H A Duuid.c49 int uuid_bin2str(const u8 *bin, char *str, size_t max_len) argument
52 len = os_snprintf(str, max_len, "%02x%02x%02x%02x-%02x%02x-%02x%02x-"
58 if (os_snprintf_error(max_len, len))
/external/wpa_supplicant_8/src/utils/
H A Dip_addr.h19 u8 max_len[16]; member in union:hostapd_ip_addr::__anon27170
H A Duuid.c49 int uuid_bin2str(const u8 *bin, char *str, size_t max_len) argument
52 len = os_snprintf(str, max_len, "%02x%02x%02x%02x-%02x%02x-%02x%02x-"
58 if (os_snprintf_error(max_len, len))
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dip_addr.h19 u8 max_len[16]; member in union:hostapd_ip_addr::__anon27437
H A Duuid.c49 int uuid_bin2str(const u8 *bin, char *str, size_t max_len) argument
52 len = os_snprintf(str, max_len, "%02x%02x%02x%02x-%02x%02x-%02x%02x-"
58 if (os_snprintf_error(max_len, len))
/external/brotli/fuzz/
H A Drun_decode_fuzzer.cc28 size_t max_len = 1 << 20; local
29 unsigned char* tmp = (unsigned char*)malloc(max_len);
30 size_t len = fread(tmp, 1, max_len, f);
/external/e2fsprogs/lib/e2p/
H A Diod.c33 int max_len = -1, len, ret = 0; local
36 max_len = pathconf(dir_name, _PC_NAME_MAX);
38 if (max_len == -1) {
40 max_len = _POSIX_NAME_MAX;
43 max_len = NAME_MAX;
45 max_len = 256;
49 max_len += sizeof(struct dirent);
51 de = malloc(max_len+1);
54 memset(de, 0, max_len+1);
64 if (len > max_len)
[all...]
/external/mesa3d/src/gallium/drivers/ilo/
H A Dilo_gpgpu.c42 int max_len, before_space; local
46 max_len = ilo_render_get_launch_grid_len(ilo->render, &ilo->state_vector);
47 max_len += ilo_render_get_flush_len(ilo->render) * 2;
49 if (max_len > ilo_cp_space(ilo->cp)) {
51 assert(max_len <= ilo_cp_space(ilo->cp));
78 assert(before_space - ilo_cp_space(ilo->cp) <= max_len);
H A Dilo_draw.c299 int max_len, before_space; local
326 max_len = ilo_render_get_draw_len(ilo->render, vec);
328 max_len += ilo_render_get_flush_len(ilo->render);
330 if (max_len > ilo_cp_space(ilo->cp)) {
333 assert(max_len <= ilo_cp_space(ilo->cp));
365 assert(before_space - ilo_cp_space(ilo->cp) <= max_len);
373 int max_len, before_space; local
380 max_len = ilo_render_get_rectlist_len(ilo->render, ilo->blitter);
381 max_len += ilo_render_get_flush_len(ilo->render) * 2;
383 if (max_len > ilo_cp_spac
[all...]
/external/boringssl/src/ssl/
H A Dssl_buffer.cc218 int ssl_write_buffer_init(SSL *ssl, uint8_t **out_ptr, size_t max_len) { argument
226 if (!ensure_buffer(buf, ssl_seal_align_prefix_len(ssl), max_len)) {
/external/boringssl/src/crypto/bio/
H A Dbio_test.cc170 size_t max_len; member in struct:ASN1TestParam
183 {false /* max_len too short */,
195 {false /* max_len too short */,
214 int ok = BIO_read_asn1(bio.get(), &out, &out_len, param.max_len);
/external/boringssl/src/crypto/buf/
H A Dbuf.c164 size_t BUF_strnlen(const char *str, size_t max_len) { argument
167 for (i = 0; i < max_len; i++) {
/external/curl/docs/examples/
H A Drtsp.c162 int max_len = 256; local
163 char *s = malloc(max_len);
167 while(fgets(s, max_len - 2, sdp_fp) != NULL) {
/external/pdfium/third_party/agg23/
H A Dagg_scanline_u.h57 unsigned max_len = max_x - min_x + 2; local
58 if(max_len > m_max_len) {
61 m_covers = FX_Alloc( cover_type , max_len);
62 m_spans = FX_Alloc( span , max_len);
63 m_max_len = max_len;
/external/webrtc/webrtc/modules/audio_coding/test/
H A DPCMFile.cc49 int16_t PCMFile::ChooseFile(std::string* file_name, int16_t max_len, argument
78 if (len > max_len) {
/external/boringssl/src/crypto/base64/
H A Dbase64.c401 size_t max_len; local
402 if (!EVP_DecodedLength(&max_len, in_len) ||
403 max_out < max_len) {
/external/boringssl/src/crypto/fipsmodule/ec/
H A Dwnaf.c254 size_t max_len = 0; local
317 if (wNAF_len[i] > max_len) {
318 max_len = wNAF_len[i];
387 for (k = max_len - 1; k >= 0; k--) {
/external/e2fsprogs/misc/
H A Dblkid.c126 static int pretty_print_word(const char *str, int max_len, argument
133 if (overflow_nl && len > max_len) {
136 } else if (len > max_len)
137 ret = len - max_len;
140 } while (len++ < max_len);
/external/harfbuzz_ng/test/api/
H A Dtest-buffer.c420 int max_len; member in struct:__anon7240
426 /* some tests to check max_len handling */
687 if (test->max_len == -1)
690 segment_bytes = test->max_len;
/external/syslinux/gpxe/src/core/
H A Dvsprintf.c272 size_t max_len; member in struct:sputc_context
285 if ( ctx->len < sctx->max_len )
310 sctx.max_len = size;
/external/syslinux/gpxe/src/util/
H A Dzbin.c19 size_t max_len; member in struct:output_file
128 static int alloc_output_file ( size_t max_len, struct output_file *output ) { argument
130 output->max_len = ( max_len );
131 output->buf = malloc ( max_len );
134 max_len );
154 if ( ( output->len + len ) > output->max_len ) {
185 if ( output->len > output->max_len ) {
204 if ( output->len > output->max_len ) {
/external/wpa_supplicant_8/hostapd/src/p2p/
H A Dp2p_sd.c428 size_t max_len; local
435 max_len = (freq > 56160) ? 928 : 1400;
438 if (wpabuf_len(resp_tlvs) > max_len) {
626 size_t frag_len, max_len; local
654 max_len = (rx_freq > 56160) ? 928 : 1400;
656 if (frag_len > max_len) {
657 frag_len = max_len;

Completed in 734 milliseconds

1234