HomeSort by relevance Sort by last modified time
    Searched full:context_len (Results 1 - 4 of 4) sorted by null

  /external/icu4c/tools/toolutil/
ucbuf.c 37 #define CONTEXT_LEN 20
225 char context[CONTEXT_LEN+1];
226 char preContext[CONTEXT_LEN+1];
227 char postContext[CONTEXT_LEN+1];
228 int8_t len = CONTEXT_LEN;
249 start = (pos <=CONTEXT_LEN)? 0 : (pos - (CONTEXT_LEN-1));
258 stop = (int32_t)(((pos+CONTEXT_LEN)<= (sourceLimit-cbuf) )? (pos+(CONTEXT_LEN-1)) : (sourceLimit-cbuf));
421 char context[CONTEXT_LEN+1]
    [all...]
  /external/harfbuzz_ng/src/
hb-buffer-private.hh 94 unsigned int context_len[2]; member in struct:hb_buffer_t
185 inline void clear_context (unsigned int side) { context_len[side] = 0; }
hb-buffer.cc 196 memset (context_len, 0, sizeof context_len);
940 while (start < prev && buffer->context_len[0] < buffer->CONTEXT_LENGTH)
944 buffer->context[0][buffer->context_len[0]++] = u;
961 while (next < end && buffer->context_len[1] < buffer->CONTEXT_LENGTH)
965 buffer->context[1][buffer->context_len[1]++] = u;
hb-ot-shape-complex-arabic.cc 253 for (unsigned int i = 0; i < buffer->context_len[0]; i++)
286 for (unsigned int i = 0; i < buffer->context_len[1]; i++)

Completed in 55 milliseconds