Home
last modified time | relevance | path

Searched refs:first (Results 1 – 9 of 9) sorted by relevance

/sys/dev/x86/
Drtc.c26 UnixEpoch first, second; in RTC_Init() local
30 first = RTC_ReadTime(); in RTC_Init()
33 if (first != second) in RTC_Init()
35 first = second; in RTC_Init()
39 first = RTC_ReadTime(); in RTC_Init()
42 if (first != second) in RTC_Init()
44 first = second; in RTC_Init()
/lib/liblwip/src/arch/
Dsys_arch.c77 int first, last; member
165 mbox->first = mbox->last = 0; in sys_mbox_new()
196 u8_t first; in sys_mbox_trypost() local
206 if ((mbox->last + 1) >= (mbox->first + SYS_MBOX_SIZE)) { in sys_mbox_trypost()
213 if (mbox->last == mbox->first) { in sys_mbox_trypost()
214 first = 1; in sys_mbox_trypost()
216 first = 0; in sys_mbox_trypost()
221 if (first) { in sys_mbox_trypost()
233 u8_t first; in sys_mbox_post() local
242 while ((mbox->last + 1) >= (mbox->first + SYS_MBOX_SIZE)) { in sys_mbox_post()
[all …]
/sys/
DSConscript10 # Multiboot requires multiboot.S to be the first file
/lib/liblwip/src/core/ipv4/
Dip.c401 int first = 1; local
433 if (first) {
434 first = 0;
/sys/amd64/
Ddisasm.c1198 bool first; in db_disasm() local
1440 for (first = TRUE; in db_disasm()
1442 i_mode >>= 8, first = FALSE) in db_disasm()
1444 if (!first) in db_disasm()
Dkernel.lds110 first. Because this is a wildcard, it
/lib/liblwip/doc/
Drawapi.txt423 netif and pass a pointer to this structure as the first argument.
453 Creates a new DHCP client for this interface on the first call.
462 The first thing you want to optimize is the lwip_standard_checksum()
/docs/
DDoxyfile32 # text before the first occurrence of this tag. Doxygen uses libiconv (or the
88 # sub-directories are organized in 2 levels, the first level always has a fixed
206 # first line (until the first dot) of a Javadoc-style comment as the brief
224 # If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first
225 # line (until the first dot) of a Qt-style comment as the brief description. If
409 # tag is set to YES then doxygen will reuse the documentation of the first
677 # destructors are listed first. If set to NO the constructors will appear in the
1245 # the alphabetical list under the first letter of the entity name that remains
1929 # generate index for LaTeX. In case there is no backslash (\) as first character
1969 # first chapter. If it is left blank doxygen will generate a standard header. It
/lib/liblwip/
DCHANGELOG1587 * ip.c: ip_input: check if a packet is for inp first before checking all other
1652 it. This is a first release which have to be improve for TCP. Note it used the
1758 The igmp_join/leavegroup first parameter change from a netif to an ipaddr.
1768 * init.c: Add first version of lwip_sanity_check for task #7142 "Sanity check
2153 * udp.c: first attempt to fix bug #21655 (DHCP doesn't work reliably with multiple
2869 * etharp.c: Make sure the first pbuf queued on an ARP entry
2994 * PBUF_POOL chains had their tot_len field not set for non-first
3005 * ARP queueuing now queues the latest packet instead of the first.