HomeSort by relevance Sort by last modified time
    Searched defs:next (Results 276 - 300 of 3921) sorted by null

<<11121314151617181920>>

  /external/kernel-headers/original/linux/
seq_file.h 30 void * (*next) (struct seq_file *m, void *v, loff_t *pos); member in struct:seq_operations
vmalloc.h 32 struct vm_struct *next; member in struct:vm_struct
  /external/libcap-ng/libcap-ng-0.7/utils/
proc-llist.h 40 struct _lnode* next; // Next node pointer member in struct:_lnode
  /external/libppp/src/
route.h 49 struct sticky_route *next; /* next in list */ member in struct:sticky_route
timer.h 41 struct pppTimer *next; /* Link to next timer */ member in struct:pppTimer
42 struct pppTimer *enext; /* Link to next expired timer */
  /external/libselinux/src/
avc_sidtab.h 14 struct sidtab_node *next; member in struct:sidtab_node
  /external/libsepol/include/sepol/policydb/
sidtab.h 19 struct sidtab_node *next; member in struct:sidtab_node
33 unsigned int next_sid; /* next SID to allocate */
  /external/llvm/lib/CodeGen/
AllocationOrder.h 45 /// Return the next physical register in the allocation order, or 0.
46 /// It is safe to call next() again after it returned 0, it will keep
48 unsigned next() { function in class:llvm::AllocationOrder
59 /// As next(), but allow duplicates to be returned, and stop before the
74 /// Return true if the last register returned from next() was a preferred register.
  /external/mesa3d/src/gallium/auxiliary/pipe-loader/
pipe_loader.c 15 * next paragraph) shall be included in all copies or substantial portions
76 const char *next; local
80 for (next = library_paths; *next; library_paths = next + 1) {
81 next = util_strchrnul(library_paths, ':');
82 len = next - library_paths;
  /external/mesa3d/src/gallium/auxiliary/util/
u_mm.h 38 struct mem_block *next, *prev; member in struct:mem_block
  /external/mesa3d/src/gallium/drivers/r300/compiler/
memory_pool.c 11 * The above copyright notice and this permission notice (including the next
35 struct memory_block * next; member in struct:memory_block
48 pool->blocks = block->next;
62 newblock->next = pool->blocks;
90 block->next = pool->blocks;
  /external/mesa3d/src/gallium/drivers/r600/
compute_memory_pool.h 9 * The above copyright notice and this permission notice (including the next
44 struct compute_memory_item* next; member in struct:compute_memory_item
  /external/mesa3d/src/glx/
glxconfig.c 12 * The above copyright notice and this permission notice (including the next
228 struct glx_config **next; local
231 next = &base;
233 *next = (struct glx_config *) malloc(size);
234 if (*next == NULL) {
240 (void) memset(*next, 0, size);
241 (*next)->visualID = GLX_DONT_CARE;
242 (*next)->visualType = GLX_DONT_CARE;
243 (*next)->visualRating = GLX_NONE;
244 (*next)->transparentPixel = GLX_NONE
270 struct glx_config *const next = configs->next; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_resolve_map.h 11 * The above copyright notice and this permission notice (including the next
80 struct intel_resolve_map *next; member in struct:intel_resolve_map
  /external/mesa3d/src/mesa/main/
mm.h 36 struct mem_block *next, *prev; member in struct:mem_block
  /external/mockito/src/org/mockito/internal/configuration/injection/filter/
NameBasedCandidateFilter.java 15 private final MockCandidateFilter next; field in class:NameBasedCandidateFilter
18 public NameBasedCandidateFilter(MockCandidateFilter next) {
19 this.next = next;
30 return next.filterCandidate(mockNameMatches, field, fieldInstance);
32 return next.filterCandidate(mocks, field, fieldInstance);
  /external/nist-sip/java/gov/nist/javax/sip/address/
NetObjectList.java 111 /** returns the next element
114 public GenericObject next() { method in class:NetObjectList
115 return (NetObject) super.next();
118 /** returns the next element
122 public GenericObject next(ListIterator li) { method in class:NetObjectList
123 return (NetObject) super.next(li);
  /external/nist-sip/java/gov/nist/javax/sip/parser/
ContactParser.java 61 final char next = lexer.lookAhead(1); local
62 if (next == ' ' || next == '\t' || next == '\r' || next == '\n') {
  /external/openssh/
monitor_mm.h 32 RB_ENTRY(mm_share) next; member in struct:mm_share
46 RB_PROTOTYPE(mmtree, mm_share, next, mm_compare)
  /external/ppp/pppd/plugins/radius/
clientid.c 19 struct map2id_s *next; member in struct:map2id_s
76 p->next = map2id_list;
115 for(p = map2id_list; p; p = p->next)
  /external/qemu/android/utils/
list.h 19 * - List entries contain references to the next, and the previous entry in the
22 * in its 'next' reference, and the "list head" references the "last" entry in
24 * - The list is empty if its 'next' and 'previous' references are addressing the
29 /* Next entry in the list */
30 ACList* next; member in struct:ACList
39 list->next = list->prev = list;
46 return list->next == list;
53 ACList* const next = list->next; local
54 entry->next = next
75 ACList* const next = entry->next; local
    [all...]
  /external/qemu/
blockdev.h 31 QTAILQ_ENTRY(DriveInfo) next; member in struct:DriveInfo
qdict.h 26 QLIST_ENTRY(QDictEntry) next; member in struct:QDictEntry
  /external/qemu/hw/
goldfish_device.h 16 struct goldfish_device *next; member in struct:goldfish_device
  /external/skia/src/core/
SkRefDict.cpp 83 Impl* next = rec->fNext; local
86 rec = next;

Completed in 2924 milliseconds

<<11121314151617181920>>