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

1 2 3 4 5 6 7 8 91011>>

  /external/libusb-compat/libusb/
usbi.h 25 #define LIST_ADD(begin, ent) \
28 ent->next = begin; \
29 ent->next->prev = ent; \
31 ent->next = NULL; \
32 ent->prev = NULL; \
33 begin = ent; \
36 #define LIST_DEL(begin, ent) \
38 if (ent->prev) \
39 ent->prev->next = ent->next;
    [all...]
  /bionic/tests/
mntent_test.cpp 46 struct mntent ent; local
47 memset(&ent, 0, sizeof(ent));
48 ent.mnt_opts = mnt_opts;
50 EXPECT_EQ(mnt_opts, hasmntopt(&ent, "aa"));
51 EXPECT_EQ(mnt_opts + 5, hasmntopt(&ent, "a"));
52 EXPECT_EQ(mnt_opts + 9, hasmntopt(&ent, "b"));
53 EXPECT_EQ(mnt_opts + 11, hasmntopt(&ent, "bb"));
54 EXPECT_EQ(mnt_opts + 14, hasmntopt(&ent, "c"));
55 EXPECT_EQ(nullptr, hasmntopt(&ent, "d"))
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/cfi/
cfi-alpha-2.s 2 .ent foo
9 .ent bar
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mips/
pcrel-1.s 2 .ent func
10 .ent foo
mips4100.s 4 .ent stuff
mips4650.s 4 .ent stuff
cfi-n64-1.s 3 .ent foo
elf-rel14.s 1 .ent foo
elf-rel25.s 3 .ent foo
mips16-stabs.s 4 .ent foo
mips16-vis-1.s 4 .ent foo
mips32-sync.s 3 .ent foo
eret-3.s 2 .ent foo
8 .ent bar
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-mips-elf/
pie.s 3 .ent __start
export-class-call16-def.s 5 .ent protected_foo
12 .ent hidden_foo
19 .ent internal_foo
got-page-7a.s 2 .ent f1
mips16-call-global-2.s 4 .ent x
pic-and-nonpic-2a.s 4 .ent __start
pic-and-nonpic-2b.s 4 .ent foo2
eh-frame5.s 4 .ent f1
13 .ent f2
22 .ent f3
31 .ent f4
40 .ent f5
49 .ent f6
58 .ent f7
67 .ent f8
74 .ent local_pers
81 .ent hidden_per
    [all...]
export-class-ref-f2.s 5 .ent f1
14 .ent f2
mips16-call-global-3.s 4 .ent y
11 .ent z
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/alpha/
elf-reloc-5.s 12 .ent nopv
18 .ent stdgp
26 .ent extern
  /external/e2fsprogs/lib/ext2fs/
brel.h 38 struct ext2_block_relocate_entry *ent);
44 struct ext2_block_relocate_entry *ent);
56 struct ext2_block_relocate_entry *ent);
79 #define ext2fs_brel_put(brel, old, ent) ((brel)->put((brel), old, ent))
80 #define ext2fs_brel_get(brel, old, ent) ((brel)->get((brel), old, ent))
82 #define ext2fs_brel_next(brel, old, ent) ((brel)->next((brel), old, ent))
  /external/webrtc/webrtc/base/
linuxfdwalk.c 45 struct dirent *ent; local
47 while (errno = 0, (ent = readdir(dir)) != NULL) {
48 if (strcmp(ent->d_name, ".") == 0 ||
49 strcmp(ent->d_name, "..") == 0) {
55 int fd = parse_fd(ent->d_name);

Completed in 322 milliseconds

1 2 3 4 5 6 7 8 91011>>