Searched refs:found (Results 76 - 100 of 1193) sorted by relevance

1234567891011>>

/linux-master/include/kunit/
H A Dresource.h327 struct kunit_resource *res, *found = NULL; local
334 found = res;
335 kunit_get_resource(found);
342 return found;
365 * 0 if kunit_resource is found and freed, -ENOENT if not found.
/linux-master/drivers/gpu/drm/xe/
H A Dxe_uc_fw_types.h46 XE_UC_FIRMWARE_MISSING, /* blob not found on the system */
48 XE_UC_FIRMWARE_AVAILABLE, /* blob found and copied in mem */
125 /** @versions: FW versions wanted and found */
134 /** @versions.found: fw versions found in firmware blob */
135 struct xe_uc_fw_version found[XE_UC_FW_VER_TYPE_COUNT]; member in struct:xe_uc_fw::__anon640
145 /** @private_data_size: size of private data found in uC css header */
H A Dxe_uc_fw.c41 * the version found is smaller than the version wanted. This is done only for
302 struct xe_uc_fw_version *release = &uc_fw->versions.found[XE_UC_FW_VER_RELEASE];
303 struct xe_uc_fw_version *compatibility = &uc_fw->versions.found[XE_UC_FW_VER_COMPATIBILITY];
335 struct xe_uc_fw_version *found = &uc_fw->versions.found[uc_fw->versions.wanted_type]; local
345 if (wanted->major != found->major ||
347 ((wanted->minor != found->minor) ||
348 (wanted->patch != found->patch)))) {
351 found->major, found
[all...]
/linux-master/drivers/md/dm-vdo/indexer/
H A Dopen-chapter.h54 struct uds_record_data *metadata, bool *found);
H A Dindex.c46 * can proceed. More details can be found in the sparse cache documentation.
327 request->found = ((new_location == UDS_LOCATION_IN_OPEN_CHAPTER) ||
335 request->found = true;
345 u64 virtual_chapter, bool *found)
361 record_page_number, found);
365 bool *found)
370 *found = true;
373 *found = false;
379 &request->old_metadata, found);
387 &request->old_metadata, found);
344 search_sparse_cache_in_zone(struct index_zone *zone, struct uds_request *request, u64 virtual_chapter, bool *found) argument
364 get_record_from_zone(struct index_zone *zone, struct uds_request *request, bool *found) argument
418 bool overflow_record, found = false; local
542 bool found; local
[all...]
/linux-master/drivers/acpi/
H A Dacpi_watchdog.c135 bool found; local
151 found = false;
155 found = true;
160 if (!found) {
/linux-master/drivers/infiniband/hw/mlx4/
H A Ddoorbell.c57 goto found;
77 found:
/linux-master/drivers/infiniband/hw/mlx5/
H A Ddoorbell.c59 goto found;
81 found:
/linux-master/arch/alpha/lib/
H A Dev67-strncat.S48 bne $2, $found # U :
55 $found: cttz $2, $3 # U0 :
/linux-master/drivers/net/wireless/mediatek/mt76/mt76x0/
H A Deeprom.c295 int found; local
297 found = mt76_eeprom_init(&dev->mt76, MT76X0_EEPROM_SIZE);
298 if (found < 0)
299 return found;
301 if (found && !mt76x0_check_eeprom(dev))
304 found = mt76x0_efuse_physical_size_check(dev);
305 if (found < 0)
306 return found;
/linux-master/drivers/scsi/arm/
H A Dqueue.c259 * Returns : 0 if not found, != 0 if found
265 int found = 0; local
271 found = 1;
277 return found;
285 * Returns : 0 if not found
291 int found = 0; local
298 found = 1;
304 return found;
/linux-master/drivers/gpu/drm/amd/amdgpu/
H A Damdgpu_encoders.c88 struct drm_connector *connector, *found = NULL; local
96 found = connector;
101 return found;
109 struct drm_connector *connector, *found = NULL; local
117 found = connector;
122 return found;
/linux-master/drivers/net/wireless/intel/iwlwifi/mvm/
H A Doffloading.c124 bool found = false; local
139 found = true;
141 if (found) {
146 bool found = false; local
160 found = true;
163 if (found) {
/linux-master/scripts/
H A Dfaddr2line175 local found=0
190 found=1
194 if [[ $found = 1 ]]; then
197 found=2
202 if [[ $found = 0 ]]; then
208 # If nothing was found after the symbol, assume it's the last
210 [[ $found = 1 ]] && sym_size=$(($sec_size - $sym_addr))
304 # print any matches found
308 # if no match was found, print warnings
/linux-master/sound/core/seq/
H A Dseq_ports.c43 /* return pointer to port structure - port is locked if found */
60 return NULL; /* not found */
64 /* search for the next port - port is locked if found */
69 struct snd_seq_client_port *port, *found; local
73 found = NULL;
82 found = port;
85 if (found == NULL || port->addr.port < found->addr.port)
86 found = port;
88 if (found) {
275 struct snd_seq_client_port *found = NULL, *p; local
[all...]
/linux-master/drivers/pinctrl/aspeed/
H A Dpinctrl-aspeed.c163 char *found = NULL; local
175 expanded = krealloc(found, len + delta + 1, GFP_KERNEL);
177 kfree(found);
181 found = expanded;
182 found[len] = '\0';
185 strcat(found, str);
186 strcat(found, ", ");
194 kfree(found);
198 found[len - 2] = '\0';
200 return found;
[all...]
/linux-master/net/netfilter/
H A Dnf_conncount.c100 const struct nf_conntrack_tuple_hash *found; local
105 found = nf_conntrack_find_get(net, &conn->zone, &conn->tuple);
106 if (found)
107 return found;
130 const struct nf_conntrack_tuple_hash *found; local
143 found = find_or_evict(net, list, conn);
144 if (IS_ERR(found)) {
145 /* Not found, but might be about to be confirmed */
146 if (PTR_ERR(found) == -EAGAIN) {
157 found_ct = nf_ct_tuplehash_to_ctrack(found);
230 const struct nf_conntrack_tuple_hash *found; local
[all...]
H A Dnf_conntrack_helper.c117 bool found = false; local
121 found = true;
125 return found ? cur : NULL;
291 bool found = false; local
295 found = true;
299 return found ? cur : NULL;
308 bool found = false; local
312 found = true;
316 return found ? cur : NULL;
/linux-master/drivers/greybus/
H A Dmanifest.c189 bool found = false; local
202 found = true;
206 if (!found)
254 dev_err(&bundle->dev, "invalid cport id found (%02u)\n",
267 "duplicate CPort %u found\n", cport_id);
443 * there must be exactly one of those. When found, we record the
460 u32 found = 0; local
510 if (!found++)
513 if (found != 1) {
514 dev_err(&intf->dev, "manifest must have 1 interface descriptor (%u found)\
[all...]
/linux-master/fs/bcachefs/
H A Dstr_hash.h183 /* hole, not found */
272 bool found = false; local
283 goto found;
304 found:
305 found = true;
308 if (!found && (str_hash_flags & BCH_HASH_SET_MUST_REPLACE)) {
310 } else if (found && (str_hash_flags & BCH_HASH_SET_MUST_CREATE)) {
313 if (!found && slot.path)
/linux-master/drivers/hid/
H A Dhid-uclogic-params.c152 * -EPIPE, if the descriptor was not found, or
182 hid_dbg(hdev, "string descriptor #%hhu not found\n", idx);
220 * case of error, or if parameters are not found. Cannot be NULL.
222 * were found, and to false if not (e.g. device was
235 bool found = false; local
260 "string descriptor with pen parameters not found, assuming not compatible\n");
317 found = true;
319 *pfound = found;
349 * found. Cannot be NULL.
351 * parameters were found, an
375 bool found = false; local
567 bool found = false; local
836 bool found; local
1551 bool found; local
[all...]
/linux-master/drivers/net/xen-netback/
H A Dhash.c40 bool found; local
52 found = false;
59 found = true;
64 if (!found) {
77 if (found)
121 bool found; local
131 found = false;
138 found = true;
145 if (!found)
/linux-master/drivers/xen/xen-pciback/
H A Dpassthrough.c124 int found; local
133 found = 0;
135 for (; !found && dev != NULL; dev = dev->bus->self) {
138 found = 1;
147 if (!found) {
/linux-master/drivers/gpu/drm/nouveau/dispnv04/
H A Darb.c58 int found, mclk_extra, mclk_loop, cbs, m1, p1; local
74 found = 0;
76 while (!found) {
77 found = 1;
96 found = !mclk_extra;
/linux-master/arch/powerpc/sysdev/xics/
H A Dicp-native.c327 int found = 0; local
331 found = 1;
332 if (!found) {
336 found = 1;
340 if (found == 0)

Completed in 414 milliseconds

1234567891011>>