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

123

/darwin-on-arm/xnu/libkern/zlib/
H A Dinffast.c127 unsigned op; /* code bits, operation, extra bits, or */ local
165 op = (unsigned)(this.bits);
166 hold >>= op; local
167 bits -= op;
168 op = (unsigned)(this.op);
169 if (op == 0) { /* literal */
175 else if (op & 16) { /* length base */
177 op &= 15; /* number of extra bits */
178 if (op) {
184 hold >>= op; local
197 hold >>= op; local
219 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...]
/darwin-on-arm/xnu/SETUP/config/
H A Dmkmakefile.c218 struct opt *op; local
258 for (op = opt; op; op = op->op_next)
259 if (op->op_value)
260 fprintf(ofp, " -D%s=\"%s\"", op->op_name, op->op_value);
262 fprintf(ofp, " -D%s", op->op_name);
276 for (op
364 register struct opt *op; local
[all...]
H A Dparser.y446 struct opt *op = (struct opt *)malloc(sizeof (struct opt));
447 op->op_name = ns($1);
448 op->op_next = (struct opt *) 0;
449 op->op_value = 0;
451 opt = op;
453 opt_tail->op_next = op;
454 opt_tail = op;
459 struct opt *op = (struct opt *)malloc(sizeof (struct opt));
460 op->op_name = ns($1);
461 op
[all...]
/darwin-on-arm/xnu/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...]
/darwin-on-arm/xnu/pexpert/arm/common/
H A Dpe_init.c56 int PE_initialize_console( PE_Video * info, int op )
66 switch ( op ) {
69 initialize_screen(info, op);
76 initialize_screen(info, op);
88 initialize_screen(info, op);
/darwin-on-arm/xnu/bsd/sys/
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 Ddtrace.h404 #define DIF_INSTR_FMT(op, r1, r2, d) \
405 (((op) << 24) | ((r1) << 16) | ((r2) << 8) | (d))
409 #define DIF_INSTR_CMP(op, r1, r2) (DIF_INSTR_FMT(op, r1, r2, 0))
411 #define DIF_INSTR_BRANCH(op, label) (((op) << 24) | (label))
412 #define DIF_INSTR_LOAD(op, r1, d) (DIF_INSTR_FMT(op, r1, 0, d))
413 #define DIF_INSTR_STORE(op, r1, d) (DIF_INSTR_FMT(op, r
[all...]
H A Dfsctl.h116 extern int resolve_nspace_item(struct vnode *vp, uint64_t op);
117 extern int resolve_nspace_item_ext(struct vnode *vp, uint64_t op, void *arg);
H A Daio.h210 * synchronization request has been initiated or queued. op O_SYNC is the only
220 int aio_fsync( int op,
/darwin-on-arm/xnu/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);
/darwin-on-arm/xnu/bsd/net/altq/
H A Daltq_fairq.c296 altq_fairq_dequeue(struct ifaltq *altq, enum altdq_op op) argument
298 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.c232 altq_qfq_dequeue(struct ifaltq *altq, enum altdq_op op) argument
234 return (qfq_dequeue(altq->altq_disc, (cqdq_op_t)op));
H A Daltq_cbq.c264 altq_cbq_dequeue(struct ifaltq *altq, enum altdq_op op) argument
266 return (cbq_dequeue(altq->altq_disc, (cqdq_op_t)op));
H A Daltq_hfsc.c282 altq_hfsc_dequeue(struct ifaltq *altq, enum altdq_op op) argument
284 return (hfsc_dequeue(altq->altq_disc, (cqdq_op_t)op));
/darwin-on-arm/xnu/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);
/darwin-on-arm/xnu/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 { \
/darwin-on-arm/xnu/bsd/net/classq/
H A Dclassq_subr.c578 ifclassq_tbr_dequeue(struct ifclassq *ifq, int op) argument
580 return (ifclassq_tbr_dequeue_common(ifq, op, MBUF_SC_UNSPEC, FALSE));
584 ifclassq_tbr_dequeue_sc(struct ifclassq *ifq, int op, mbuf_svc_class_t sc) argument
586 return (ifclassq_tbr_dequeue_common(ifq, op, sc, TRUE));
590 ifclassq_tbr_dequeue_common(struct ifclassq *ifq, int op, argument
604 if (op == CLASSQDQ_REMOVE && tbr->tbr_lastop == CLASSQDQ_POLL) {
632 if (op == CLASSQDQ_POLL) {
648 m = (*altq->altq_dequeue_sc)(altq, sc, op);
650 m = (*altq->altq_dequeue)(altq, op);
657 if (m != NULL && op
[all...]
/darwin-on-arm/xnu/bsd/netat/
H A Dadsp_Packet.c548 ADSP_OPEN_DATAPtr op; local
555 op = (ADSP_OPEN_DATAPtr)&f->data[0]; /* Point to Open-Connection parms */
562 if (UAS_VALUE(op->version) != netw(0x0100)) { /* Check version num (on even-byte) */
589 m.dstCID = UAS_VALUE_NTOH(op->dstCID); /* On even-byte boundry */
628 n->u.openParams.attnSendSeq = UAL_VALUE_NTOH(op->pktAttnRecvSeq);
650 sp->attnSendSeq = UAL_VALUE_NTOH(op->pktAttnRecvSeq); /* on even boundry */
/darwin-on-arm/xnu/iokit/IOKit/
H A DIODMACommand.h381 IOReturn genIOVMSegments(uint32_t op,
398 IOReturn walkAll(UInt8 op);
/darwin-on-arm/xnu/pexpert/pexpert/
H A Dpexpert.h214 int op);

Completed in 194 milliseconds

123