HomeSort by relevance Sort by last modified time
    Searched refs:MAX_STRING_LEN (Results 1 - 13 of 13) sorted by null

  /bootable/recovery/edify/
lexer.l 28 // TODO: enforce MAX_STRING_LEN during lexing
29 char string_buffer[MAX_STRING_LEN];
expr.h 24 #define MAX_STRING_LEN 1024
  /external/srec/srec/Semproc/include/
SR_ExpressionParser.h 101 LCHAR lhs[MAX_STRING_LEN];
106 LCHAR op[MAX_STRING_LEN];
111 LCHAR identifiers[MAX_RHS_IDENTIFIERS][MAX_STRING_LEN];
158 LCHAR functionName[MAX_STRING_LEN];
SR_SemprocDefinitions.h 52 #define MAX_STRING_LEN 350
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
scanner.h 53 #define MAX_STRING_LEN 511
tokens.c 260 char string_val[MAX_STRING_LEN + 1];
291 if (len < MAX_STRING_LEN)
scanner.c 260 char string_val[MAX_STRING_LEN + 1];
596 APPEND_CHAR_S(ch, string_val, len, MAX_STRING_LEN);
599 assert(len <= MAX_STRING_LEN);
  /external/srec/srec/Nametag/src/
NametagImpl.c 29 #define MAX_STRING_LEN P_PATH_MAX
36 LCHAR transcription[MAX_STRING_LEN];
58 len = MAX_STRING_LEN;
75 LCHAR short_pron[MAX_STRING_LEN], *short_pron_ptr;
110 if((short_pron_ptr - short_pron + 3) >= MAX_STRING_LEN) {
  /external/dropbear/
options.h 325 #define MAX_STRING_LEN 1400 /* ~= MAX_PROPOSED_ALGO * MAX_NAME_LEN, also
buffer.c 211 if (len > MAX_STRING_LEN) {
  /external/srec/srec/Semproc/src/
ExpressionEvaluator.c 53 MEMCHK(rc, (*resultLen + opLen), MAX_STRING_LEN);
SemanticGraphImpl.c 271 LCHAR filename[MAX_STRING_LEN];
273 LCHAR iword[MAX_STRING_LEN];
397 for (num_arcs = 0; pfgets(line, MAX_STRING_LEN, p_text_file); ++num_arcs)
421 while (pfgets(line, MAX_STRING_LEN, p_text_file))
1028 LCHAR union_script[MAX_STRING_LEN]; /* sizeof used elsewhere */
    [all...]
  /external/srec/srec/Grammar/src/
SR_GrammarImpl.c 162 if ( strlen ( slot ) >= MAX_STRING_LEN )
164 PLogError ( "SR_Grammar_AddWordToSlot slot : %s too long : Max %d", slot, MAX_STRING_LEN - 1 );
170 if ( strlen ( word ) >= MAX_STRING_LEN )
172 PLogError ( "SR_Grammar_AddWordToSlot word : %s too long : Max %d", word, MAX_STRING_LEN - 1 );
178 if ( strlen ( pronunciation ) >= MAX_STRING_LEN )
180 PLogError ( "SR_Grammar_AddWordToSlot pronunciation : %s too long : Max %d", pronunciation, MAX_STRING_LEN - 1 );
186 if ( strlen ( tag ) >= MAX_STRING_LEN )
188 PLogError ( "SR_Grammar_AddWordToSlot tag : %s too long : Max %d", tag, MAX_STRING_LEN - 1 );

Completed in 277 milliseconds