Searched refs:op (Results 1 - 25 of 64) sorted by relevance

123

/xnu-2422.115.4/libkern/zlib/
H A Dinffast.c119 unsigned op; /* code bits, operation, extra bits, or */ local
157 op = (unsigned)(this.bits);
158 hold >>= op; local
159 bits -= op;
160 op = (unsigned)(this.op);
161 if (op == 0) { /* literal */
167 else if (op & 16) { /* length base */
169 op &= 15; /* number of extra bits */
170 if (op) {
176 hold >>= op; local
189 hold >>= op; local
211 hold >>= op; local
[all...]
H A Dinftrees.h41 table that indexes more bits of the code. op indicates whether
44 pointer, the low four bits of op is the number of index bits of
45 that table. For a length or distance, the low four bits of op
52 unsigned char op; /* operation, extra bits, table bits */ member in struct:__anon826
57 /* op values as set by inflate_table():
H A Dinftrees.c145 this.op = (unsigned char)64; /* invalid code marker */
247 this.op = (unsigned char)0;
251 this.op = (unsigned char)(extra[work[sym]]);
255 this.op = (unsigned char)(32 + 64); /* end of block */
312 (*table)[low].op = (unsigned char)curr;
325 this.op = (unsigned char)64; /* invalid code marker */
H A Dinfback.c510 if (this.op && (this.op & 0xf0) == 0) {
514 (BITS(last.bits + last.op) >> last.bits)];
524 if (this.op == 0) {
536 if (this.op & 32) {
543 if (this.op & 64) {
550 state->extra = (unsigned)(this.op) & 15;
564 if ((this.op & 0xf0) == 0) {
568 (BITS(last.bits + last.op) >> last.bits)];
575 if (this.op
[all...]
H A Dinflate.c58 * - Add comments on op field in inftrees.h
76 * - Make op and len in inflate_fast() unsigned for consistency
318 printf("{%u,%u,%d}", state.lencode[low].op, state.lencode[low].bits,
329 printf("{%u,%u,%d}", state.distcode[low].op, state.distcode[low].bits,
991 if (this.op && (this.op & 0xf0) == 0) {
995 (BITS(last.bits + last.op) >> last.bits)];
1003 if ((int)(this.op) == 0) {
1010 if (this.op & 32) {
1015 if (this.op
[all...]
/xnu-2422.115.4/tools/tests/unit_tests/
H A Dcodesigntests.c11 get_blob(pid_t pid, int op) argument
18 rcent = csops(pid, op, header, 1);
23 rcent = csops(pid, op, header, sizeof(header));
38 rcent = csops(pid, op, buffer, bufferlen - 1);
42 rcent = csops(pid, op, buffer, bufferlen);
49 if (op == CS_OPS_BLOB) {
59 rcent = csops(pid, op, buffer, bufferlen + 1);
/xnu-2422.115.4/SETUP/config/
H A Dmkmakefile.c212 struct opt *op; local
253 for (op = opt; op; op = op->op_next)
254 if (op->op_value)
255 fprintf(ofp, " -D%s=\"%s\"", op->op_name, op->op_value);
257 fprintf(ofp, " -D%s", op->op_name);
271 for (op
352 register struct opt *op; local
[all...]
H A Dparser.y444 struct opt *op = (struct opt *)malloc(sizeof (struct opt));
445 op->op_name = ns($1);
446 op->op_next = (struct opt *) 0;
447 op->op_value = 0;
449 opt = op;
451 opt_tail->op_next = op;
452 opt_tail = op;
457 struct opt *op = (struct opt *)malloc(sizeof (struct opt));
458 op->op_name = ns($1);
459 op
[all...]
/xnu-2422.115.4/iokit/Kernel/
H A DIODMACommand.cpp69 #define SHOULD_COPY_DIR(op, direction) \
71 || (kWalkSyncAlways & (op)) \
72 || (((kWalkSyncIn & (op)) ? kIODirectionIn : kIODirectionOut) \
324 IOOptionBits op = (uintptr_t) reference; local
349 if (state->fMisaligned && (kWalkPreflight & op))
372 if (kWalkPreflight & op)
380 if (kWalkPrepare & op)
390 if (!lastPage || SHOULD_COPY_DIR(op, target->fMDSummary.fDirection))
395 if (SHOULD_COPY_DIR(op, target->fMDSummary.fDirection))
417 (kWalkSyncIn & op)
443 walkAll(UInt8 op) argument
735 IOOptionBits op = kWalkPrepare | kWalkPreflight; local
798 IOOptionBits op = kWalkComplete; local
850 IOOptionBits op; local
888 UInt32 op; member in struct:IODMACommandTransferContext
985 genIOVMSegments(uint32_t op, InternalSegmentFunction outSegFunc, void *reference, UInt64 *offsetP, void *segmentsP, UInt32 *numSegmentsP) argument
[all...]
/xnu-2422.115.4/bsd/sys/
H A Ddtrace.h408 #define DIF_INSTR_FMT(op, r1, r2, d) \
409 (((op) << 24) | ((r1) << 16) | ((r2) << 8) | (d))
413 #define DIF_INSTR_CMP(op, r1, r2) (DIF_INSTR_FMT(op, r1, r2, 0))
415 #define DIF_INSTR_BRANCH(op, label) (((op) << 24) | (label))
416 #define DIF_INSTR_LOAD(op, r1, d) (DIF_INSTR_FMT(op, r1, 0, d))
417 #define DIF_INSTR_STORE(op, r1, d) (DIF_INSTR_FMT(op, r
[all...]
H A Dnamei.h128 #define NAMEI_UNFINISHED 0x008 /* We broke off a lookup to do a compound op */
196 #define NDINIT(ndp, op, pop, flags, segflg, namep, ctx) { \
197 (ndp)->ni_cnd.cn_nameiop = op; \
212 #define NDINIT(ndp, op, _unused_, flags, segflg, namep, ctx) { \
213 (ndp)->ni_cnd.cn_nameiop = op; \
H A Daio.h196 * synchronization request has been initiated or queued. op O_SYNC is the only
206 int aio_fsync( int op,
H A Dfsctl.h162 extern int resolve_nspace_item(struct vnode *vp, uint64_t op);
163 extern int resolve_nspace_item_ext(struct vnode *vp, uint64_t op, void *arg);
/xnu-2422.115.4/pexpert/i386/
H A Dpe_init.c60 int PE_initialize_console( PE_Video * info, int op )
70 switch ( op ) {
73 initialize_screen(info, op);
80 initialize_screen(info, op);
92 initialize_screen(info, op);
/xnu-2422.115.4/bsd/net/altq/
H A Daltq_fairq.c300 altq_fairq_dequeue(struct ifaltq *altq, enum altdq_op op) argument
302 return (fairq_dequeue(altq->altq_disc, (cqdq_op_t)op));
H A Daltq_priq.c262 altq_priq_dequeue(struct ifaltq *altq, enum altdq_op op) argument
264 return (priq_dequeue(altq->altq_disc, (cqdq_op_t)op));
H A Daltq_qfq.c236 altq_qfq_dequeue(struct ifaltq *altq, enum altdq_op op) argument
238 return (qfq_dequeue(altq->altq_disc, (cqdq_op_t)op));
H A Daltq_cbq.c268 altq_cbq_dequeue(struct ifaltq *altq, enum altdq_op op) argument
270 return (cbq_dequeue(altq->altq_disc, (cqdq_op_t)op));
H A Daltq_hfsc.c286 altq_hfsc_dequeue(struct ifaltq *altq, enum altdq_op op) argument
288 return (hfsc_dequeue(altq->altq_disc, (cqdq_op_t)op));
/xnu-2422.115.4/security/
H A Dmac_file.c187 mac_file_check_lock(struct ucred *cred, struct fileglob *fg, int op, argument
192 MAC_CHECK(file_check_lock, cred, fg, fg->fg_label, op, fl);
/xnu-2422.115.4/bsd/security/audit/
H A Daudit.h324 #define AUDIT_ARG(op, args...) do { \
328 audit_arg_ ## op (__ar, args); \
380 #define AUDIT_ARG(op, args...) do { \
395 #define AUDIT_SYSCLOSE(op, args...) do { \
/xnu-2422.115.4/bsd/miscfs/mockfs/
H A Dmockfs_vnops.c88 int op; local
101 op = cnp->cn_nameiop;
105 if ((op == LOOKUP) && (fsnode->type == MOCKFS_ROOT)) {
/xnu-2422.115.4/bsd/net/classq/
H A Dclassq_subr.c598 ifclassq_tbr_dequeue(struct ifclassq *ifq, int op) argument
600 return (ifclassq_tbr_dequeue_common(ifq, op, MBUF_SC_UNSPEC, FALSE));
604 ifclassq_tbr_dequeue_sc(struct ifclassq *ifq, int op, mbuf_svc_class_t sc) argument
606 return (ifclassq_tbr_dequeue_common(ifq, op, sc, TRUE));
610 ifclassq_tbr_dequeue_common(struct ifclassq *ifq, int op, argument
624 if (op == CLASSQDQ_REMOVE && tbr->tbr_lastop == CLASSQDQ_POLL) {
652 if (op == CLASSQDQ_POLL) {
668 m = (*altq->altq_dequeue_sc)(altq, sc, op);
670 m = (*altq->altq_dequeue)(altq, op);
677 if (m != NULL && op
[all...]
/xnu-2422.115.4/iokit/IOKit/
H A DIODMACommand.h381 IOReturn genIOVMSegments(uint32_t op,
398 IOReturn walkAll(UInt8 op);
/xnu-2422.115.4/pexpert/pexpert/
H A Dpexpert.h218 int op);

Completed in 193 milliseconds

123