Searched defs:entry (Results 1 - 25 of 1397) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A DPR2643-null-store-to-bitfield.c8 } entry = {0}; local
/external/kmod/shared/
H A Dhash.h10 unsigned int entry; member in struct:hash_iter
/external/libcxx/test/std/experimental/filesystem/class.directory_iterator/directory_iterator.members/
H A Dcopy.pass.cpp51 const path entry = *it; local
55 TEST_CHECK(*it2 == entry);
56 TEST_CHECK(*it == entry);
H A Dmove.pass.cpp54 const path entry = *it; local
57 TEST_CHECK(*it2 == entry);
H A Dcopy_assign.pass.cpp43 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);
H A Dmove_assign.pass.cpp49 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/syslinux/core/
H A Dpath.c22 struct path_entry *entry; local
27 entry = malloc(sizeof(*entry));
28 if (!entry)
31 entry->str = strdup(str);
32 if (!entry->str)
35 list_add(&entry->list, &PATH);
37 return entry;
40 free(entry);
/external/libcxx/test/std/experimental/filesystem/class.rec.dir.itr/rec.dir.itr.members/
H A Dcopy.pass.cpp66 const path entry = *it; local
73 TEST_CHECK(*it2 == entry);
H A Dmove.pass.cpp68 const path entry = *it; local
75 TEST_CHECK(*it2 == entry);
/external/bsdiff/
H A Ddiff_encoder.cc26 bool DiffEncoder::AddControlEntry(const ControlEntry& entry) { argument
27 if (entry.diff_size > kMaxEncodedUint64Value) {
28 LOG(ERROR) << "Encoding value out of range " << entry.diff_size;
32 if (entry.extra_size > kMaxEncodedUint64Value) {
33 LOG(ERROR) << "Encoding value out of range " << entry.extra_size;
37 // entry.diff_size + entry.extra_size don't overflow in uint64_t since we
39 if (entry.diff_size + entry.extra_size > new_size_ - written_output_) {
44 if (entry
[all...]
/external/freetype/src/base/
H A Dftsnames.c59 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
114 TT_LangTag entry = ttface->name_table.langTags + local
[all...]
/external/google-breakpad/src/processor/
H A Dstatic_address_map-inl.h48 const EntryType *&entry, AddressType *entry_address) const {
61 entry = iterator.GetValuePtr();
46 Retrieve( const AddressType &address, const EntryType *&entry, AddressType *entry_address) const argument
/external/libopus/silk/
H A DNLSF_unpack.c43 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/mesa3d/src/util/tests/hash_table/
H A Dinsert_and_lookup.c39 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);
H A Dreplacement.c39 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);
/external/perfetto/src/tracing/core/
H A Dcommit_data_request.cc68 auto* entry = proto->add_chunks_to_move(); local
69 it.ToProto(entry);
73 auto* entry = proto->add_chunks_to_patch(); local
74 it.ToProto(entry);
181 auto* entry = proto->add_patches(); local
182 it.ToProto(entry);
H A Dinode_file_config.cc110 auto* entry = proto->add_mount_point_mapping(); local
111 it.ToProto(entry);
H A Dtrace_config.cc102 auto* entry = proto->add_buffers(); local
103 it.ToProto(entry);
107 auto* entry = proto->add_data_sources(); local
108 it.ToProto(entry);
129 auto* entry = proto->add_producers(); local
130 it.ToProto(entry);
/external/replicaisland/src/com/replica/replicaisland/
H A DHitPointPool.java30 public void release(Object entry) { argument
31 ((HitPoint)entry).reset();
32 super.release(entry);
/external/swiftshader/src/Reactor/
H A DLLVMRoutine.hpp39 //int getFunctionSize(); // Includes constants before the entry point
45 const void *entry; member in class:sw::LLVMRoutine
/external/syslinux/gpxe/src/arch/i386/prefix/
H A Dnbiprefix.S20 .word entry, 0x07c0 /* Start execution at 0x07c0:entry */
49 * NBI entry point
52 entry: label
74 .size entry, . - entry
/external/toybox/toys/posix/
H A Dwho.c29 struct utmpx *entry; local
33 while ((entry = getutxent())) {
34 if ((toys.optflags & FLAG_a) || entry->ut_type == USER_PROCESS) {
39 time = entry->ut_tv.tv_sec;
42 printf("%s\t%s\t%*.*s\t(%s)\n", entry->ut_user, entry->ut_line,
43 time_size, time_size, ctime(&time), entry->ut_host);
/external/ImageMagick/Magick++/tests/
H A DcoderInfo.cpp24 list<CoderInfo>::iterator entry = coderList.begin(); local
25 while( entry != coderList.end() )
29 (( entry->isReadable() && isReadable_ != CoderInfo::TrueMatch ) ||
30 ( !entry->isReadable() && isReadable_ != CoderInfo::FalseMatch )) )
33 << entry->name()
35 << static_cast<int>(entry->isReadable())
43 (( entry->isWritable() && isWritable_ != CoderInfo::TrueMatch ) ||
44 ( !entry->isWritable() && isWritable_ != CoderInfo::FalseMatch )) )
47 << entry->name()
49 << static_cast<int>(entry
[all...]
/external/ImageMagick/coders/
H A Dfd.c158 *entry;
160 entry=AcquireMagickInfo("FD","FD","Read image from a file descriptor");
161 entry->decoder=(DecodeImageHandler *) ReadFDImage;
162 entry->flags|=CoderStealthFlag;
163 (void) RegisterMagickInfo(entry);
155 *entry; local
H A Dmpr.c137 *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
133 *entry; local
[all...]

Completed in 767 milliseconds

1234567891011>>