Searched refs:au (Results 1 - 18 of 18) sorted by relevance

/linux-master/arch/microblaze/lib/
H A Dcmpdi2.c8 const DWunion au = { local
15 if (au.s.high < bu.s.high)
17 else if (au.s.high > bu.s.high)
20 if ((unsigned int) au.s.low < (unsigned int) bu.s.low)
22 else if ((unsigned int) au.s.low > (unsigned int) bu.s.low)
H A Ducmpdi2.c8 const DWunion au = {.ll = a}; local
11 if ((unsigned int) au.s.high < (unsigned int) bu.s.high)
13 else if ((unsigned int) au.s.high > (unsigned int) bu.s.high)
15 if ((unsigned int) au.s.low < (unsigned int) bu.s.low)
17 else if ((unsigned int) au.s.low > (unsigned int) bu.s.low)
/linux-master/lib/
H A Dcmpdi2.c11 const DWunion au = { local
18 if (au.s.high < bu.s.high)
20 else if (au.s.high > bu.s.high)
23 if ((unsigned int) au.s.low < (unsigned int) bu.s.low)
25 else if ((unsigned int) au.s.low > (unsigned int) bu.s.low)
H A Ducmpdi2.c10 const DWunion au = {.ll = a}; local
13 if ((unsigned int) au.s.high < (unsigned int) bu.s.high)
15 else if ((unsigned int) au.s.high > (unsigned int) bu.s.high)
17 if ((unsigned int) au.s.low < (unsigned int) bu.s.low)
19 else if ((unsigned int) au.s.low > (unsigned int) bu.s.low)
/linux-master/arch/parisc/lib/
H A Ducmpdi2.c15 union ull_union au = {.ull = a}; local
18 if (au.ui.high < bu.ui.high)
20 else if (au.ui.high > bu.ui.high)
22 if (au.ui.low < bu.ui.low)
24 else if (au.ui.low > bu.ui.low)
/linux-master/net/ceph/
H A Dauth_none.c43 struct ceph_none_authorizer *au)
45 void *p = au->buf;
46 void *const end = p + sizeof(au->buf);
55 au->buf_len = p - (void *)au->buf;
56 dout("%s built authorizer len %d\n", __func__, au->buf_len);
97 struct ceph_none_authorizer *au; local
100 au = kmalloc(sizeof(*au), GFP_NOFS);
101 if (!au)
42 ceph_auth_none_build_authorizer(struct ceph_auth_client *ac, struct ceph_none_authorizer *au) argument
[all...]
H A Dauth_x.c302 static int encrypt_authorizer(struct ceph_x_authorizer *au, argument
310 msg_a = au->buf->vec.iov_base;
311 WARN_ON(msg_a->ticket_blob.secret_id != cpu_to_le64(au->secret_id));
313 end = au->buf->vec.iov_base + au->buf->vec.iov_len;
317 msg_b->nonce = cpu_to_le64(au->nonce);
327 ret = ceph_x_encrypt(&au->session_key, p, end - p, sizeof(*msg_b));
336 au->buf->vec.iov_len = p - au->buf->vec.iov_base;
342 static void ceph_x_authorizer_cleanup(struct ceph_x_authorizer *au) argument
351 ceph_x_build_authorizer(struct ceph_auth_client *ac, struct ceph_x_ticket_handler *th, struct ceph_x_authorizer *au) argument
728 struct ceph_x_authorizer *au = (void *)a; local
738 struct ceph_x_authorizer *au; local
773 struct ceph_x_authorizer *au; local
821 struct ceph_x_authorizer *au = (void *)a; local
881 struct ceph_x_authorizer *au = (void *)a; local
962 calc_signature(struct ceph_x_authorizer *au, struct ceph_msg *msg, __le64 *psig) argument
[all...]
/linux-master/drivers/media/test-drivers/vidtv/
H A Dvidtv_s302m.c149 struct vidtv_access_unit *au; local
151 au = kzalloc(sizeof(*au), GFP_KERNEL);
152 if (!au)
159 head->next = au;
162 return au;
205 struct vidtv_access_unit *au = e->access_units; local
213 while (au && sync_au) {
215 au->num_samples = s;
216 au
223 struct vidtv_access_unit *au = e->access_units; local
348 struct vidtv_access_unit *au = e->access_units; local
426 struct vidtv_access_unit *au = e->access_units; local
[all...]
H A Dvidtv_mux.c284 struct vidtv_access_unit *au = e->access_units; local
299 while (au) {
300 buf = e->encoder_buf + au->offset;
302 args.access_unit_len = au->nbytes;
304 args.pts = au->pts;
309 au = au->next;
/linux-master/drivers/media/platform/st/sti/delta/
H A Ddelta-mjpeg-dec.c242 static int delta_mjpeg_ipc_decode(struct delta_ctx *pctx, struct delta_au *au) argument
259 params->picture_start_addr_p = (u32)(au->paddr);
260 params->picture_end_addr_p = (u32)(au->paddr + au->size - 1);
377 struct delta_au au = *pau; local
382 ret = delta_mjpeg_read_header(pctx, au.vaddr, au.size,
408 ret = delta_mjpeg_read_header(pctx, au.vaddr, au.size,
415 au
[all...]
H A Ddelta-v4l2.c61 static void dump_au(struct delta_ctx *ctx, struct delta_au *au) argument
65 u8 *data = (u8 *)(au->vaddr);
67 if (au->size <= (size * 2))
68 dev_dbg(delta->dev, "%s dump au[%d] dts=%lld size=%d data=%*ph\n",
69 ctx->name, au->vbuf.vb2_buf.index, au->dts, au->size,
70 au->size, data);
72 dev_dbg(delta->dev, "%s dump au[%d] dts=%lld size=%d data=%*ph..%*ph\n",
73 ctx->name, au
90 delta_au_done(struct delta_ctx *ctx, struct delta_au *au, int err) argument
927 struct delta_au *au; local
1120 struct delta_au *au = to_au(vbuf); local
1309 struct delta_au *au; local
[all...]
H A Ddelta.h320 * @au: (in/out) access unit
321 * @au.size (in) size of au to decode
322 * @au.vaddr (in) virtual address (kernel can read/write)
323 * @au.paddr (in) physical address (for hardware)
324 * @au.flags (out) au type (V4L2_BUF_FLAG_KEYFRAME/
333 int (*decode)(struct delta_ctx *ctx, struct delta_au *au);
/linux-master/drivers/gpu/drm/i915/display/
H A Dintel_tv.c69 u16 ru, gu, bu, au; member in struct:color_conversion
131 * 10 bit fields (ay, au)
197 .ru = 0x0733, .gu = 0x052d, .bu = 0x05c7, .au = 0x0200,
207 .ru = 0x076a, .gu = 0x0564, .bu = 0x030d, .au = 0x0200,
217 .ru = 0x074c, .gu = 0x0546, .bu = 0x05ec, .au = 0x0200,
227 .ru = 0x0788, .gu = 0x0581, .bu = 0x0322, .au = 0x0200,
237 .ru = 0x0745, .gu = 0x053f, .bu = 0x05e1, .au = 0x0200,
247 .ru = 0x0780, .gu = 0x0579, .bu = 0x031c, .au = 0x0200,
257 .ru = 0x0733, .gu = 0x052d, .bu = 0x05c7, .au = 0x0200,
267 .ru = 0x076a, .gu = 0x0564, .bu = 0x030d, .au
[all...]
/linux-master/drivers/mmc/core/
H A Dsd.c262 unsigned int au, es, et, eo; local
294 au = UNSTUFF_BITS(card->raw_ssr, 428 - 384, 4);
295 if (au) {
296 if (au <= 9 || card->scr.sda_spec3) {
297 card->ssr.au = sd_au_size[au];
H A Dcore.c1467 if (mmc_card_sd(card) && card->ssr.au) {
1468 card->pref_erase = card->ssr.au;
1469 card->erase_shift = ffs(card->ssr.au) - 1;
/linux-master/arch/sparc/math-emu/
H A Dmath_32.c282 #define TYPE(dummy, r, ru, b, bu, a, au) type = (au << 2) | (a << 0) | (bu << 5) | (b << 3) | (ru << 8) | (r << 6)
H A Dmath_64.c176 #define TYPE(ftt, r, ru, b, bu, a, au) type = (au << 2) | (a << 0) | (bu << 5) | (b << 3) | (ru << 8) | (r << 6) | (ftt << 9)
/linux-master/include/linux/mmc/
H A Dcard.h146 unsigned int au; /* In sectors */ member in struct:sd_ssr

Completed in 219 milliseconds