Searched defs:word (Results 1 - 8 of 8) sorted by relevance

/ast/src/cmd/re/
H A Dsed.h28 typedef ptrdiff_t word; typedef
38 extern word recomp(Text*, Text*, int);
42 extern regex_t* readdr(word);
58 extern void grow(Text*, word);
60 /* round character pointer up to word pointer.
63 #define wordp(p) (word*)((p) + sizeof(word) - 1 \
64 - ((p) + sizeof(word) - 1 - (unsigned char*)0)%sizeof(word))
82 if 2 addresses, then another word indicate
[all...]
/ast/src/cmd/ksh93/sh/
H A Ddeparse.c365 static void p_keyword(const char *word,int flag) argument
370 else if(*word=='[' || *word=='(')
378 sfputr(outfile,word,sep);
H A Dlex.c79 char reservok; /* >0 for reserved word legal */
80 char skipword; /* next word can't be reserved */
317 * Get the next word and put it on the top of the stak
318 * A pointer to the current word is stored in lp->arg
1263 /* check for reserved word { or } */
1560 char *first,*cp=fcseek(0),word[5]; local
1607 word[n++] = c;
1611 if(memcmp(word,"case",4)==0)
1613 else if(memcmp(word,"esac",4)==0)
2164 * Assumes that current word i
[all...]
/ast/src/lib/libtk/generic/
H A DtkImgBmap.c139 char word[MAX_WORD_LENGTH+1]; member in struct:ParseInfo
140 /* Current word of bitmap data, NULL
142 int wordLength; /* Number of non-NULL bytes in word. */
526 if ((pi.wordLength >= 6) && (pi.word[pi.wordLength-6] == '_')
527 && (strcmp(pi.word+pi.wordLength-6, "_width") == 0)) {
531 width = strtol(pi.word, &end, 0);
532 if ((end == pi.word) || (*end != 0)) {
535 } else if ((pi.wordLength >= 7) && (pi.word[pi.wordLength-7] == '_')
536 && (strcmp(pi.word+pi.wordLength-7, "_height") == 0)) {
540 height = strtol(pi.word,
[all...]
H A DtkImgPhoto.c3651 pixel firstBit, word, mask;
3867 word = 0;
3871 * If we have accumulated a whole word, store it
3872 * in the image and start a new word.
3876 *destLongPtr++ = word;
3878 word = 0;
3907 word |= mask;
3914 *destLongPtr = word;
3623 pixel firstBit, word, mask; local
/ast/src/cmd/mailx/port/
H A Dmime.c578 char word[64]; local
580 if (!(ent = (Ent_t*)dtmatch(mp->cap, type)) && (s = strchr(type, '/')) && (c = s - (char*)type) < sizeof(word))
582 memcpy(word, type, c);
583 word[c] = 0;
584 ent = (Ent_t*)dtmatch(mp->cap, word);
/ast/src/cmd/ksh93/edit/
H A Dhistory.c1096 * return word number <word> from command number <command>
1099 char *hist_word(char *string,int size,int word) argument
1115 if(--word==0)
/ast/src/cmd/tw/
H A Dfind.c510 lookup(register char* word) argument
515 while (*word == '-')
516 word++;
517 if (*word)
519 second = word[1];
521 if (second == argp->name[1] && streq(word, argp->name))

Completed in 57 milliseconds