Searched defs:next (Results 1 - 25 of 165) sorted by relevance

1234567

/device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
H A Dglue.h42 struct glue *next; member in struct:glue
/device/google/marlin/power/
H A Dlist.h31 struct list_node *next; member in struct:list_node
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
H A Dhash.h55 struct _entry *next; member in struct:_entry
H A Dfcache.c69 q = q->next;
111 CacheEntry *next; local
116 next=dumpFcache1(prev);
117 if (next == NULL) break;
118 reportFcache(next);
120 prev=next->str;
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/sorcerer/h/
H A Dsorlist.h37 struct _SList *next; member in struct:_SList
/device/linaro/bootloader/edk2/StdLib/LibC/StdLib/
H A DRand.c36 static UINT32 next = 1; variable
53 if (next == 0)
54 next = 123459876;
55 hi = next / 127773;
56 lo = next % 127773;
60 return ((next = x) % ((UINT32)RAND_MAX + 1));
66 next = (UINT32)seed;
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/support/sym/
H A Dtemplate.h11 struct _sym *next, *prev, **head, *scope; member in struct:_sym
/device/generic/goldfish/dhcp/server/
H A Dmain.cpp53 char* next = divider + 1; local
54 if (inet_pton(AF_INET, next, &address) > 0) {
57 ALOGE("ERROR: Invalid end address '%s'", next);
/device/google/contexthub/firmware/os/inc/
H A Dlist.h24 struct link_t *prev, *next; member in struct:link_t
28 for ((cur_link) = (list)->next, \
29 (tmp_link) = (cur_link) ? (cur_link)->next : NULL; \
31 (cur_link) = (tmp_link), (tmp_link) = (cur_link)->next)
34 link_t list = { .prev = &list, .next = &list }
38 list->prev = list->next = list;
43 if (!list->next)
47 item->next = list;
48 list->prev->next = item;
54 item->prev->next
[all...]
/device/google/marlin/camera/QCamera2/stack/common/
H A Dcam_list.h44 struct cam_list *next, *prev; member in struct:cam_list
49 ptr->next = ptr;
59 item->next = head;
61 prev->next = item;
67 item->next = node;
69 item->prev->next = item;
76 struct cam_list *next = ptr->next; local
78 next->prev = ptr->prev;
79 prev->next
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/wsgiref/
H A Dutil.py29 def next(self): member in class:FileWrapper
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
H A Dcache.h39 struct _pysqlite_Node* next; member in struct:_pysqlite_Node
/device/generic/goldfish/wifi/ipv6proxy/
H A Dpacket.cpp122 char* next = current + currentHeader->nd_opt_len * 8u; local
123 if (next >= end) {
124 // The next header points passed the message data
127 nd_opt_hdr* nextHeader = reinterpret_cast<nd_opt_hdr*>(next);
128 if (next + nextHeader->nd_opt_len * 8u > end) {
129 // The next option extends beyond the message data
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A Dmultifile.py17 if not fp.next(): break
123 def next(self): member in class:MultiFile
H A DStringIO.py68 def next(self): member in class:StringIO
71 in a for loop (for example, for line in f: print line), the next()
72 method is called repeatedly. This method returns the next input line,
H A Dshlex.py268 def next(self): member in class:shlex
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A Drotatingtree.c66 rotating_node_t *next; local
75 next = node->left;
76 if (next == NULL)
79 node->left = next->right;
80 next->right = node;
81 *pnode = next;
87 next = node->right;
88 if (next == NULL)
91 node->right = next->left;
92 next
[all...]
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/
H A DSList.h55 SListNode *next() { return _next; } function in class:SListNode
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/support/rexpr/
H A Drexpr.h8 struct _a *next; member in struct:_a
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
H A DSList.h55 SListNode *next() { return _next; } function in class:SListNode
/device/linaro/bootloader/arm-trusted-firmware/tools/fiptool/
H A Dfiptool.h40 struct image_desc *next; member in struct:image_desc
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
H A DStringIO.py68 def next(self): member in class:StringIO
71 in a for loop (for example, for line in f: print line), the next()
72 method is called repeatedly. This method returns the next input line,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
H A Dinftrees.c27 on return points to the next available entry's address. bits is the
54 code FAR *next; /* next available space in table */ local
151 filled is at next and has curr index bits. The code being used is huff
203 next = *table; /* current table to fill in */
235 min = fill; /* save offset to next table */
238 next[(huff >> drop) + fill] = here;
252 /* go to next symbol, update count, len */
266 next += min; /* here min is 1 << curr */
268 /* determine length of next tabl
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/hotshot/
H A Dlog.py31 self._nextitem = self._reader.next
91 # This adds an optional (& ignored) parameter to next() so that the
95 def next(self, index=0): member in class:LogReader
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
H A Dinftrees.c27 on return points to the next available entry's address. bits is the
54 code FAR *next; /* next available space in table */ local
151 filled is at next and has curr index bits. The code being used is huff
204 next = *table; /* current table to fill in */
235 min = fill; /* save offset to next table */
238 next[(huff >> drop) + fill] = this;
252 /* go to next symbol, update count, len */
266 next += min; /* here min is 1 << curr */
268 /* determine length of next tabl
[all...]

Completed in 187 milliseconds

1234567