Symbol: hgt
drivers/media/platform/renesas/vsp1/vsp1.h
94
struct vsp1_hgt *hgt;
drivers/media/platform/renesas/vsp1/vsp1_drv.c
170
if (vsp1->hgt) {
drivers/media/platform/renesas/vsp1/vsp1_drv.c
171
ret = media_create_pad_link(&vsp1->hgt->histo.entity.subdev.entity,
drivers/media/platform/renesas/vsp1/vsp1_drv.c
173
&vsp1->hgt->histo.video.entity, 0,
drivers/media/platform/renesas/vsp1/vsp1_drv.c
320
vsp1->hgt = vsp1_hgt_create(vsp1);
drivers/media/platform/renesas/vsp1/vsp1_drv.c
321
if (IS_ERR(vsp1->hgt)) {
drivers/media/platform/renesas/vsp1/vsp1_drv.c
322
ret = PTR_ERR(vsp1->hgt);
drivers/media/platform/renesas/vsp1/vsp1_drv.c
326
list_add_tail(&vsp1->hgt->histo.entity.list_dev,
drivers/media/platform/renesas/vsp1/vsp1_hgt.c
100
struct vsp1_hgt *hgt = container_of(ctrl->handler, struct vsp1_hgt,
drivers/media/platform/renesas/vsp1/vsp1_hgt.c
103
memcpy(hgt->hue_areas, ctrl->p_new.p_u8, sizeof(hgt->hue_areas));
drivers/media/platform/renesas/vsp1/vsp1_hgt.c
134
struct vsp1_hgt *hgt = to_hgt(&entity->subdev);
drivers/media/platform/renesas/vsp1/vsp1_hgt.c
146
vsp1_hgt_write(hgt, dlb, VI6_HGT_REGRST, VI6_HGT_REGRST_RCLEA);
drivers/media/platform/renesas/vsp1/vsp1_hgt.c
148
vsp1_hgt_write(hgt, dlb, VI6_HGT_OFFSET,
drivers/media/platform/renesas/vsp1/vsp1_hgt.c
151
vsp1_hgt_write(hgt, dlb, VI6_HGT_SIZE,
drivers/media/platform/renesas/vsp1/vsp1_hgt.c
155
mutex_lock(hgt->ctrls.lock);
drivers/media/platform/renesas/vsp1/vsp1_hgt.c
157
lower = hgt->hue_areas[i*2 + 0];
drivers/media/platform/renesas/vsp1/vsp1_hgt.c
158
upper = hgt->hue_areas[i*2 + 1];
drivers/media/platform/renesas/vsp1/vsp1_hgt.c
159
vsp1_hgt_write(hgt, dlb, VI6_HGT_HUE_AREA(i),
drivers/media/platform/renesas/vsp1/vsp1_hgt.c
163
mutex_unlock(hgt->ctrls.lock);
drivers/media/platform/renesas/vsp1/vsp1_hgt.c
167
vsp1_hgt_write(hgt, dlb, VI6_HGT_MODE,
drivers/media/platform/renesas/vsp1/vsp1_hgt.c
187
struct vsp1_hgt *hgt;
drivers/media/platform/renesas/vsp1/vsp1_hgt.c
190
hgt = devm_kzalloc(vsp1->dev, sizeof(*hgt), GFP_KERNEL);
drivers/media/platform/renesas/vsp1/vsp1_hgt.c
191
if (hgt == NULL)
drivers/media/platform/renesas/vsp1/vsp1_hgt.c
195
ret = vsp1_histogram_init(vsp1, &hgt->histo, VSP1_ENTITY_HGT, "hgt",
drivers/media/platform/renesas/vsp1/vsp1_hgt.c
200
vsp1_entity_destroy(&hgt->histo.entity);
drivers/media/platform/renesas/vsp1/vsp1_hgt.c
205
v4l2_ctrl_handler_init(&hgt->ctrls, 1);
drivers/media/platform/renesas/vsp1/vsp1_hgt.c
206
v4l2_ctrl_new_custom(&hgt->ctrls, &hgt_hue_areas, NULL);
drivers/media/platform/renesas/vsp1/vsp1_hgt.c
208
hgt->histo.entity.subdev.ctrl_handler = &hgt->ctrls;
drivers/media/platform/renesas/vsp1/vsp1_hgt.c
210
v4l2_ctrl_handler_setup(&hgt->ctrls);
drivers/media/platform/renesas/vsp1/vsp1_hgt.c
212
return hgt;
drivers/media/platform/renesas/vsp1/vsp1_hgt.c
26
static inline u32 vsp1_hgt_read(struct vsp1_hgt *hgt, u32 reg)
drivers/media/platform/renesas/vsp1/vsp1_hgt.c
28
return vsp1_read(hgt->histo.entity.vsp1, reg);
drivers/media/platform/renesas/vsp1/vsp1_hgt.c
31
static inline void vsp1_hgt_write(struct vsp1_hgt *hgt,
drivers/media/platform/renesas/vsp1/vsp1_hgt.c
43
struct vsp1_hgt *hgt = to_hgt(&entity->subdev);
drivers/media/platform/renesas/vsp1/vsp1_hgt.c
49
buf = vsp1_histogram_buffer_get(&hgt->histo);
drivers/media/platform/renesas/vsp1/vsp1_hgt.c
55
*data++ = vsp1_hgt_read(hgt, VI6_HGT_MAXMIN);
drivers/media/platform/renesas/vsp1/vsp1_hgt.c
56
*data++ = vsp1_hgt_read(hgt, VI6_HGT_SUM);
drivers/media/platform/renesas/vsp1/vsp1_hgt.c
60
*data++ = vsp1_hgt_read(hgt, VI6_HGT_HISTO(m, n));
drivers/media/platform/renesas/vsp1/vsp1_hgt.c
62
vsp1_histogram_buffer_complete(&hgt->histo, buf, HGT_DATA_SIZE);
drivers/media/platform/renesas/vsp1/vsp1_hgt.h
36
void vsp1_hgt_frame_end(struct vsp1_entity *hgt);
drivers/media/platform/renesas/vsp1/vsp1_pipe.c
433
pipe->hgt = NULL;
drivers/media/platform/renesas/vsp1/vsp1_pipe.c
541
if (pipe->hgt)
drivers/media/platform/renesas/vsp1/vsp1_pipe.c
579
if (pipe->hgt)
drivers/media/platform/renesas/vsp1/vsp1_pipe.c
580
vsp1_hgt_frame_end(pipe->hgt);
drivers/media/platform/renesas/vsp1/vsp1_pipe.h
121
struct vsp1_entity *hgt;
drivers/media/platform/renesas/vsp1/vsp1_video.c
507
pipe->hgt = e;
fs/gfs2/bmap.c
287
unsigned int hgt;
fs/gfs2/bmap.c
290
for (hgt = 0; hgt < mp->mp_aheight; hgt++)
fs/gfs2/bmap.c
291
get_bh(clone->mp_bh[hgt]);
fs/gfs2/bmap.c
396
int hgt;
fs/gfs2/bmap.c
398
for (hgt = mp->mp_fheight - 1; hgt >= 0; hgt--) {
fs/gfs2/bmap.c
399
if (hgt < mp->mp_aheight)
fs/gfs2/bmap.c
400
block += mp->mp_list[hgt] * factor;
fs/gfs2/bmap.c
483
for (hgt = mp->mp_fheight - 1; hgt >= mp->mp_aheight; hgt--) {
fs/gfs2/bmap.c
484
max_len += mp->mp_list[hgt] * factor;
fs/gfs2/bmap.c
485
mp->mp_list[hgt] = 0;
fs/gfs2/bmap.c
490
u16 start = mp->mp_list[hgt];
fs/gfs2/bmap.c
496
ptrs = (hgt >= 1 ? sdp->sd_inptrs : sdp->sd_diptrs) - start;
fs/gfs2/bmap.c
506
ptrs = mp->mp_list[hgt] - start;
fs/gfs2/bmap.c
520
brelse(mp->mp_bh[hgt]);
fs/gfs2/bmap.c
521
mp->mp_bh[hgt] = NULL;
fs/gfs2/bmap.c
522
mp->mp_list[hgt] = 0;
fs/gfs2/bmap.c
523
if (!hgt)
fs/gfs2/bmap.c
525
hgt--;
fs/gfs2/bmap.c
529
(mp->mp_list[hgt])++;
fs/gfs2/bmap.c
530
if (hgt) {
fs/gfs2/bmap.c
531
if (mp->mp_list[hgt] >= sdp->sd_inptrs)
fs/gfs2/bmap.c
534
if (mp->mp_list[hgt] >= sdp->sd_diptrs)
fs/gfs2/bmap.c
543
hgt += ret;
fs/gfs2/bmap.c
546
mp->mp_aheight = hgt + 1;
fs/gfs2/bmap.c
555
unsigned int hgt;
fs/gfs2/bmap.c
557
hgt = mp->mp_aheight - 1;
fs/gfs2/bmap.c
558
start = metapointer(hgt, mp);
fs/gfs2/bmap.c
563
mp->mp_list[hgt] += ptr - start;