Searched refs:lhs (Results 26 - 50 of 53) sorted by relevance

123

/linux-master/tools/perf/util/
H A Dcomm.c91 const struct comm_str *lhs = *(const struct comm_str * const *)_lhs; local
94 return strcmp(comm_str__str(lhs), comm_str__str(rhs));
H A Dpmus.c168 const struct list_head *lhs, const struct list_head *rhs)
171 struct perf_pmu *lhs_pmu = container_of(lhs, struct perf_pmu, list);
167 pmus_cmp(void *priv __maybe_unused, const struct list_head *lhs, const struct list_head *rhs) argument
H A Dparse-events.c1980 __weak int arch_evlist__cmp(const struct evsel *lhs, const struct evsel *rhs) argument
1983 return lhs->core.idx - rhs->core.idx;
1989 const struct evsel *lhs = container_of(lhs_core, struct evsel, core); local
2010 lhs_sort_idx = *force_grouped_idx != -1 && arch_evsel__must_be_in_group(lhs)
2029 lhs_pmu_name = lhs->group_pmu_name;
2037 return arch_evlist__cmp(lhs, rhs);
H A Devlist.h115 int arch_evlist__cmp(const struct evsel *lhs, const struct evsel *rhs);
H A Dsymbol.c439 const struct symbol *lhs = *((const struct symbol **)vlhs); local
442 return strcmp(lhs->name, rhs->name);
/linux-master/drivers/net/ethernet/freescale/
H A Dfec_ptp.c359 u64 lhs, rhs; local
376 lhs = NSEC_PER_SEC;
379 if (lhs >= rhs) {
381 corr_period = div_u64(lhs, rhs);
384 lhs += NSEC_PER_SEC;
/linux-master/drivers/iommu/iommufd/
H A Dio_pagetable.c1176 struct iopt_area *lhs; local
1192 lhs = iopt_area_alloc();
1193 if (!lhs)
1222 rc = iopt_insert_area(iopt, lhs, area->pages, start_iova,
1241 interval_tree_insert(&lhs->pages_node, &pages->domains_itree);
1245 lhs->storage_domain = area->storage_domain;
1246 lhs->pages = area->pages;
1260 interval_tree_remove(&lhs->node, &iopt->area_itree);
1267 kfree(lhs);
/linux-master/kernel/time/
H A Dtime.c838 * @lhs: first (left) timespec64 to add
844 * Return: sum of @lhs + @rhs
846 struct timespec64 timespec64_add_safe(const struct timespec64 lhs, argument
851 set_normalized_timespec64(&res, (timeu64_t) lhs.tv_sec + rhs.tv_sec,
852 lhs.tv_nsec + rhs.tv_nsec);
854 if (unlikely(res.tv_sec < lhs.tv_sec || res.tv_sec < rhs.tv_sec)) {
H A Dhrtimer.c330 ktime_t ktime_add_safe(const ktime_t lhs, const ktime_t rhs) argument
332 ktime_t res = ktime_add_unsafe(lhs, rhs);
338 if (res < 0 || res < lhs || res < rhs)
/linux-master/kernel/trace/
H A Dtrace_dynevent.c324 * The lhs argument string will be appended to the current cmd string,
348 ret = seq_buf_printf(&cmd->seq, " %s%c%s%c", arg_pair->lhs,
352 pr_err("field string is too long: %s%c%s%c\n", arg_pair->lhs,
H A Dtrace_events_synth.c1004 size = synth_field_size((char *)arg_pair->lhs);
1006 if (strstr((char *)arg_pair->lhs, "["))
1041 arg_pair.lhs = type;
/linux-master/scripts/gcc-plugins/
H A Dgcc-common.h311 static inline gimple gimple_build_assign_with_ops(enum tree_code subcode, tree lhs, tree op1, tree op2 MEM_STAT_DECL) argument
313 return gimple_build_assign(lhs, subcode, op1, op2 PASS_MEM_STAT);
H A Dlatent_entropy_plugin.c334 static gimple create_assign(enum tree_code code, tree lhs, tree op1, argument
337 return gimple_build_assign_with_ops(code, lhs, op1, op2);
H A Drandomize_layout_plugin.c738 const_tree lhs; local
772 lhs = gimple_get_lhs(stmt);
773 lhs_type = TREE_TYPE(lhs);
/linux-master/tools/testing/selftests/bpf/
H A Dbpf_experimental.h234 asm volatile ("if %[lhs] " op " %[rhs] goto +2; r1 = %[value]; call bpf_throw" \
235 : : [lhs] "r"(LHS), [rhs] cons(RHS), [value] "ri"(VAL) : ); \
267 asm volatile goto("if %[lhs] " OP " %[rhs] goto %l[l_true]" \
268 :: [lhs] "r"((short)LHS), [rhs] PRED (RHS) :: l_true); \
/linux-master/drivers/gpu/drm/amd/display/dc/core/
H A Ddc_link_enc_cfg.c224 static bool are_ep_ids_equal(struct display_endpoint_id *lhs, struct display_endpoint_id *rhs) argument
228 if (lhs->link_id.id == rhs->link_id.id &&
229 lhs->link_id.enum_id == rhs->link_id.enum_id &&
230 lhs->link_id.type == rhs->link_id.type &&
231 lhs->ep_type == rhs->ep_type)
/linux-master/kernel/bpf/
H A Doffload.c727 bool bpf_prog_dev_bound_match(const struct bpf_prog *lhs, const struct bpf_prog *rhs) argument
731 if (bpf_prog_is_offloaded(lhs->aux) != bpf_prog_is_offloaded(rhs->aux))
735 ret = lhs->aux->offload && rhs->aux->offload &&
736 lhs->aux->offload->netdev &&
737 lhs->aux->offload->netdev == rhs->aux->offload->netdev;
/linux-master/net/ceph/
H A Dosdmap.c677 int ceph_pg_compare(const struct ceph_pg *lhs, const struct ceph_pg *rhs) argument
679 if (lhs->pool < rhs->pool)
681 if (lhs->pool > rhs->pool)
683 if (lhs->seed < rhs->seed)
685 if (lhs->seed > rhs->seed)
691 int ceph_spg_compare(const struct ceph_spg *lhs, const struct ceph_spg *rhs) argument
695 ret = ceph_pg_compare(&lhs->pgid, &rhs->pgid);
699 if (lhs->shard < rhs->shard)
701 if (lhs->shard > rhs->shard)
2235 static bool __osds_equal(const struct ceph_osds *lhs, argument
2248 osds_equal(const struct ceph_osds *lhs, const struct ceph_osds *rhs) argument
[all...]
H A Dosd_client.c1795 static int hoid_compare(const struct ceph_hobject_id *lhs, argument
1802 if (lhs->is_max < rhs->is_max)
1804 if (lhs->is_max > rhs->is_max)
1807 if (lhs->pool < rhs->pool)
1809 if (lhs->pool > rhs->pool)
1812 if (hoid_get_bitwise_key(lhs) < hoid_get_bitwise_key(rhs))
1814 if (hoid_get_bitwise_key(lhs) > hoid_get_bitwise_key(rhs))
1817 ret = compare_names(lhs->nspace, lhs->nspace_len,
1822 hoid_get_effective_key(lhs,
[all...]
/linux-master/drivers/block/
H A Drbd.c3620 static bool rbd_cid_equal(const struct rbd_client_id *lhs, argument
3623 return lhs->gid == rhs->gid && lhs->handle == rhs->handle;
3861 static bool locker_equal(const struct ceph_locker *lhs, argument
3864 return lhs->id.name.type == rhs->id.name.type &&
3865 lhs->id.name.num == rhs->id.name.num &&
3866 !strcmp(lhs->id.cookie, rhs->id.cookie) &&
3867 ceph_addr_equal_no_type(&lhs->info.addr, &rhs->info.addr);
/linux-master/arch/openrisc/kernel/
H A Dentry.S431 l.bf lhs
447 lhs: l.lbs r5,0(r2) label
/linux-master/lib/
H A Dchecksum_kunit.c453 #define CHECK_EQ(lhs, rhs) KUNIT_ASSERT_EQ(test, (__force u64)lhs, (__force u64)rhs)
/linux-master/include/linux/
H A Dbpf.h2989 bool bpf_prog_dev_bound_match(const struct bpf_prog *lhs, const struct bpf_prog *rhs);
3052 static inline bool bpf_prog_dev_bound_match(const struct bpf_prog *lhs, const struct bpf_prog *rhs) argument
/linux-master/drivers/md/
H A Ddm-snap.c190 static int bdev_equal(struct block_device *lhs, struct block_device *rhs) argument
196 return lhs == rhs;
/linux-master/drivers/pinctrl/tegra/
H A Dpinctrl-tegra20.c2108 MUX_PG(lhs, DISPLAYA, DISPLAYB, XIO, RSVD4, 0x20, 7, 0x90, 22, -1, -1),

Completed in 607 milliseconds

123