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

  /external/pcre/dist/
config.h.generic 156 /* The value of LINK_SIZE determines the number of bytes used to store links
161 #ifndef LINK_SIZE
162 #define LINK_SIZE 2
pcre_compile.c 106 end. Each entry in this list occupies LINK_SIZE bytes, so even when LINK_SIZE
112 minimum is now also defined in terms of LINK_SIZE so that the use of malloc()
115 #define COMPILE_WORK_SIZE (2048*LINK_SIZE)
    [all...]
config-cmake.h.in 48 #define LINK_SIZE @PCRE_LINK_SIZE@
pcre_study.c 90 register pcre_uchar *cc = (pcre_uchar *)code + 1 + LINK_SIZE;
116 cc = cs + 1 + LINK_SIZE;
137 cc += 1 + LINK_SIZE;
161 cc += 1 + LINK_SIZE;
205 cc += 1 + LINK_SIZE;
484 cc += 1 + LINK_SIZE;
791 const pcre_uchar *tcode = code + 1 + LINK_SIZE;
936 tcode += 1 + LINK_SIZE;
961 tcode += 2 + 2*LINK_SIZE;
970 tcode += 1 + LINK_SIZE;
    [all...]
pcre_config.c 49 static int real_link_size = LINK_SIZE;
pcre_internal.h 421 The macros are controlled by the value of LINK_SIZE. This defaults to 2 in
427 #if LINK_SIZE == 2
439 #elif LINK_SIZE == 3
452 #elif LINK_SIZE == 4
467 #error LINK_SIZE must be either 2, 3, or 4
472 #if LINK_SIZE == 2
474 /* Redefine LINK_SIZE as a multiple of sizeof(pcre_uchar) */
475 #undef LINK_SIZE
476 #define LINK_SIZE 1
486 #elif LINK_SIZE == 3 || LINK_SIZE ==
    [all...]
config.h.in 156 /* The value of LINK_SIZE determines the number of bytes used to store links
161 #undef LINK_SIZE
pcre_dfa_exec.c 456 first_op = this_start_code + 1 + LINK_SIZE +
478 int back = GET(end_code, 2+LINK_SIZE);
520 int back = GET(end_code, 2+LINK_SIZE);
523 int bstate = (int)(end_code - start_code + 2 + 2*LINK_SIZE);
555 int length = 1 + LINK_SIZE +
563 length = 1 + LINK_SIZE;
777 ADD_ACTIVE(state_offset + 1 + LINK_SIZE, 0);
    [all...]
pcre_byte_order.c 289 if (LINK_SIZE > 1)
291 /* LINK_SIZE can be 1 or 2 in 16 bit mode. */
297 length = (GET(ptr, -LINK_SIZE)) - (1 + LINK_SIZE + 1);
pcre_jit_compile.c 553 cc += 1 + LINK_SIZE;
812 cc += 1 + LINK_SIZE + (*cc == OP_CBRA || *cc == OP_SCBRA ? IMM2_SIZE : 0);
817 common->optimized_cbracket[GET2(cc, 1 + LINK_SIZE)] = 0;
818 cc += 1 + LINK_SIZE + IMM2_SIZE;
825 if (cc[1 + LINK_SIZE] == OP_CALLOUT)
827 cc += 1 + LINK_SIZE;
855 cc += 1 + LINK_SIZE;
864 cc += 2 + 2 * LINK_SIZE;
948 if (end[-(1 + LINK_SIZE)] != OP_KET)
952 if (common->private_data_ptrs[end - common->start - LINK_SIZE] != 0
    [all...]
pcre_exec.c 879 RMATCH(eptr, ecode + 1 + LINK_SIZE, offset_top, md, eptrb, RM64);
918 ecode += 1+LINK_SIZE;
928 RMATCH(eptr, ecode + 1 + LINK_SIZE, offset_top, md, eptrb, RM65);
937 ecode += 1 + LINK_SIZE;
    [all...]
pcre_printint.c 296 written that do not depend on the value of LINK_SIZE. */
397 fprintf(f, "%s %d", priv_OP_names[*code], GET2(code, 1+LINK_SIZE));
628 GET(code, 2 + LINK_SIZE));
656 ccode = code + LINK_SIZE + 1;
pcretest.c     [all...]
  /art/test/061-out-of-memory/src/
Main.java 71 final int LINK_SIZE = 6 * 4; // estimated size of a LinkedList's node
78 while (objSize >= LINK_SIZE) {
  /frameworks/base/tests/CoreTests/android/core/
HeapTest.java 449 final int LINK_SIZE = 6 * 4; // estimated size of a LinkedList's node
458 while (objSize >= LINK_SIZE) {

Completed in 1338 milliseconds