string 234 src/decNumber/decContext.c const char *string) { string 235 src/decNumber/decContext.c if (strcmp(string, DEC_Condition_CS)==0) string 237 src/decNumber/decContext.c if (strcmp(string, DEC_Condition_DZ)==0) string 239 src/decNumber/decContext.c if (strcmp(string, DEC_Condition_DI)==0) string 241 src/decNumber/decContext.c if (strcmp(string, DEC_Condition_DU)==0) string 243 src/decNumber/decContext.c if (strcmp(string, DEC_Condition_IE)==0) string 245 src/decNumber/decContext.c if (strcmp(string, DEC_Condition_IS)==0) string 247 src/decNumber/decContext.c if (strcmp(string, DEC_Condition_IC)==0) string 249 src/decNumber/decContext.c if (strcmp(string, DEC_Condition_IO)==0) string 252 src/decNumber/decContext.c if (strcmp(string, DEC_Condition_LD)==0) string 255 src/decNumber/decContext.c if (strcmp(string, DEC_Condition_OV)==0) string 257 src/decNumber/decContext.c if (strcmp(string, DEC_Condition_PA)==0) string 259 src/decNumber/decContext.c if (strcmp(string, DEC_Condition_RO)==0) string 261 src/decNumber/decContext.c if (strcmp(string, DEC_Condition_SU)==0) string 263 src/decNumber/decContext.c if (strcmp(string, DEC_Condition_UN)==0) string 265 src/decNumber/decContext.c if (strcmp(string, DEC_Condition_ZE)==0) string 285 src/decNumber/decContext.c const char *string) { string 286 src/decNumber/decContext.c if (strcmp(string, DEC_Condition_CS)==0) string 288 src/decNumber/decContext.c if (strcmp(string, DEC_Condition_DZ)==0) string 290 src/decNumber/decContext.c if (strcmp(string, DEC_Condition_DI)==0) string 292 src/decNumber/decContext.c if (strcmp(string, DEC_Condition_DU)==0) string 294 src/decNumber/decContext.c if (strcmp(string, DEC_Condition_IE)==0) string 296 src/decNumber/decContext.c if (strcmp(string, DEC_Condition_IS)==0) string 298 src/decNumber/decContext.c if (strcmp(string, DEC_Condition_IC)==0) string 300 src/decNumber/decContext.c if (strcmp(string, DEC_Condition_IO)==0) string 303 src/decNumber/decContext.c if (strcmp(string, DEC_Condition_LD)==0) string 306 src/decNumber/decContext.c if (strcmp(string, DEC_Condition_OV)==0) string 308 src/decNumber/decContext.c if (strcmp(string, DEC_Condition_PA)==0) string 310 src/decNumber/decContext.c if (strcmp(string, DEC_Condition_RO)==0) string 312 src/decNumber/decContext.c if (strcmp(string, DEC_Condition_SU)==0) string 314 src/decNumber/decContext.c if (strcmp(string, DEC_Condition_UN)==0) string 316 src/decNumber/decContext.c if (strcmp(string, DEC_Condition_ZE)==0) string 397 src/decNumber/decNumber.c char * decNumberToString(const decNumber *dn, char *string){ string 398 src/decNumber/decNumber.c decToString(dn, string, 0); string 399 src/decNumber/decNumber.c return string; string 402 src/decNumber/decNumber.c char * decNumberToEngString(const decNumber *dn, char *string){ string 403 src/decNumber/decNumber.c decToString(dn, string, 1); string 404 src/decNumber/decNumber.c return string; string 3415 src/decNumber/decNumber.c static void decToString(const decNumber *dn, char *string, Flag eng) { string 3420 src/decNumber/decNumber.c char *c=string; // work [output pointer] string 4512 src/dps8/dps8_cpu.c #define BURN(offset, length, string) memcpy ((char *) PROM + (offset), string, length) string 7206 src/simh/scp.c char *string; string 7208 src/simh/scp.c string = sim_encode_quoted_string (buf, size); string 7209 src/simh/scp.c fprintf (st, "%s", string); string 7210 src/simh/scp.c FREE (string); string 629 src/simh/sim_tmxr.c static char *growstring(char **string, size_t growth) string 631 src/simh/sim_tmxr.c if (!*string) string 643 src/simh/sim_tmxr.c *string = (char *)realloc (*string, 1 + (*string ? strlen (*string) : 0) + growth); string 644 src/simh/sim_tmxr.c if (!*string) string 656 src/simh/sim_tmxr.c return *string + strlen(*string);