HomeSort by relevance Sort by last modified time
    Searched defs:next (Results 251 - 275 of 6142) sorted by null

<<11121314151617181920>>

  /external/libnl/include/netlink/
hashtable.h 23 struct nl_hash_node * next; member in struct:nl_hash_node
  /external/libunwind/include/
map_info.h 49 struct map_info *next; member in struct:map_info
mempool.h 70 struct object *next; member in struct:mempool::object
  /external/libusb/libusb/
hotplug.c 192 struct libusb_hotplug_callback *hotplug_cb, *next; local
197 list_for_each_entry_safe(hotplug_cb, next, &ctx->hotplug_cbs, list, struct libusb_hotplug_callback) {
340 struct libusb_hotplug_callback *hotplug_cb, *next; local
343 list_for_each_entry_safe(hotplug_cb, next, &ctx->hotplug_cbs, list,
  /external/libvpx/libvpx/vp9/encoder/
vp9_job_queue.h 30 // Pointer to the next link in the job queue
31 void *next; member in struct:__anon26237
39 // Pointer to the next link in the job queue
40 void *next; member in struct:__anon26238
  /external/libvpx/libvpx/vpx_dsp/
add_noise.c 48 int next = 0, i, j; local
55 char_dist[next + j] = (int8_t)i;
57 next = next + j;
62 for (; next < 256; ++next) {
63 char_dist[next] = 0;
  /external/libxkbcommon/xkbcommon/src/compose/
table.h 11 * The above copyright notice and this permission notice (including the next
53 * - right arrows are `next` pointers.
74 unsigned int next:31; member in struct:compose_node
  /external/libxml2/doc/examples/
xpath1.c 151 xmlChar* next; local
162 next = nsListDup;
163 while(next != NULL) {
165 while((*next) == ' ') next++;
166 if((*next) == '\0') break;
169 prefix = next;
170 next = (xmlChar*)xmlStrchr(next, '=');
171 if(next == NULL)
    [all...]
  /external/llvm/lib/CodeGen/
AllocationOrder.h 47 /// Return the next physical register in the allocation order, or 0.
48 /// It is safe to call next() again after it returned 0, it will keep
50 unsigned next(unsigned Limit = 0) { function in class:llvm::AllocationOrder
63 /// As next(), but allow duplicates to be returned, and stop before the
78 /// Return true if the last register returned from next() was a preferred register.
  /external/llvm/utils/gdb-scripts/
prettyprinters.py 40 def next(self): member in class:SmallVectorPrinter._iterator
80 def next(self): member in class:ArrayRefPrinter._iterator
  /external/ltp/testcases/kernel/syscalls/get_robust_list/
get_robust_list01.c 61 struct robust_list *next; member in struct:robust_list
  /external/ltp/testcases/kernel/syscalls/set_robust_list/
set_robust_list01.c 58 struct robust_list __user *next; member in struct:robust_list
  /external/ltp/utils/ffsb-6.0-rc2/
list.h 10 struct list_head *next, *prev; member in struct:list_head
15 struct list_head *next);
16 void __list_del(struct list_head *prev, struct list_head *next);
27 for (pos = (head)->next; pos->next, pos != (head); pos = pos->next)
39 for (pos = list_entry((head)->next, typeof(*pos), member); \
40 pos->member.next, &pos->member != (head); \
41 pos = list_entry(pos->member.next, typeof(*pos), member))
44 for (pos = list_entry((head)->next, typeof(*pos), member),
    [all...]
  /external/mesa3d/src/gallium/auxiliary/pipe-loader/
pipe_loader.c 15 * next paragraph) shall be included in all copies or substantial portions
87 const char *next; local
91 for (next = library_paths; *next; library_paths = next + 1) {
92 next = util_strchrnul(library_paths, ':');
93 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/trace/
tr_texture.h 15 * next paragraph) shall be included in all copies or substantial portions
42 struct tr_list *next; member in struct:tr_list
  /external/mesa3d/src/gallium/state_trackers/nine/
threadpool.h 11 * The above copyright notice and this permission notice (including the next
48 struct threadpool_task *next; member in struct:threadpool_task
  /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 = 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/i965/
intel_asm_annotation.c 11 * The above copyright notice and this permission notice (including the next
125 * starts a basic block, we need to set the .block_start of the next
175 struct annotation *next = &annotation->ann[i + 1]; local
178 if (next->offset <= offset)
181 if (offset + sizeof(brw_inst) != next->offset) {
182 memmove(next, cur,
187 next->offset = offset + sizeof(brw_inst);
188 next->block_start = NULL;
  /external/mesa3d/src/mesa/main/
mm.h 36 struct mem_block *next, *prev; member in struct:mem_block
  /external/mockito/src/main/java/org/mockito/internal/configuration/injection/filter/
NameBasedCandidateFilter.java 15 private final MockCandidateFilter next; field in class:NameBasedCandidateFilter
17 public NameBasedCandidateFilter(MockCandidateFilter next) {
18 this.next = next;
30 return next.filterCandidate(tooMany(mocks) ? selectMatchingName(mocks, candidateFieldToBeInjected) : mocks,
62 String mockName = getMockName(mocks.iterator().next()).toString();
  /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/parameter-framework/upstream/parameter/
RuleParser.cpp 64 // Iterate till next relevant delimiter
240 // Next word
241 bool CRuleParser::next(string &strNext, string &strError) function in class:CRuleParser

Completed in 484 milliseconds

<<11121314151617181920>>