HomeSort by relevance Sort by last modified time
    Searched defs:ilist (Results 1 - 25 of 26) sorted by null

1 2

  /toolchain/binutils/binutils-2.25/opcodes/
cgen-dis.c 145 const CGEN_INSN_LIST *ilist; local
147 for (ilist = insns; ilist != NULL; ilist = ilist->next, ++ hentbuf)
153 if (! (* cd->dis_hash_p) (ilist->insn))
159 value = CGEN_INSN_BASE_VALUE (ilist->insn);
162 CGEN_INSN_MASK_BITSIZE (ilist->insn),
165 add_insn_to_hash_chain (hentbuf, ilist->insn, htable, hash);
cgen-asm.c 101 const CGEN_INSN_LIST *ilist; local
103 for (ilist = insns; ilist != NULL; ilist = ilist->next, ++ hentbuf)
107 if (! (* cd->asm_hash_p) (ilist->insn))
109 hash = (* cd->asm_hash) (CGEN_INSN_MNEMONIC (ilist->insn));
111 hentbuf->insn = ilist->insn;
fr30-asm.c 624 CGEN_INSN_LIST *ilist;
635 ilist = CGEN_ASM_LOOKUP_INSN (cd, str);
639 for ( ; ilist != NULL ; ilist = CGEN_ASM_NEXT_INSN (ilist))
641 const CGEN_INSN *insn = ilist->insn;
620 CGEN_INSN_LIST *ilist; local
m32r-asm.c 642 CGEN_INSN_LIST *ilist;
653 ilist = CGEN_ASM_LOOKUP_INSN (cd, str);
657 for ( ; ilist != NULL ; ilist = CGEN_ASM_NEXT_INSN (ilist))
659 const CGEN_INSN *insn = ilist->insn;
638 CGEN_INSN_LIST *ilist; local
or1k-asm.c 817 CGEN_INSN_LIST *ilist;
828 ilist = CGEN_ASM_LOOKUP_INSN (cd, str);
832 for ( ; ilist != NULL ; ilist = CGEN_ASM_NEXT_INSN (ilist))
834 const CGEN_INSN *insn = ilist->insn;
813 CGEN_INSN_LIST *ilist; local
xc16x-asm.c 690 CGEN_INSN_LIST *ilist;
701 ilist = CGEN_ASM_LOOKUP_INSN (cd, str);
705 for ( ; ilist != NULL ; ilist = CGEN_ASM_NEXT_INSN (ilist))
707 const CGEN_INSN *insn = ilist->insn;
686 CGEN_INSN_LIST *ilist; local
xstormy16-asm.c 590 CGEN_INSN_LIST *ilist;
601 ilist = CGEN_ASM_LOOKUP_INSN (cd, str);
605 for ( ; ilist != NULL ; ilist = CGEN_ASM_NEXT_INSN (ilist))
607 const CGEN_INSN *insn = ilist->insn;
586 CGEN_INSN_LIST *ilist; local
epiphany-asm.c 770 CGEN_INSN_LIST *ilist;
781 ilist = CGEN_ASM_LOOKUP_INSN (cd, str);
785 for ( ; ilist != NULL ; ilist = CGEN_ASM_NEXT_INSN (ilist))
787 const CGEN_INSN *insn = ilist->insn;
765 CGEN_INSN_LIST *ilist; local
frv-asm.c 1573 CGEN_INSN_LIST *ilist; local
    [all...]
ip2k-asm.c 825 CGEN_INSN_LIST *ilist;
836 ilist = CGEN_ASM_LOOKUP_INSN (cd, str);
840 for ( ; ilist != NULL ; ilist = CGEN_ASM_NEXT_INSN (ilist))
842 const CGEN_INSN *insn = ilist->insn;
821 CGEN_INSN_LIST *ilist; local
iq2000-asm.c 773 CGEN_INSN_LIST *ilist;
784 ilist = CGEN_ASM_LOOKUP_INSN (cd, str);
788 for ( ; ilist != NULL ; ilist = CGEN_ASM_NEXT_INSN (ilist))
790 const CGEN_INSN *insn = ilist->insn;
769 CGEN_INSN_LIST *ilist; local
lm32-asm.c 663 CGEN_INSN_LIST *ilist;
674 ilist = CGEN_ASM_LOOKUP_INSN (cd, str);
678 for ( ; ilist != NULL ; ilist = CGEN_ASM_NEXT_INSN (ilist))
680 const CGEN_INSN *insn = ilist->insn;
659 CGEN_INSN_LIST *ilist; local
mt-asm.c 909 CGEN_INSN_LIST *ilist;
920 ilist = CGEN_ASM_LOOKUP_INSN (cd, str);
924 for ( ; ilist != NULL ; ilist = CGEN_ASM_NEXT_INSN (ilist))
926 const CGEN_INSN *insn = ilist->insn;
905 CGEN_INSN_LIST *ilist; local
m32c-asm.c 1894 CGEN_INSN_LIST *ilist; local
    [all...]
