Searched refs:rep (Results 1 - 11 of 11) sorted by relevance

/u-boot/drivers/xen/
H A Dxenbus.c45 static char *errmsg(struct xsd_sockmsg *rep);
267 struct xsd_sockmsg *rep; local
272 if (!xenbus_get_reply(&rep))
274 return rep;
277 static char *errmsg(struct xsd_sockmsg *rep) argument
281 if (!rep) {
287 if (rep->type != XS_ERROR)
289 res = malloc(rep->len + 1);
290 memcpy(res, rep + 1, rep
333 struct xsd_sockmsg *rep; local
357 struct xsd_sockmsg *rep; local
371 struct xsd_sockmsg *rep; local
385 struct xsd_sockmsg *rep; local
411 struct xsd_sockmsg *rep; local
430 struct xsd_sockmsg *rep; local
444 struct xsd_sockmsg *rep; local
[all...]
/u-boot/lib/zstd/decompress/
H A Dzstd_ddict.c76 dctx->entropy.rep[0] = ddict->entropy.rep[0];
77 dctx->entropy.rep[1] = ddict->entropy.rep[1];
78 dctx->entropy.rep[2] = ddict->entropy.rep[2];
H A Dzstd_decompress_internal.h84 U32 rep[ZSTD_REP_NUM]; member in struct:__anon168
H A Dzstd_decompress.c1346 U32 const rep = MEM_readLE32(dictPtr); dictPtr += 4; local
1347 RETURN_ERROR_IF(rep==0 || rep > dictContentSize,
1349 entropy->rep[i] = rep;
1391 ZSTD_STATIC_ASSERT(sizeof(dctx->entropy.rep) == sizeof(repStartValue));
1392 ZSTD_memcpy(dctx->entropy.rep, repStartValue, sizeof(repStartValue)); /* initial repcodes */
H A Dzstd_decompress_block.c1345 { U32 i; for (i=0; i<ZSTD_REP_NUM; i++) seqState.prevOffset[i] = dctx->entropy.rep[i]; }
1510 { U32 i; for (i=0; i<ZSTD_REP_NUM; i++) dctx->entropy.rep[i] = (U32)(seqState.prevOffset[i]); }
1562 { U32 i; for (i = 0; i < ZSTD_REP_NUM; i++) seqState.prevOffset[i] = dctx->entropy.rep[i]; }
1611 { U32 i; for (i=0; i<ZSTD_REP_NUM; i++) dctx->entropy.rep[i] = (U32)(seqState.prevOffset[i]); }
1698 { int i; for (i=0; i<ZSTD_REP_NUM; i++) seqState.prevOffset[i] = dctx->entropy.rep[i]; }
1807 { U32 i; for (i=0; i<ZSTD_REP_NUM; i++) dctx->entropy.rep[i] = (U32)(seqState.prevOffset[i]); }
/u-boot/drivers/video/
H A Dihs_video_out.c138 uint k, rep; local
142 for (rep = 0; rep < count; ++rep) {
143 offset = row * priv->base_width + col + rep * (buflen / 2);
/u-boot/drivers/ddr/marvell/a38x/
H A Dddr3_training_hw_algo.c162 u32 pup = 0, if_id = 0, num_pup = 0, rep = 0; local
225 for (rep = 1; rep < 4; rep++) {
248 [if_id] * (rep - 1) +
249 1000 * res[pup]) / rep;
H A Dddr3_debug.c1067 u32 adll = 0, rep = 0, pattern_idx = 0; local
1119 for (rep = 0; rep < repeat_num; rep++) {
1213 u32 adll = 0, rep = 0, pattern_idx = 0; local
1264 for (rep = 0; rep < repeat_num; rep++) {
/u-boot/lib/
H A Dbch.c749 const struct gf_poly *a, int *rep)
753 /* represent 0 values with -1; warning, rep[d] is not set to 1 */
755 rep[i] = a->c[i] ? mod_s(bch, a_log(bch, a->c[i])+l) : -1;
762 const struct gf_poly *b, int *rep)
772 if (!rep) {
773 rep = bch->cache;
774 gf_poly_logrep(bch, b, rep);
782 m = rep[i];
748 gf_poly_logrep(struct bch_control *bch, const struct gf_poly *a, int *rep) argument
761 gf_poly_mod(struct bch_control *bch, struct gf_poly *a, const struct gf_poly *b, int *rep) argument
/u-boot/arch/x86/cpu/intel_common/
H A Dcar.S119 rep stosl
/u-boot/include/linux/
H A Dzstd_lib.h1170 unsigned int rep; /* Represents which repeat offset is represented by the field 'offset'. member in struct:__anon115
1176 * If rep == 0, then 'offset' does not contain a repeat offset.
1177 * If rep > 0:
1179 * rep == 1 --> offset == repeat_offset_1
1180 * rep == 2 --> offset == repeat_offset_2
1181 * rep == 3 --> offset == repeat_offset_3
1183 * rep == 1 --> offset == repeat_offset_2
1184 * rep == 2 --> offset == repeat_offset_3
1185 * rep == 3 --> offset == repeat_offset_1 - 1
1188 * 'rep', bu
[all...]

Completed in 204 milliseconds