HomeSort by relevance Sort by last modified time
    Searched refs:ent (Results 51 - 75 of 622) sorted by null

1 23 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mips/
jalr3.s 6 .ent foo
14 .ent bar
branch-local-1.s 7 .ent foo
16 .ent bar
branch-section.s 3 .ent foo
13 .ent bar
jalx-local.s 7 .ent foo
20 .ent bar
aent.s 4 .ent foo
branch-extern.s 3 .ent foo
compact-eh-1.s 12 .ent _Z3fooi
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-mips-elf/
dyn-sec64.s 3 .ent _init
11 .ent _fini
pic-and-nonpic-6-n32b.s 4 .ent f1
15 .ent f2
31 .ent f3
pic-and-nonpic-6-n64b.s 4 .ent f1
15 .ent f2
31 .ent f3
pic-and-nonpic-6-o32b.s 4 .ent f1
15 .ent f2
29 .ent f3
compressed-plt-1-dyn.s 10 .ent \name
jal-local-overflow.s 7 .ent foo
22 .ent bar
mips16-pic-1-dummy.s 6 .ent \name
pic-and-nonpic-3a.s 5 .ent foo
16 .ent bar
pic-and-nonpic-3b.s 4 .ent __start
11 .ent ext
  /external/e2fsprogs/tests/progs/
test_rel.c 94 struct ext2_block_relocate_entry *ent)
96 printf("Old= %u, New= %u, Owner= %u:%u\n", old, ent->new,
97 ent->owner.block_ref, ent->offset);
104 struct ext2_inode_relocate_entry *ent,
112 ent->new, ent->orig, ent->max_refs);
177 struct ext2_block_relocate_entry ent; local
201 ent.new = new
218 struct ext2_block_relocate_entry ent; local
256 struct ext2_block_relocate_entry ent; local
278 struct ext2_block_relocate_entry ent; local
386 struct ext2_inode_relocate_entry ent; local
422 struct ext2_inode_relocate_entry ent; local
448 struct ext2_inode_relocate_entry ent; local
488 struct ext2_inode_relocate_entry ent; local
510 struct ext2_inode_relocate_entry ent; local
    [all...]
  /external/python/cpython2/Demo/tix/samples/
DirTree.py 61 top.ent = Tix.LabelEntry(top, label="Installation Directory:",
69 top.ent.entry['textvariable'] = self.dlist_dir
70 top.btn['command'] = lambda dir=top.dir, ent=top.ent, self=self: \
71 self.copy_name(dir,ent)
73 top.ent.entry.bind('<Return>', lambda self=self: self.okcmd () )
78 top.ent.pack( expand=1, fill=X, anchor='s', padx=4, pady=4, side=LEFT)
90 def copy_name (self, dir, ent):
94 ent.entry.delete(0,'end')
95 ent.entry.insert(0, self.dlist_dir
    [all...]
DirList.py 61 top.ent = Tix.LabelEntry(top, label="Installation Directory:",
70 top.ent.entry['font'] = font
74 top.ent.entry['textvariable'] = self.dlist_dir
75 top.btn['command'] = lambda dir=top.dir, ent=top.ent, self=self: \
76 self.copy_name(dir,ent)
78 # top.ent.entry.insert(0,'tix'+repr(self))
79 top.ent.entry.bind('<Return>', lambda self=self: self.okcmd () )
84 top.ent.pack( expand=1, fill=X, anchor='s', padx=4, pady=4, side=LEFT)
96 def copy_name (self, dir, ent)
    [all...]
  /external/linux-kselftest/tools/testing/selftests/vm/
transhuge-stress.c 25 #define PAGEMAP_PRESENT(ent) (((ent) & (1ull << 63)) != 0)
26 #define PAGEMAP_PFN(ent) ((ent) & ((1ull << 55) - 1))
32 uint64_t ent[2]; local
46 if (pread(pagemap_fd, ent, sizeof(ent),
47 (uintptr_t)ptr >> (PAGE_SHIFT - 3)) != sizeof(ent))
50 if (PAGEMAP_PRESENT(ent[0]) && PAGEMAP_PRESENT(ent[1]) &
    [all...]
  /frameworks/av/media/libstagefright/id3/
testid3.cpp 127 struct dirent *ent; local
128 while ((ent = readdir(dir)) != NULL) {
129 if (!strcmp(".", ent->d_name) || !strcmp("..", ent->d_name)) {
136 strcat(newPath, ent->d_name);
138 if (ent->d_type == DT_DIR) {
140 } else if (ent->d_type == DT_REG) {
141 size_t len = strlen(ent->d_name);
144 && !strcasecmp(ent->d_name + len - 4, ".mp3")) {
  /external/wayland/tests/
test-helpers.c 39 struct dirent *ent; local
46 while ((ent = readdir(dir))) {
47 const char *s = ent->d_name;
  /external/icu/icu4c/as_is/
bomlist.py 27 for ent in tree:
28 (path,dirs,files) = ent
  /toolchain/binutils/binutils-2.27/opcodes/
aarch64-gen.c 69 opcode_node* ent = malloc (sizeof (opcode_node)); local
71 if (!ent)
74 ent->opcode = 0;
75 ent->mask = 0;
76 ent->index = -1;
77 ent->next = NULL;
79 return ent;
129 const struct aarch64_opcode *ent = table; local
133 if (!ent->name)
146 assert (pseudo_opcode_p (ent) == FALSE || alias_opcode_p (ent) == TRUE)
174 opcode_node* ent = opcode_nodes_head.next; local
228 opcode_node *ent; local
696 const aarch64_opcode *ent; local
796 const aarch64_opcode *ent; local
1153 struct aarch64_opcode *ent = table; local
    [all...]
  /external/ltp/testcases/kernel/mem/hugetlb/lib/
hugetlb.c 103 struct passwd *ent; local
105 ent = getpwnam(user);
106 if (ent == NULL)
109 return ent->pw_uid;

Completed in 1147 milliseconds

1 23 4 5 6 7 8 91011>>