Searched defs:used (Results 1 - 25 of 172) sorted by last modified time

1234567

/external/zlib/src/contrib/infback9/
H A Dinftree9.c24 lens shorts, which is used as a work area. type is the type of code
47 unsigned used; /* code entries in table used */ local
101 The length counts are used for other purposes as well, i.e. finding
145 filled is at next and has curr index bits. The code being used is huff
159 counts are used for this, and so count[] is decremented as codes are
162 used keeps track of how many table entries have been allocated from the
177 base = extra = work; /* dummy value--not used */
201 used = 1U << root; /* use root table entries */
202 mask = used
[all...]
/external/zlib/src/
H A Dinftrees.c24 lens shorts, which is used as a work area. type is the type of code
47 unsigned used; /* code entries in table used */ local
99 The length counts are used for other purposes as well, i.e. finding
151 filled is at next and has curr index bits. The code being used is huff
165 counts are used for this, and so count[] is decremented as codes are
168 used keeps track of how many table entries have been allocated from the
183 base = extra = work; /* dummy value--not used */
207 used = 1U << root; /* use root table entries */
208 mask = used
[all...]
/external/wpa_supplicant_8/hostapd/
H A Dctrl_iface.c1473 int used; local
1479 used = hwaddr_aton2(pos, src);
1480 if (used < 0)
1482 pos += used;
1599 int used; local
1614 used = hwaddr_aton2(pos, dst);
1615 if (used < 0)
1617 pos += used;
1620 used = hwaddr_aton2(pos, src);
1621 if (used <
[all...]
/external/wpa_supplicant_8/hostapd/src/tls/
H A Dlibtommath.c127 int used, alloc, sign; member in struct:__anon17321
133 #define mp_iszero(a) (((a)->used == 0) ? MP_YES : MP_NO)
134 #define mp_iseven(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 0)) ? MP_YES : MP_NO)
135 #define mp_isodd(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 1)) ? MP_YES : MP_NO)
139 #define s_mp_mul(a, b, c) s_mp_mul_digs(a, b, c, (a)->used + (b)->used + 1)
201 /* reverse an array, used for radix code */
228 if (a->used > b->used) {
229 min = b->used;
[all...]
H A Dtlsv1_client.c117 * mask of zero is used per the RFC 4346, 6.2.3.2 CBC Block
148 int used; local
184 used = tlsv1_record_receive(&conn->rl, pos, end - pos,
186 if (used < 0) {
192 if (used == 0) {
228 pos += used;
270 * This function is used after TLS handshake has been completed successfully to
303 * This function is used after TLS handshake has been completed successfully to
311 int used; local
342 used
[all...]
H A Dtlsv1_server.c139 int used; local
155 used = tlsv1_record_receive(&conn->rl, pos, end - pos,
157 if (used < 0) {
163 if (used == 0) {
185 pos += used;
222 * This function is used after TLS handshake has been completed successfully to
255 * This function is used after TLS handshake has been completed successfully to
263 int used; local
275 used = tlsv1_record_receive(&conn->rl, pos, in_end - pos,
277 if (used <
[all...]
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dwpabuf.h22 size_t used; /* length of data in the buffer */ member in struct:wpabuf
55 * Returns: Currently used length of the buffer
59 return buf->used;
69 return buf->size - buf->used;
155 buf->size = buf->used = len;
/external/wpa_supplicant_8/src/tls/
H A Dlibtommath.c127 int used, alloc, sign; member in struct:__anon17566
133 #define mp_iszero(a) (((a)->used == 0) ? MP_YES : MP_NO)
134 #define mp_iseven(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 0)) ? MP_YES : MP_NO)
135 #define mp_isodd(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 1)) ? MP_YES : MP_NO)
139 #define s_mp_mul(a, b, c) s_mp_mul_digs(a, b, c, (a)->used + (b)->used + 1)
201 /* reverse an array, used for radix code */
228 if (a->used > b->used) {
229 min = b->used;
[all...]
H A Dtlsv1_client.c117 * mask of zero is used per the RFC 4346, 6.2.3.2 CBC Block
148 int used; local
184 used = tlsv1_record_receive(&conn->rl, pos, end - pos,
186 if (used < 0) {
192 if (used == 0) {
228 pos += used;
270 * This function is used after TLS handshake has been completed successfully to
303 * This function is used after TLS handshake has been completed successfully to
311 int used; local
342 used
[all...]
H A Dtlsv1_server.c139 int used; local
155 used = tlsv1_record_receive(&conn->rl, pos, end - pos,
157 if (used < 0) {
163 if (used == 0) {
185 pos += used;
222 * This function is used after TLS handshake has been completed successfully to
255 * This function is used after TLS handshake has been completed successfully to
263 int used; local
275 used = tlsv1_record_receive(&conn->rl, pos, in_end - pos,
277 if (used <
[all...]
/external/wpa_supplicant_8/src/utils/
H A Dwpabuf.h22 size_t used; /* length of data in the buffer */ member in struct:wpabuf
55 * Returns: Currently used length of the buffer
59 return buf->used;
69 return buf->size - buf->used;
155 buf->size = buf->used = len;
/external/wpa_supplicant_8/wpa_supplicant/
H A Dconfig.c26 * Structure for network configuration parsing. This data is used to implement
1105 size_t used, len; local
1108 used = 0;
1118 if (used == len) {
1132 freqs[used] = atoi(pos);
1133 if (freqs[used] == 0)
1135 used++;
1758 * data length. Unlike STR(), this can be used to store arbitrary binary data
1801 * Table of network configuration variables. This table is used to parse each
1810 * .param3 and .param4 can be used t
[all...]
H A Dctrl_iface.c2918 * previously used network is removed.
2969 * or previously used configuration changes.
3213 "used the removed credential", ssid->id);
6086 int used; local
6093 used = hwaddr_aton2(dst, dst_addr);
6094 if (used < 0)
6096 pos = dst + used;
6131 int used, ret = -1; local
6135 used = hwaddr_aton2(cmd, dst_addr);
6136 if (used <
6196 int used; local
6270 int used; local
6330 int used; local
6373 int used; local
7192 int res, used; local
7310 int used; local
7426 int used; local
[all...]
H A Dctrl_iface_named_pipe.c56 * This structure is used to store information about registered control
71 int used; member in struct:wpa_ctrl_dst
100 static int ctrl_broken_pipe(HANDLE pipe, int used) argument
108 if (err == ERROR_BROKEN_PIPE || (err == ERROR_BAD_PIPE && used))
122 if (ctrl_broken_pipe(dst->pipe, dst->used)) {
287 dst->used = 1;
548 int used; member in struct:wpa_global_dst
565 if (ctrl_broken_pipe(dst->pipe, dst->used)) {
722 dst->used = 1;
/external/wpa_supplicant_8/wpa_supplicant/src/tls/
H A Dlibtommath.c127 int used, alloc, sign; member in struct:__anon17809
133 #define mp_iszero(a) (((a)->used == 0) ? MP_YES : MP_NO)
134 #define mp_iseven(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 0)) ? MP_YES : MP_NO)
135 #define mp_isodd(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 1)) ? MP_YES : MP_NO)
139 #define s_mp_mul(a, b, c) s_mp_mul_digs(a, b, c, (a)->used + (b)->used + 1)
201 /* reverse an array, used for radix code */
228 if (a->used > b->used) {
229 min = b->used;
[all...]
H A Dtlsv1_client.c117 * mask of zero is used per the RFC 4346, 6.2.3.2 CBC Block
148 int used; local
184 used = tlsv1_record_receive(&conn->rl, pos, end - pos,
186 if (used < 0) {
192 if (used == 0) {
228 pos += used;
270 * This function is used after TLS handshake has been completed successfully to
303 * This function is used after TLS handshake has been completed successfully to
311 int used; local
342 used
[all...]
H A Dtlsv1_server.c139 int used; local
155 used = tlsv1_record_receive(&conn->rl, pos, end - pos,
157 if (used < 0) {
163 if (used == 0) {
185 pos += used;
222 * This function is used after TLS handshake has been completed successfully to
255 * This function is used after TLS handshake has been completed successfully to
263 int used; local
275 used = tlsv1_record_receive(&conn->rl, pos, in_end - pos,
277 if (used <
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dwpabuf.h22 size_t used; /* length of data in the buffer */ member in struct:wpabuf
55 * Returns: Currently used length of the buffer
59 return buf->used;
69 return buf->size - buf->used;
155 buf->size = buf->used = len;
/external/webp/src/utils/
H A Dbit_writer.c259 int used = bw->used_; local
262 if (used + n_bits >= VP8L_WRITER_MAX_BITS) {
264 const int shift = VP8L_WRITER_MAX_BITS - used;
265 lbits |= (vp8l_atype_t)bits << used;
266 used = VP8L_WRITER_MAX_BITS;
273 while (used >= VP8L_WRITER_BITS) {
286 used -= VP8L_WRITER_BITS;
289 bw->bits_ = lbits | ((vp8l_atype_t)bits << used);
290 bw->used_ = used + n_bits;
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
H A Dstructs.h14 * This header file contains all the structs used in the ISAC codec
147 /* Parameters used in PLC to avoid re-computation */
157 WebRtc_Word16 used; /* if PLC is used */ member in struct:__anon17021
268 /* The following strutc is used to store data from encoding, to make it
/external/valgrind/memcheck/tests/
H A Dmallinfo.c15 size_t used; local
36 used = mi.uordblks + mi.hblkhd;
37 if (used < min)
40 if (used > max)
43 // used should be reasonably close to min
45 if (used/5*4 > min)
71 return used;
/external/vboot_reference/firmware/lib/
H A Dregion-kernel.c189 uint32_t used = 0; local
193 used += StrnAppend(outbuf + used, "gbb.flags is nonzero: 0x",
194 OUTBUF_LEN - used);
195 used += Uint64ToString(outbuf + used, OUTBUF_LEN - used,
197 used += StrnAppend(outbuf + used, "\n", OUTBUF_LEN - used);
[all...]
H A Dutility_string.c52 /* Don't count the terminating null in the bytes used */
58 uint32_t used = 0; local
64 while (dest[used] && used < destlen - 1)
65 used++;
68 while (*src && used < destlen - 1)
69 dest[used++] = *src++;
72 dest[used] = 0;
73 return used;
H A Dvboot_display.c5 * Display functions used in kernel selection.
511 uint32_t used = 0; local
521 used += StrnAppend(buf + used, "HWID: ", DEBUG_INFO_SIZE - used);
522 used += StrnAppend(buf + used, hwid, DEBUG_INFO_SIZE - used);
526 used += StrnAppend(buf + used,
[all...]
/external/vboot_reference/host/lib/
H A Dcrossystem.c231 int used = 0; local
240 used += snprintf(
241 dest + used, size - used,
244 if (used > size)
256 used += snprintf(
257 dest + used, size - used,
278 if (used > size)
291 used
[all...]

Completed in 430 milliseconds

1234567