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

1 2 3

  /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/sys/external/bsd/drm2/dist/drm/selftests/
drm_mm_selftests.h 24 selftest(lowest, igt_lowest)
  /src/external/lgpl3/gmp/dist/mpn/powerpc64/
logops_n.asm 104 ld r8, 0(r4) C read lowest u limb
105 ld r9, 0(r5) C read lowest v limb
115 ld r6, 0(r4) C read lowest u limb (again)
116 ld r7, 0(r5) C read lowest v limb (again)
  /src/external/gpl3/gcc/dist/libgcc/config/mmix/
crti.S 38 % This little treasure (some contents) is required so the 32 lowest
52 crtstxt OCTA _init % Assumed to be the lowest executed address.
55 crtsdat OCTA dstart % Assumed to be the lowest accessed address.
73 % matches the magic lowest-denominator chunk-size for all
  /src/external/gpl3/gcc.old/dist/libgcc/config/mmix/
crti.S 38 % This little treasure (some contents) is required so the 32 lowest
52 crtstxt OCTA _init % Assumed to be the lowest executed address.
55 crtsdat OCTA dstart % Assumed to be the lowest accessed address.
73 % matches the magic lowest-denominator chunk-size for all
  /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/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/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/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/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/
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...]
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
  /src/external/gpl3/gdb/dist/gdb/
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...]
infcmd.c 2588 struct thread_info *lowest = inferior_thread ();
2594 lowest GDB number, which should be the main thread, if it
2597 if (thread->inf->num < lowest->inf->num
2598 || thread->per_inf_num < lowest->per_inf_num)
2599 lowest = thread;
2601 switch_to_thread (lowest);
2579 struct thread_info *lowest = inferior_thread (); local
  /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/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/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/external/cddl/osnet/dist/uts/common/fs/zfs/
arc.c 46 * blocks that are the "lowest" in the list.
3900 int64_t lowest = INT64_MAX; local
3907 if (n < lowest) {
3908 lowest = n;
3918 if (n < lowest) {
3919 lowest = n;
3932 if (n < lowest) {
3933 lowest = n;
3946 if (n < lowest) {
3947 lowest = n
    [all...]
  /src/external/bsd/zstd/dist/programs/
benchzstd.c 719 size_t const lowest = (u > 5) ? 5 : u; local
722 for (n = lowest; n > 0; n--)
731 for (n = lowest; n > 0; n--)
  /src/external/gpl3/binutils/dist/binutils/
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/
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/gcc/dist/libstdc++-v3/include/bits/
max_size_type.h 789 lowest() noexcept
815 lowest() noexcept
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
max_size_type.h 789 lowest() noexcept
815 lowest() noexcept
  /src/external/lgpl3/gmp/dist/mpn/x86/k6/k62mmx/
rshift.asm 178 movq 12(%ebx,%eax,4), %mm0 C src second lowest qword

Completed in 90 milliseconds

1 2 3