HomeSort by: relevance | last modified time | path
    Searched defs:lost (Results 1 - 25 of 30) sorted by relevancy

1 2

  /src/crypto/external/apache2/openssl/dist/test/
memleaktest.c 47 char *volatile lost; local
49 lost = OPENSSL_malloc(3);
50 if (!TEST_ptr(lost))
53 strcpy(lost, "ab");
56 OPENSSL_free(lost);
60 lost = NULL;
quic_ackm_test.c 26 int lost, acked, discarded; member in struct:pkt_info
32 ++info->lost;
149 const char *expect_ack; /* 1=ack, 2=lost, 4=discarded */
396 if (!TEST_int_eq(h.pkts[i].lost, 0))
413 if (!TEST_int_eq(h.pkts[i].lost,
494 const char *expect; /* 1=ack, 2=lost, 4=discarded */
598 if (!TEST_int_eq(h.pkts[i].lost,
  /src/crypto/external/bsd/openssl/dist/test/
memleaktest.c 47 char *volatile lost; local
49 lost = OPENSSL_malloc(3);
50 if (!TEST_ptr(lost))
53 strcpy(lost, "ab");
56 OPENSSL_free(lost);
60 lost = NULL;
  /src/crypto/external/bsd/openssl.old/dist/test/
memleaktest.c 30 char *lost; local
38 lost = OPENSSL_malloc(3);
39 if (!TEST_ptr(lost))
43 OPENSSL_free(lost);
44 lost = NULL;
52 return TEST_int_eq(lost != NULL, noleak == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
  /src/external/lgpl3/mpfr/dist/src/
atan.c 292 mpfr_prec_t prec, realprec, est_lost, lost; local
385 /* the number of lost bits due to argument reduction is
420 lost = 0;
423 lost = 9 - 2 * MPFR_EXP(sk);
506 if (MPFR_LIKELY (MPFR_CAN_ROUND (arctgt, realprec + est_lost - lost,
  /src/external/bsd/libpcap/dist/msdos/
pktdrvr.h 80 DWORD lost; /* # of packets lost (RX) */ member in struct:__anon7257
  /src/external/bsd/unbound/dist/testcode/
perf.c 401 int i, lost; local
412 lost = (int)(info->total_sent - info->total_recv) - (int)info->io_num;
417 if(lost > 0)
418 printf("Packets lost: %d\n", (int)lost);
  /src/sys/fs/msdosfs/
msdosfs_vnops.c 955 long lost; local
998 lost = uio->uio_resid - count;
1202 uio->uio_resid += lost;
  /src/external/gpl3/binutils/dist/bfd/
wasm-module.c 117 unsigned char lost, mask; local
128 lost = byte ^ (result >> shift);
135 lost = byte;
138 if ((lost & mask) != (sign && (bfd_signed_vma) result < 0 ? mask : 0))
  /src/external/gpl3/binutils/dist/opcodes/
wasm32-dis.c 200 unsigned char lost, mask; local
211 lost = byte ^ (result >> shift);
218 lost = byte;
221 if ((lost & mask) != (sign && (int64_t) result < 0 ? mask : 0))
  /src/external/gpl3/binutils.old/dist/bfd/
wasm-module.c 117 unsigned char lost, mask; local
128 lost = byte ^ (result >> shift);
135 lost = byte;
138 if ((lost & mask) != (sign && (bfd_signed_vma) result < 0 ? mask : 0))
  /src/external/gpl3/binutils.old/dist/opcodes/
wasm32-dis.c 200 unsigned char lost, mask; local
211 lost = byte ^ (result >> shift);
218 lost = byte;
221 if ((lost & mask) != (sign && (int64_t) result < 0 ? mask : 0))
  /src/external/gpl3/gdb/dist/bfd/
wasm-module.c 117 unsigned char lost, mask; local
128 lost = byte ^ (result >> shift);
135 lost = byte;
138 if ((lost & mask) != (sign && (bfd_signed_vma) result < 0 ? mask : 0))
  /src/external/gpl3/gdb/dist/opcodes/
wasm32-dis.c 200 unsigned char lost, mask; local
211 lost = byte ^ (result >> shift);
218 lost = byte;
221 if ((lost & mask) != (sign && (int64_t) result < 0 ? mask : 0))
  /src/external/gpl3/gdb.old/dist/bfd/
wasm-module.c 117 unsigned char lost, mask; local
128 lost = byte ^ (result >> shift);
135 lost = byte;
138 if ((lost & mask) != (sign && (bfd_signed_vma) result < 0 ? mask : 0))
  /src/external/gpl3/gdb.old/dist/opcodes/
wasm32-dis.c 200 unsigned char lost, mask; local
211 lost = byte ^ (result >> shift);
218 lost = byte;
221 if ((lost & mask) != (sign && (int64_t) result < 0 ? mask : 0))
  /src/external/bsd/ppp/dist/pppd/
lcp.c 2266 * [1] bits 24-31: the number of lost LCP echo replies
2283 unsigned int next_entry, lost; local
2294 lost = lcp_echos_pending - 1;
2295 if (lost > 0xFF)
2296 lost = 0xFF; /* truncate the lost packets count to 256 */
2299 /* use bits 24-31 for the lost packets count and bits 0-23 for the RTT */
2300 ring_buffer[next_entry + 1] = htonl((u_int32_t) ((lost << 24) + rtt));
  /src/sys/nfs/
nfs_vnops.c 405 * if consistency is lost.
1400 * might have already been lost now.
1796 * Kludge City: If the first reply to the remove rpc is lost..
2295 size_t count, lost; local
2303 lost = uio->uio_resid & (NFS_DIRFRAGSIZ - 1);
2304 count = uio->uio_resid - lost;
2322 uio->uio_resid += lost;
2338 panic("nfs_readdir: lost in space");
2358 uio->uio_resid += lost;
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ConstantFolding.cpp 1873 bool lost = false; local
1874 Val.convert(APFloat::IEEEhalf(), APFloat::rmNearestTiesToEven, &lost); local
2230 bool lost = false; local
2232 Ty->getFltSemantics(), APFloat::rmNearestTiesToEven, &lost);
2236 assert(status == APFloat::opOK && !lost &&
2237 "Precision lost during fp16 constfolding");
  /src/external/gpl3/gcc/dist/gcc/
ipa-param-manipulation.cc 1356 bool lost = false; local
1365 lost = true;
1370 if (lost)
  /src/external/gpl3/gcc.old/dist/gcc/
ipa-param-manipulation.cc 1304 bool lost = false; local
1313 lost = true;
1318 if (lost)
  /src/external/mpl/dhcp/bind/dist/lib/isc/
mem.c 131 * Total size of lost memory due to a bug of external library.
2156 uint64_t lost; local
2165 lost = totallost;
2206 TRY0(xmlTextWriterStartElement(writer, ISC_XMLCHAR "Lost"));
2207 TRY0(xmlTextWriterWriteFormatString(writer, "%" PRIu64 "", lost));
2208 TRY0(xmlTextWriterEndElement(writer)); /* Lost */
2321 uint64_t lost; local
2331 lost = totallost;
2363 obj = json_object_new_int64(lost);
2365 json_object_object_add(memobj, "Lost", obj)
    [all...]
  /src/sys/net/
if.c 2294 uint8_t lost; local
2305 lost = LQ_ITEM(ifp->if_link_queue, 0);
2307 if (lost == LINK_STATE_DOWN) {
2308 lost = LQ_ITEM(ifp->if_link_queue, 0);
2311 printf("%s: lost link state change %s\n",
2313 lost == LINK_STATE_UP ? "UP" :
2314 lost == LINK_STATE_DOWN ? "DOWN" :
  /src/external/gpl3/gcc/dist/gcc/cp/
class.cc 2831 bool lost = false;
2842 /* The nearest definition is from a lost primary. */
2844 lost = true;
2990 lost = true;
3028 else if (lost)
3029 /* If the nearest definition is in a lost primary, we don't need an
3051 BV_LOST_PRIMARY (*virtuals) = lost;
9542 fprintf (stream, " lost-primary");
10177 2) We are a primary base within a lost primary virtual base of
10386 primary base chain is from a lost primary, this vtable slot wil
2827 bool lost = false; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/cp/
class.cc 2605 bool lost = false;
2616 /* The nearest definition is from a lost primary. */
2618 lost = true;
2764 lost = true;
2802 else if (lost)
2803 /* If the nearest definition is in a lost primary, we don't need an
2825 BV_LOST_PRIMARY (*virtuals) = lost;
9151 fprintf (stream, " lost-primary");
9786 2) We are a primary base within a lost primary virtual base of
9995 primary base chain is from a lost primary, this vtable slot wil
2601 bool lost = false; local
    [all...]

Completed in 70 milliseconds

1 2