mep-asm.c 1596 CGEN_INSN_LIST *ilist; local
    [all...]
  /external/syslinux/com32/lib/syslinux/
movebits.c 161 const struct syslinux_memmap *ilist = list; local
165 return ilist;
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
ilist.h 1 //==-- llvm/ADT/ilist.h - Intrusive Linked List Template ---------*- C++ -*-==//
19 // The ilist class itself, should be a plug in replacement for list, assuming
24 // The ilist class is implemented by allocating a 'tail' node when the list is
72 /// strategy. The sentinel is stored in the prev field of ilist's Head.
82 /// provideInitialHead - when constructing an ilist, provide a starting
214 assert(NodePtr && "--'d off the beginning of an ilist!");
448 // an ilist (and potentially deleted) with iterators still pointing at it.
622 struct ilist : public iplist<NodeTy> { struct in namespace:llvm
626 ilist() {} function in struct:llvm::ilist
627 ilist(const ilist &right) function in struct:llvm::ilist
630 explicit ilist(size_type count) { function in struct:llvm::ilist
633 ilist(size_type count, const NodeTy &val) { function in struct:llvm::ilist
636 template<class InIt> ilist(InIt first, InIt last) { function in struct:llvm::ilist
    [all...]
  /external/llvm/include/llvm/ADT/
ilist.h 1 //==-- llvm/ADT/ilist.h - Intrusive Linked List Template ---------*- C++ -*-==//
19 // The ilist class itself, should be a plug in replacement for list, assuming
24 // The ilist class is implemented by allocating a 'tail' node when the list is
73 /// strategy. The sentinel is stored in the prev field of ilist's Head.
83 /// provideInitialHead - when constructing an ilist, provide a starting
244 assert(NodePtr && "--'d off the beginning of an ilist!");
448 // an ilist (and potentially deleted) with iterators still pointing at it.
666 struct ilist : public iplist<NodeTy> { struct in namespace:llvm
670 ilist() {} function in struct:llvm::ilist
671 ilist(const ilist &right) function in struct:llvm::ilist
674 explicit ilist(size_type count) { function in struct:llvm::ilist
677 ilist(size_type count, const NodeTy &val) { function in struct:llvm::ilist
680 template<class InIt> ilist(InIt first, InIt last) { function in struct:llvm::ilist
    [all...]
  /external/ltp/testcases/kernel/fs/fsstress/
fsstress.c 217 int *ilist; variable
346 ilist = realloc(ilist, ++ilistlen * sizeof(*ilist));
347 ilist[ilistlen - 1] = strtol(optarg, &p, 16);
852 if (ilist[j] == id) {
896 if (ilist[j] == fep->id) {
    [all...]
  /toolchain/binutils/binutils-2.25/gas/config/
tc-mep.c 524 CGEN_INSN_LIST *ilist;
528 ilist = CGEN_ASM_LOOKUP_INSN (gas_cgen_cpu_desc,
532 for ( ; ilist != NULL ; ilist = CGEN_ASM_NEXT_INSN (ilist))
534 const CGEN_INSN *insn = ilist->insn;
535 if (strcmp (CGEN_INSN_MNEMONIC (ilist->insn),
537 && MEP_INSN_COP_P (ilist->insn)
522 CGEN_INSN_LIST *ilist; local
    [all...]
  /external/e2fsprogs/contrib/
fsstress.c 244 int *ilist; variable
373 ilist = realloc(ilist, ++ilistlen * sizeof(*ilist));
374 ilist[ilistlen - 1] = strtol(optarg, &p, 16);
879 if (ilist[j] == id) {
923 if (ilist[j] == fep->id) {
    [all...]
  /dalvik/dx/etc/
jasmin.jar 
  /prebuilts/tools/common/jasmin/
jasmin.jar 
  /prebuilts/tools/common/m2/repository/com/amazonaws/aws-java-sdk-dynamodb/1.11.18/
aws-java-sdk-dynamodb-1.11.18.jar 
  /prebuilts/tools/common/m2/repository/xalan/xalan/2.6.0/
xalan-2.6.0.jar 

Completed in 2111 milliseconds

1 2