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

1 2 3 4 5 6 7 8 91011>>

  /external/adhd/cras/src/server/
cras_dbus_util.c 12 DBusMessageIter entry, variant; local
15 &entry))
17 if (!dbus_message_iter_append_basic(&entry, DBUS_TYPE_STRING, &key))
19 if (!dbus_message_iter_open_container(&entry, DBUS_TYPE_VARIANT,
24 if (!dbus_message_iter_close_container(&entry, &variant))
26 if (!dbus_message_iter_close_container(iter, &entry))
  /external/clang/test/CodeGen/
PR2643-null-store-to-bitfield.c 8 } entry = {0}; local
  /external/kmod/shared/
hash.h 10 unsigned int entry; member in struct:hash_iter
  /external/libcxx/test/std/input.output/filesystems/class.directory_iterator/directory_iterator.members/
copy.pass.cpp 51 const path entry = *it; local
55 TEST_CHECK(*it2 == entry);
56 TEST_CHECK(*it == entry);
move.pass.cpp 54 const path entry = *it; local
57 TEST_CHECK(*it2 == entry);
copy_assign.pass.cpp 43 const path entry = *from; local
48 TEST_CHECK(*to == entry);
49 TEST_CHECK(*from == entry);
77 const path entry = *it; local
82 TEST_CHECK(entry2 != entry);
86 TEST_CHECK(*it2 == entry);
move_assign.pass.cpp 49 const path entry = *from; local
54 TEST_CHECK(*to == entry);
81 const path entry = *it; local
86 TEST_CHECK(entry2 != entry);
90 TEST_CHECK(*it2 == entry);
  /external/libopus/silk/
NLSF_unpack.c 43 opus_uint8 entry; local
48 entry = *ec_sel_ptr++;
49 ec_ix [ i ] = silk_SMULBB( silk_RSHIFT( entry, 1 ) & 7, 2 * NLSF_QUANT_MAX_AMPLITUDE + 1 );
50 pred_Q8[ i ] = psNLSF_CB->pred_Q8[ i + ( entry & 1 ) * ( psNLSF_CB->order - 1 ) ];
51 ec_ix [ i + 1 ] = silk_SMULBB( silk_RSHIFT( entry, 5 ) & 7, 2 * NLSF_QUANT_MAX_AMPLITUDE + 1 );
52 pred_Q8[ i + 1 ] = psNLSF_CB->pred_Q8[ i + ( silk_RSHIFT( entry, 4 ) & 1 ) * ( psNLSF_CB->order - 1 ) + 1 ];
  /external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/ARM/
float-helpers.s 58 entry: label
81 entry: label
104 entry: label
127 entry: label
157 entry: label
188 entry: label
219 entry: label
250 entry: label
281 entry: label
312 entry label
346 entry: label
379 entry: label
412 entry: label
445 entry: label
486 entry: label
528 entry: label
570 entry: label
612 entry: label
654 entry: label
696 entry: label
728 entry: label
759 entry: label
786 entry: label
813 entry: label
836 entry: label
859 entry: label
886 entry: label
913 entry: label
944 entry: label
975 entry: label
1006 entry: label
1037 entry: label
1064 entry: label
1091 entry: label
1114 entry: label
1137 entry: label
1164 entry: label
1191 entry: label
    [all...]
  /external/u-boot/lib/efi/
efi_info.c 15 struct efi_entry_hdr *entry; local
28 entry = (struct efi_entry_hdr *)((ulong)info + info->hdr_size);
29 while (entry->type != EFIET_END) {
30 if (entry->type == type) {
31 if (entry->addr)
32 *datap = map_sysmem(entry->addr, entry->size);
34 *datap = entry + 1;
35 *sizep = entry->size;
38 entry = (struct efi_entry_hdr *)((ulong)entry + entry->link)
    [all...]
  /external/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/
copy.pass.cpp 66 const path entry = *it; local
73 TEST_CHECK(*it2 == entry);
move.pass.cpp 68 const path entry = *it; local
75 TEST_CHECK(*it2 == entry);
  /external/ltp/lib/
tst_dir_is_empty.c 30 struct dirent *entry; local
34 while ((entry = SAFE_READDIR(cleanup_fn, dir)) != NULL) {
35 const char *file = entry->d_name;
  /external/mesa3d/src/util/tests/hash_table/
insert_and_lookup.c 39 struct hash_entry *entry; local
50 entry = _mesa_hash_table_search(ht, str1);
51 assert(strcmp(entry->key, str1) == 0);
53 entry = _mesa_hash_table_search(ht, str2);
54 assert(strcmp(entry->key, str2) == 0);
replacement.c 39 struct hash_entry *entry; local
52 entry = _mesa_hash_table_search(ht, str1);
53 assert(entry);
54 assert(entry->data == str2);
56 _mesa_hash_table_remove(ht, entry);
58 entry = _mesa_hash_table_search(ht, str1);
59 assert(!entry);
delete_and_lookup.c 49 struct hash_entry *entry; local
59 entry = _mesa_hash_table_search(ht, str2);
60 assert(strcmp(entry->key, str2) == 0);
62 entry = _mesa_hash_table_search(ht, str1);
63 assert(strcmp(entry->key, str1) == 0);
65 _mesa_hash_table_remove(ht, entry);
67 entry = _mesa_hash_table_search(ht, str1);
68 assert(entry == NULL);
70 entry = _mesa_hash_table_search(ht, str2);
71 assert(strcmp(entry->key, str2) == 0)
    [all...]
  /external/toybox/toys/posix/
who.c 31 struct utmpx *entry; local
34 while ((entry = getutxent())) {
35 if (FLAG(a) || entry->ut_type == USER_PROCESS) {
36 time_t t = entry->ut_tv.tv_sec;
40 printf("%s\t%s\t%s (%s)\n", entry->ut_user, entry->ut_line,
41 toybuf, entry->ut_host);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
SortedMapGenerators.java 31 import java.util.Map.Entry;
47 @Override public SortedMap<String, String> create(Entry<String, String>[] entries) {
49 for (Entry<String, String> entry : entries) {
50 checkNotNull(entry);
51 builder.put(entry.getKey(), entry.getValue());
58 implements TestListGenerator<Entry<String, Integer>> {
61 public SampleElements<Entry<String, Integer>> samples() {
62 return new SampleElements<Entry<String, Integer>>
91 Entry<String, Integer> entry = (Entry<String, Integer>) o; local
    [all...]
  /bionic/tests/
mntent_test.cpp 29 struct mntent entry; local
31 while (getmntent_r(fp, &entry, buf, sizeof(buf)) != nullptr) {
32 if (strcmp(entry.mnt_fsname, "proc") == 0 && strcmp(entry.mnt_dir, "/proc") == 0) {
  /external/ImageMagick/Magick++/tests/
coderInfo.cpp 24 list<CoderInfo>::iterator entry = coderList.begin(); local
25 while( entry != coderList.end() )
29 (( entry->isReadable() && isReadable_ != CoderInfo::TrueMatch ) ||
30 ( !entry->isReadable() && isReadable_ != CoderInfo::FalseMatch )) )
32 cout << "Entry \""
33 << entry->name()
35 << static_cast<int>(entry->isReadable())
43 (( entry->isWritable() && isWritable_ != CoderInfo::TrueMatch ) ||
44 ( !entry->isWritable() && isWritable_ != CoderInfo::FalseMatch )) )
46 cout << "Entry \""
    [all...]
  /external/ImageMagick/coders/
mpr.c 137 *entry;
139 entry=AcquireMagickInfo("MPR","MPR","Magick Persistent Registry");
140 entry->decoder=(DecodeImageHandler *) ReadMPRImage;
141 entry->encoder=(EncodeImageHandler *) WriteMPRImage;
142 entry->flags^=CoderAdjoinFlag;
143 entry->format_type=ImplicitFormatType;
144 entry->flags|=CoderStealthFlag;
145 (void) RegisterMagickInfo(entry);
146 entry=AcquireMagickInfo("MPR","MPRI","Magick Persistent Registry");
147 entry->decoder=(DecodeImageHandler *) ReadMPRImage
133 *entry; local
    [all...]
x.c 140 *entry;
142 entry=AcquireMagickInfo("X","X","X Image");
144 entry->decoder=(DecodeImageHandler *) ReadXImage;
145 entry->encoder=(EncodeImageHandler *) WriteXImage;
147 entry->format_type=ImplicitFormatType;
148 (void) RegisterMagickInfo(entry);
136 *entry; local
  /external/brotli/scripts/
fix-win-bazel-build.py 17 for entry in manifest:
18 entry = entry.strip() variable
19 if not entry.startswith("org_brotli_java"):
21 if entry.startswith('org_brotli_java/external'):
23 (alias, space, link) = entry.partition(' ')
  /external/freetype/src/base/
ftsnames.c 59 TT_Name entry = ttface->name_table.names + idx; local
63 if ( entry->stringLength > 0 && !entry->string )
69 if ( FT_NEW_ARRAY ( entry->string, entry->stringLength ) ||
70 FT_STREAM_SEEK( entry->stringOffset ) ||
71 FT_STREAM_READ( entry->string, entry->stringLength ) )
73 FT_FREE( entry->string );
74 entry->stringLength = 0
114 TT_LangTag entry = ttface->name_table.langTags + local
    [all...]
  /external/perfetto/src/profiling/memory/
proc_utils.h 36 struct dirent* entry; local
37 while ((entry = readdir(*proc_dir))) {
39 long int pid = strtol(entry->d_name, &end, 10);

Completed in 1553 milliseconds

1 2 3 4 5 6 7 8 91011>>