Searched defs:op (Results 1 - 10 of 10) sorted by relevance

/lib/
H A Dsmp_processor_id.c60 notrace void __this_cpu_preempt_check(const char *op) argument
62 check_preemption_disabled("__this_cpu_", op);
H A Dasn1_decoder.c171 enum asn1_opcode op; local
200 op = machine[pc];
201 if (unlikely(pc + asn1_op_lengths[op] > machlen))
207 if (op <= ASN1_OP__MATCHES_TAG) {
211 if ((op & ASN1_OP_MATCH__COND &&
214 pc += asn1_op_lengths[op];
228 if (op & ASN1_OP_MATCH__ANY) {
233 * CONS is not set in the op stream, otherwise CONS
245 if (op & ASN1_OP_MATCH__SKIP) {
246 pc += asn1_op_lengths[op];
[all...]
H A Ddynamic_debug.c386 int op = '=', i; local
392 op = *str++;
395 pr_err("bad flag-op %c, at start of %s\n", *str, str);
398 vpr_info("op='%c'\n", op);
414 /* calculate final *flagsp, *maskp according to mask and op */
415 switch (op) {
/lib/zlib_inflate/
H A Dinftrees.h17 table that indexes more bits of the code. op indicates whether
20 pointer, the low four bits of op is the number of index bits of
21 that table. For a length or distance, the low four bits of op
28 unsigned char op; /* operation, extra bits, table bits */ member in struct:__anon31
33 /* op values as set by inflate_table():
H A Dinffast.c110 unsigned op; /* code bits, operation, extra bits, or */ local
148 op = (unsigned)(this.bits);
149 hold >>= op; local
150 bits -= op;
151 op = (unsigned)(this.op);
152 if (op == 0) { /* literal */
155 else if (op & 16) { /* length base */
157 op &= 15; /* number of extra bits */
158 if (op) {
164 hold >>= op; local
176 hold >>= op; local
198 hold >>= op; local
[all...]
/lib/lzo/
H A Dlzo1x_compress.c26 unsigned char *op; local
32 op = out;
58 op[-2] |= t;
59 COPY4(op, ii);
60 op += t;
62 *op++ = (t - 3);
63 COPY8(op, ii);
64 COPY8(op + 8, ii + 8);
65 op += t;
68 *op
221 unsigned char *op = out; local
[all...]
H A Dlzo1x_decompress_safe.c23 #define HAVE_OP(x) ((size_t)(op_end - op) >= (size_t)(x))
41 unsigned char *op; local
49 op = out;
87 unsigned char *oe = op + t;
89 COPY8(op, ip);
90 op += 8;
92 COPY8(op, ip);
93 op += 8;
97 op = oe;
104 *op
[all...]
/lib/lz4/
H A Dlz4_compress.c70 u8 *op = (u8 *) dest; local
71 u8 *const oend = op + maxoutputsize;
119 token = op++;
121 if (unlikely(op + length + (2 + 1 + LASTLITERALS) +
130 *op++ = 255;
131 *op++ = (u8)len;
136 LZ4_BLINDCOPY(anchor, op, length);
139 LZ4_WRITE_LITTLEENDIAN_16(op, (u16)(ip - ref));
176 if (unlikely(op + (1 + LASTLITERALS) + (length >> 8) > oend))
182 *op
252 u8 *op = (u8 *) dest; local
[all...]
H A Dlz4_decompress.c59 BYTE *op = (BYTE *) dest; local
60 BYTE * const oend = op + osize;
82 cpy = op + length;
91 memcpy(op, ip, length);
95 LZ4_WILDCOPY(ip, op, cpy);
96 ip -= (op - cpy);
97 op = cpy;
118 if (unlikely((op - ref) < STEPSIZE)) {
120 int dec64 = dec64table[op - ref];
124 op[
181 BYTE *op = (BYTE *) dest; local
[all...]
H A Dlz4hc_compress.c269 static inline int lz4_encodesequence(const u8 **ip, u8 **op, const u8 **anchor, argument
277 token = (*op)++;
282 *(*op)++ = 255;
283 *(*op)++ = (u8)len;
288 LZ4_BLINDCOPY(*anchor, *op, length);
291 LZ4_WRITE_LITTLEENDIAN_16(*op, (u16)(*ip - ref));
299 *(*op)++ = 255;
300 *(*op)++ = 255;
304 *(*op)++ = 255;
306 *(*op)
328 u8 *op = (u8 *)dest; local
[all...]

Completed in 172 milliseconds