Searched refs:nref (Results 1 - 13 of 13) sorted by relevance

/macosx-10.9.5/emacs-92/emacs/src/
H A Dcomposite.h133 #define COMPOSITION_DECODE_RULE(rule_code, gref, nref) \
137 nref = (rule_code) % 12; \
143 #define COMPOSITION_ENCODE_RULE(gref, nref) \
144 ((unsigned) (gref) < 12 && (unsigned) (nref) < 12 \
145 ? (gref) * 12 + (nref) : -1)
H A Dcomposite.c343 int rule, gref, nref;
365 COMPOSITION_DECODE_RULE (rule, gref, nref);
368 - (nref % 3) * this_width / 2.0);
342 int rule, gref, nref; local
H A Dcoding.c786 gref = c / 9, nref = c % 9; \
787 c = COMPOSITION_ENCODE_RULE (gref, nref); \
825 int c, i, gref, nref;
862 ONE_MORE_BYTE (nref);
863 nref -= 32;
864 c = COMPOSITION_ENCODE_RULE (gref, nref);
1095 int gref, nref; \
1096 COMPOSITION_DECODE_RULE (data[i], gref, nref); \
1098 *p++ = 0x20 + nref; \
1809 int nref
823 int c, i, gref, nref; local
[all...]
H A Dxdisp.c20922 int gref, nref, grefx, grefy, nrefx, nrefy;
20924 COMPOSITION_DECODE_RULE (rule, gref, nref);
20925 grefx = gref % 3, nrefx = nref % 3;
20926 grefy = gref / 3, nrefy = nref / 3;
20882 int gref, nref, grefx, grefy, nrefx, nrefy; local
/macosx-10.9.5/emacs-92/emacs/lisp/
H A Dcomposite.el97 (nref (cdr rule)))
100 (or (integerp nref)
101 (setq nref (cdr (assq nref reference-point-alist))))
102 (or (and (>= gref 0) (< gref 12) (>= nref 0) (< nref 12))
104 (+ (* gref 12) nref))))
115 (nref (car (rassq (% rule-code 12) reference-point-alist))))
116 (or (and gref (symbolp gref) nref (symbolp nref))
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/struct/graph/
H A Dgraph.c249 int axc, nref;
310 if ((Tcl_GetIntFromObj (interp, axv[1], &nref) != TCL_OK) ||
311 (nref % 3) || (nref < 0) || (nref >= lc)) {
370 Tcl_GetIntFromObj (interp, axv[1], &nref);
371 ndst = gn_get_node (new, lv[nref], NULL, NULL);
248 int axc, nref; local
/macosx-10.9.5/zsh-60/zsh/Src/
H A Dparse.c401 ret->nref = -1; /* Eprog is on the heap */
2319 r->nref = heap ? -1 : 1;
2337 * then nref element.
2339 * If nref is negative, the Eprog is on the heap and is never freed.
2348 if (p && p != &dummy_eprog && p->nref >= 0)
2349 p->nref++;
2363 DPUTS(p->nref > 0 && (p->flags & EF_HEAP), "Heap EPROG has nref > 0");
2364 DPUTS(p->nref < 0 && !(p->flags & EF_HEAP), "Real EPROG has nref <
[all...]
H A Dzsh.h676 * When an Eprog is created, nref is set to -1 if the Eprog is on the
681 * Otherwise, nref is initialised to 1. Calling freeprog() decrements
682 * nref and frees the Eprog if the count is now zero. When the Eprog
694 int nref; /* number of references: delete when zero */ member in struct:eprog
H A Dexec.c4232 prog->nref = -1; /* on the heap */
4235 prog->nref = 1; /* allocated from permanent storage */
H A Dbuiltin.c2987 p->nref = 1; /* allocated from permanent storage */
/macosx-10.9.5/ksh-20/ksh/src/cmd/ksh93/sh/
H A Dnvtype.c99 unsigned short nref; member in struct:Namtype
108 unsigned short nref;
384 dp = (Namtype_t*)malloc(size+pp->nref*sizeof(struct Namref));
385 if(pp->nref)
388 memset((void*)nrp,0,pp->nref*sizeof(struct Namref));
850 int i,j,k,m,n,nd=0,nref=0,iref=0,inherit=0; local
905 iref = nref += dp->nref;
922 nref++;
1191 pp->nref
[all...]
H A Dxec.c79 Namval_t **nref; member in struct:funenv
3072 Namval_t node,*mp,*np, *nref[9], **nr=nref; local
3078 funenv.nref = nref;
3207 Namval_t *np, *nq, **nref; local
3208 if(nref=fp->nref)
3214 if(np && (nq=*nref++))
3307 fun.nref
[all...]
/macosx-10.9.5/pcre-7/pcre/
H A Dpcre_internal.h1428 "Cond ref", "Cond nref", "Cond rec", "Cond nrec", "Cond def", \

Completed in 506 milliseconds