Lines Matching defs:directives
99 char directives[128] = {0};
101 /* extract the optional directives */
103 char *p = directives;
104 char *pend = directives + sizeof(directives) - 1;
112 /* handle directives (TODO: handle more of them, and more reliably) */
113 if (strstr(directives, "VB")) valign = ALIGN_VB;
114 else if (strstr(directives, "VM")) valign = ALIGN_VM;
115 else if (strstr(directives, "VT")) valign = ALIGN_VT;
116 if (strstr(directives, "JC")) halign = ALIGN_JC;
117 else if (strstr(directives, "JL")) halign = ALIGN_JL;
118 else if (strstr(directives, "JR")) halign = ALIGN_JR;