Home
last modified time | relevance | path

Searched refs:entry (Results 1501 - 1525 of 2329) sorted by relevance

1...<<61626364656667686970>>...94

/third_party/elfio/tests/elf_examples/
H A Dasm.s7 _start: ;tell linker entry point
/third_party/ffmpeg/libavcodec/
H A Dratecontrol.h65 RateControlEntry *entry; member
/third_party/NuttX/drivers/usbdev/gadget/fconfig/include/
H A Dusb_obj.h54 struct list_head entry; member
H A Dusb_handle.h59 struct list_head entry; member
/third_party/libabigail/tests/
H A Druntestfedabipkgdiff.py.in143 """The main entry point of this program.
/third_party/mbedtls/include/mbedtls/
H A Dx509_crl.h44 * Certificate revocation list entry.
52 /** Direct access to the whole entry inside the containing buffer. */
56 /** The revocation date of this entry. */
58 /** Direct access to the list of CRL entry extensions
90 mbedtls_x509_crl_entry entry; /**< The CRL entries containing the certificate revocation times for this CA. */ member
/third_party/musl/libc-test/src/functionalext/supplement/dirent/
H A Dscandir.c21 int filter(const struct dirent *entry) in filter() argument
/third_party/mesa3d/src/gallium/auxiliary/pipebuffer/
H A Dpb_slab.h37 * The library allows delaying the re-use of an entry, i.e. an entry may be
40 * determine when it is safe to allocate the entry again; the user of this
56 /* Descriptor of a slab entry.
105 /* Callback function to determine whether a given entry can already be reused.
127 * the most-recently freed entry.
144 pb_slab_free(struct pb_slabs* slabs, struct pb_slab_entry *entry);
/third_party/skia/third_party/externals/spirv-tools/source/fuzz/
H A Dfuzzer_pass_inline_functions.cpp81 // The called function entry block label will not be inlined. in Apply()
82 if (&called_function_block != &*called_function->entry()) { in Apply()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/fuzz/
H A Dfuzzer_pass_inline_functions.cpp81 // The called function entry block label will not be inlined. in Apply()
82 if (&called_function_block != &*called_function->entry()) { in Apply()
/third_party/spirv-tools/source/fuzz/
H A Dfuzzer_pass_inline_functions.cpp81 // The called function entry block label will not be inlined. in Apply()
82 if (&called_function_block != &*called_function->entry()) { in Apply()
/third_party/eudev/src/libudev/
H A Dlibudev-device.c619 /* devices with a database entry are initialized */ in udev_device_read_db()
625 struct udev_list_entry *entry; in udev_device_read_db() local
641 entry = udev_device_add_property_from_string(udev_device, val); in udev_device_read_db()
642 udev_list_entry_set_num(entry, true); in udev_device_read_db()
751 * device and the udev database entry. The syspath is the absolute
831 * device and the udev database entry. The device is looked-up
866 * device and the udev database entry. The device is looked-up
948 * and the udev database entry. The device is looked up by the subsystem
1088 * device and the udev database entry.
1122 * database entry
2091 struct udev_list_entry *entry; udev_device_copy_properties() local
[all...]
/third_party/node/src/
H A Dnode_messaging.cc451 Local<Value> entry = transfer_list_v[i]; in Serialize() local
452 if (entry->IsObject()) { in Serialize()
456 if (!entry.As<Object>()->HasPrivate( in Serialize()
467 if (entry->IsArrayBuffer()) { in Serialize()
468 Local<ArrayBuffer> ab = entry.As<ArrayBuffer>(); in Serialize()
493 } else if (env->base_object_ctor_template()->HasInstance(entry)) { in Serialize()
495 if (!source_port.IsEmpty() && entry == source_port) { in Serialize()
503 Unwrap<BaseObject>(entry.As<Object>()) }; in Serialize()
504 if (env->message_port_constructor_template()->HasInstance(entry) && in Serialize()
523 entry in Serialize()
[all...]
/third_party/nghttp2/src/
H A DHttpServer.cc404 // We use timer to close file descriptor and delete the entry from in release_fd()
854 std::array<nghttp2_settings_entry, 4> entry; in connection_made() local
857 entry[0].settings_id = NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS; in connection_made()
858 entry[0].value = config->max_concurrent_streams; in connection_made()
861 entry[niv].settings_id = NGHTTP2_SETTINGS_HEADER_TABLE_SIZE; in connection_made()
862 entry[niv].value = config->header_table_size; in connection_made()
867 entry[niv].settings_id = NGHTTP2_SETTINGS_INITIAL_WINDOW_SIZE; in connection_made()
868 entry[niv].value = (1 << config->window_bits) - 1; in connection_made()
873 entry[niv].settings_id = NGHTTP2_SETTINGS_NO_RFC7540_PRIORITIES; in connection_made()
874 entry[ni in connection_made()
[all...]
/third_party/node/deps/v8/src/compiler/backend/
H A Dcode-generator.cc315 tasm()->bind(ool->entry()); in AssembleCode()
1113 DeoptimizationEntry const& entry = in BuildTranslation() local
1115 FrameStateDescriptor* const descriptor = entry.descriptor(); in BuildTranslation()
1118 const int update_feedback_count = entry.feedback().IsValid() ? 1 : 0; in BuildTranslation()
1122 if (entry.feedback().IsValid()) { in BuildTranslation()
1124 DeoptimizationLiteral(entry.feedback().vector); in BuildTranslation()
1126 translations_.AddUpdateFeedback(literal_id, entry.feedback().slot.ToInt()); in BuildTranslation()
1133 pc_offset, entry.kind(), entry.reason(), in BuildTranslation()
1135 entry in BuildTranslation()
[all...]
/third_party/node/deps/v8/src/debug/
H A Ddebug-wasm-objects.cc276 auto entry = table->FindEntry(isolate, name_str); in FindName() local
277 if (entry.is_found()) return Smi::ToInt(table->ValueAt(entry)); in FindName()
301 InternalIndex entry(Smi::ToInt(names->get(i))); in NamedEnumerator()
302 names->set(i, table->NameAt(entry)); in NamedEnumerator()
1092 Handle<Object> entry = WasmTableObject::Get(isolate, table, i); in AddWasmTableObjectInternalProperties() local
1093 if (entry->IsWasmInternalFunction()) { in AddWasmTableObjectInternalProperties()
1094 entry = handle(Handle<WasmInternalFunction>::cast(entry)->external(), in AddWasmTableObjectInternalProperties()
1097 entries->set(i, *entry); in AddWasmTableObjectInternalProperties()
[all...]
/third_party/node/deps/v8/src/builtins/
H A Dbuiltins-array.cc1554 InternalIndex entry = groups->FindEntry(isolate, *key); in AddValueToKeyedGroup() local
1555 if (!entry.is_found()) { in AddValueToKeyedGroup()
1561 Handle<ArrayList>(ArrayList::cast(groups->ValueAt(entry)), isolate); in AddValueToKeyedGroup()
1563 groups->SetEntry(entry, *key, *array); in AddValueToKeyedGroup()
1759 for (InternalIndex entry : groups->IterateEntries()) { in BUILTIN()
1760 Handle<Name> key = Handle<Name>(Name::cast(groups->KeyAt(entry)), isolate); in BUILTIN()
1763 Handle<ArrayList>(ArrayList::cast(groups->ValueAt(entry)), isolate); in BUILTIN()
1821 for (InternalIndex entry : groups->IterateEntries()) { in BUILTIN()
1822 Handle<Object> key = Handle<Object>(groups->KeyAt(entry), isolate); in BUILTIN()
1825 Handle<ArrayList>(ArrayList::cast(groups->ValueAt(entry)), isolat in BUILTIN()
[all...]
/drivers/hdf_core/adapter/khdf/linux/platform/mipi_dsi/
H A Dmipi_tx_dev.c128 struct proc_dir_entry* entry = NULL; in ProcRegister() local
148 entry = proc_create(procName, mode, NULL, ops); in ProcRegister()
149 if (entry == NULL) { in ProcRegister()
/drivers/peripheral/usb/ddk/device/src/
H A Dusbfn_io_mgr.c111 DListInsertTail(&reqList->entry, &funcMgr->reqEntry); in UsbFnIoMgrRequestAlloc()
113 DListInsertTail(&reqList->entry, &handle->reqEntry); in UsbFnIoMgrRequestAlloc()
153 DListRemove(&reqList->entry); in UsbFnIoMgrRequestFree()
/third_party/elfutils/libdw/
H A Dlibdw.h205 /* Each entry in a CFI section is either a CIE described by Dwarf_CIE or
216 #define dwarf_cfi_cie_p(entry) ((entry)->cie.CIE_id == LIBDW_CIE_ID)
316 /* Decode one DWARF CFI entry (CIE or FDE) from the raw section data.
322 position immediately after this entry.
328 skipping to the next CFI entry though the current one is unusable.
336 Dwarf_CFI_Entry *entry)
739 compilation directory entry will be the empty string in that case)
851 Returns -1 for errors or 0 if DIE is not found in any scope entry. */
933 /* Find the appropriate PC location or locations for function entry
[all...]
/third_party/elfio/tests/
H A DELFIOTest2.cpp465 Elf64_Addr entry = r1.get_entry(); in TEST() local
472 EXPECT_EQ( v[0].get_entry(), entry ); in TEST()
478 EXPECT_EQ( r2.get_entry(), entry ); in TEST()
/third_party/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/
H A DDecimalFormatICU.java113 for (Entry<AttributedCharacterIterator.Attribute, Object> entry in formatToCharacterIterator()
115 AttributedCharacterIterator.Attribute key = entry.getKey(); in formatToCharacterIterator()
117 Object jdkVal = entry.getValue(); in formatToCharacterIterator()
H A DSimpleDateFormatICU.java110 for (Entry<AttributedCharacterIterator.Attribute, Object> entry in formatToCharacterIterator()
112 AttributedCharacterIterator.Attribute key = entry.getKey(); in formatToCharacterIterator()
114 Object jdkVal = entry.getValue(); in formatToCharacterIterator()
/third_party/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/coverage/
H A DJacocoReportCheck.java78 System.err.println("Warning: Duplicated exclusion entry - " + line); in main()
263 // Add the entry in parseReport()
267 ReportEntry entry = new ReportEntry(cls, method); in parseReport()
268 ReportEntry prev = entries.put(entry.key(), entry); in parseReport()
/third_party/libphonenumber/tools/java/java-build/src/com/google/i18n/phonenumbers/
H A DBuildMetadataProtoFromXml.java283 for (Map.Entry<Integer, List<String>> entry : countryCodeToRegionCodeMap.entrySet()) { in writeMap()
284 int countryCallingCode = entry.getKey(); in writeMap()
285 List<String> regionCodes = entry.getValue(); in writeMap()

Completed in 24 milliseconds

1...<<61626364656667686970>>...94