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

  /src/tests/lib/libc/gen/
t_randomid.c 53 uint32_t lowest, n, diff; local
59 lowest = UINT32_MAX;
67 if (diff <= lowest) {
68 if (lowest != UINT32_MAX)
72 "lowest %"PRIu32"\n",
73 id, last[id], n, diff, lowest);
79 lowest = diff;
  /src/external/gpl3/gcc/dist/libcpp/
mkdeps.cc 252 Swap out the lowest quoted. */
255 const char *lowest = d->targets[d->quote_lwm]; local
257 t = lowest;
  /src/external/gpl3/gcc.old/dist/libcpp/
mkdeps.cc 245 Swap out the lowest quoted. */
248 const char *lowest = d->targets[d->quote_lwm]; local
250 t = lowest;
  /src/sys/altq/
altq_jobs.c 1276 int lowest, highest; local
1386 lowest = jif->jif_maxpri;
1390 while (lowest > 0 && available[lowest] <= 0)
1391 lowest--; /* which is the lowest class that needs less service? */
1393 while (highest != jif->jif_maxpri+1 && lowest != -1) {
1394 /* give the excess service from lowest to highest */
1395 if (available[lowest]+available[highest] > 0) {
1400 n[lowest] += available[highest]
    [all...]
  /src/external/gpl2/lvm2/dist/daemons/cmirrord/
cluster.c 1166 uint32_t lowest = match->lowest_id; local
1221 if (lowest == 0xDEAD)
1226 else if (lowest != match->lowest_id)
1228 SHORT_UUID(match->name.value), lowest,
1233 lowest, joined->nodeid);
1244 uint32_t lowest = match->lowest_id; local
1336 if (lowest != match->lowest_id) {
1338 SHORT_UUID(match->name.value), lowest,
1342 SHORT_UUID(match->name.value), lowest, left->nodeid);
  /src/external/bsd/zstd/dist/programs/
benchzstd.c 710 size_t const lowest = (u > 5) ? 5 : u; local
713 for (n = lowest; n > 0; n--)
722 for (n = lowest; n > 0; n--)
  /src/external/gpl3/binutils/dist/binutils/
srconv.c 1177 unsigned int *lowest = (unsigned *) nints (p->nsections); local
1192 lowest[i] = ~0;
dlltool.c 970 static int d_low_ord; /* Lowest ordinal index. */
3598 int lowest = -1;
3617 if (lowest == -1 || d_export_vec[i]->ordinal < lowest)
3618 lowest = d_export_vec[i]->ordinal;
3623 if (lowest == -1)
3624 lowest = 1;
3634 for (j = lowest; j < size; j++)
3643 for (j = lowest; j >0; j--)
3659 /* Work out the lowest and highest ordinal numbers. *
3597 int lowest = -1; local
    [all...]
  /src/external/gpl3/binutils.old/dist/binutils/
srconv.c 1177 unsigned int *lowest = (unsigned *) nints (p->nsections); local
1192 lowest[i] = ~0;
dlltool.c 970 static int d_low_ord; /* Lowest ordinal index. */
3597 int lowest = -1;
3616 if (lowest == -1 || d_export_vec[i]->ordinal < lowest)
3617 lowest = d_export_vec[i]->ordinal;
3622 if (lowest == -1)
3623 lowest = 1;
3633 for (j = lowest; j < size; j++)
3642 for (j = lowest; j >0; j--)
3658 /* Work out the lowest and highest ordinal numbers. *
3596 int lowest = -1; local
    [all...]
  /src/external/gpl3/gdb/dist/sim/frv/
cache.c 848 /* Return the priority lower than the lowest one in this cache pipeline.
855 int lowest = 0; local
860 if (req->priority > lowest)
861 lowest = req->priority;
867 if (stage->request != NULL && stage->request->priority > lowest)
868 lowest = stage->request->priority;
876 if (war->valid && war->priority > lowest)
877 lowest = war->priority + 1;
884 && cache->BARS.priority > lowest)
885 lowest = cache->BARS.priority + 1
    [all...]
  /src/external/gpl3/gdb.old/dist/sim/frv/
cache.c 848 /* Return the priority lower than the lowest one in this cache pipeline.
855 int lowest = 0; local
860 if (req->priority > lowest)
861 lowest = req->priority;
867 if (stage->request != NULL && stage->request->priority > lowest)
868 lowest = stage->request->priority;
876 if (war->valid && war->priority > lowest)
877 lowest = war->priority + 1;
884 && cache->BARS.priority > lowest)
885 lowest = cache->BARS.priority + 1
    [all...]
  /src/sys/dev/usb/
umidi.c 992 struct umidi_endpoint *p, *q, *lowest, *endep, tmpep; local
1043 lowest = p;
1045 if ((UE_GET_DIR(lowest->addr)==UE_DIR_IN &&
1047 ((UE_GET_DIR(lowest->addr)==
1049 (UE_GET_ADDR(lowest->addr)>
1051 lowest = q;
1053 if (lowest != p) {
1055 memcpy((void *)p, (void *)lowest, sizeof(tmpep));
1056 memcpy((void *)lowest, (void *)&tmpep, sizeof(tmpep));
  /src/external/gpl3/gdb/dist/gdb/
f-lang.c 1284 LONGEST lowest = std::min (low, high); local
1285 LONGEST offset = (sd / 8) * (lowest - lb);
2028 adjustment required to point to the element at the lowest memory
infcmd.c 2590 struct thread_info *lowest = inferior_thread ();
2596 lowest GDB number, which should be the main thread, if it
2599 if (thread->inf->num < lowest->inf->num
2600 || thread->per_inf_num < lowest->per_inf_num)
2601 lowest = thread;
2603 switch_to_thread (lowest);
2581 struct thread_info *lowest = inferior_thread (); local
symfile.c 185 /* Remember the lowest-addressed loadable section we've seen.
188 lowest-addressed loadable section.
191 lowest-addressed loadable section. */
194 find_lowest_section (asection *sect, asection **lowest)
198 if (!*lowest)
199 *lowest = sect; /* First loadable section */
200 else if (bfd_section_vma (*lowest) > bfd_section_vma (sect))
201 *lowest = sect; /* A lower loadable section */
202 else if (bfd_section_vma (*lowest) == bfd_section_vma (sect)
203 && (bfd_section_size (*lowest) <= bfd_section_size (sect))
645 CORE_ADDR lowest = 0; local
    [all...]
  /src/external/gpl3/gdb/dist/sim/ppc/
hw_opic.c 695 opic_interrupt_destination *lowest = NULL; local
700 if (lowest == NULL)
701 lowest = dest;
702 else if (lowest->base_priority > dest->base_priority)
703 lowest = dest;
704 else if (lowest->current_in_service != NULL
706 lowest = dest; /* not doing anything */
707 else if (lowest->current_in_service != NULL
709 && (lowest->current_in_service->priority
711 lowest = dest; /* less urgent *
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
f-lang.c 1284 LONGEST lowest = std::min (low, high); local
1285 LONGEST offset = (sd / 8) * (lowest - lb);
2017 adjustment required to point to the element at the lowest memory
infcmd.c 2587 struct thread_info *lowest = inferior_thread ();
2593 lowest GDB number, which should be the main thread, if it
2596 if (thread->inf->num < lowest->inf->num
2597 || thread->per_inf_num < lowest->per_inf_num)
2598 lowest = thread;
2600 switch_to_thread (lowest);
2578 struct thread_info *lowest = inferior_thread (); local
symfile.c 194 /* Remember the lowest-addressed loadable section we've seen.
197 lowest-addressed loadable section.
200 lowest-addressed loadable section. */
203 find_lowest_section (asection *sect, asection **lowest)
207 if (!*lowest)
208 *lowest = sect; /* First loadable section */
209 else if (bfd_section_vma (*lowest) > bfd_section_vma (sect))
210 *lowest = sect; /* A lower loadable section */
211 else if (bfd_section_vma (*lowest) == bfd_section_vma (sect)
212 && (bfd_section_size (*lowest) <= bfd_section_size (sect))
654 CORE_ADDR lowest = 0; local
    [all...]
  /src/external/gpl3/gdb.old/dist/sim/ppc/
hw_opic.c 695 opic_interrupt_destination *lowest = NULL; local
700 if (lowest == NULL)
701 lowest = dest;
702 else if (lowest->base_priority > dest->base_priority)
703 lowest = dest;
704 else if (lowest->current_in_service != NULL
706 lowest = dest; /* not doing anything */
707 else if (lowest->current_in_service != NULL
709 && (lowest->current_in_service->priority
711 lowest = dest; /* less urgent *
    [all...]
  /src/external/lgpl3/gmp/dist/
gmpxx.h 3533 static mpz_class lowest() { return mpz_class(); } function in class:std::numeric_limits
3570 static mpq_class lowest() { return mpq_class(); } function in class:std::numeric_limits
3607 static mpf_class lowest() { return mpf_class(); } function in class:std::numeric_limits
  /src/external/mpl/dhcp/bind/dist/lib/isc/
mem.c 177 unsigned char *lowest; member in struct:isc__mem
430 if (first < ctx->lowest || ctx->lowest == NULL) {
431 ctx->lowest = first;
826 ctx->lowest = NULL;
  /src/external/cddl/osnet/dist/uts/common/fs/zfs/
arc.c 46 * blocks that are the "lowest" in the list.
3901 int64_t lowest = INT64_MAX; local
3908 if (n < lowest) {
3909 lowest = n;
3919 if (n < lowest) {
3920 lowest = n;
3933 if (n < lowest) {
3934 lowest = n;
3947 if (n < lowest) {
3948 lowest = n
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/s390/
s390.cc 2646 counting from the lowest order bit starting with zero. In order to
3336 the lowest order chunk of the wide int. */
6283 /* execute only uses the lowest 8 bits of count that's
10198 given pointers AREA_BOTTOM (address of the lowest used stack
18034 unsigned int highest = 0, lowest = 2 * nelt - 1;
18038 lowest = MIN (lowest, e);
18044 if (lowest < nelt && highest < nelt)
18046 else if (lowest >= nelt && highest >= nelt)
18033 unsigned int highest = 0, lowest = 2 * nelt - 1; local

Completed in 90 milliseconds