/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 | 93 register pcre_uchar *cc = (pcre_uchar *)code + 1 + LINK_SIZE; 121 cc = cs + 1 + LINK_SIZE; 142 cc += 1 + LINK_SIZE; 166 cc += 1 + LINK_SIZE; 210 cc += 1 + LINK_SIZE; 526 cc += 1 + LINK_SIZE; 833 const pcre_uchar *tcode = code + 1 + LINK_SIZE; 978 tcode += 1 + LINK_SIZE; 1003 tcode += 2 + 2*LINK_SIZE; 1012 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 | 549 cc += 1 + LINK_SIZE; 803 common->optimized_cbracket[GET2(cc, 1 + LINK_SIZE)] = 0; 804 cc += 1 + LINK_SIZE + IMM2_SIZE; 811 if (cc[1 + LINK_SIZE] == OP_CALLOUT) 813 cc += 1 + LINK_SIZE; 841 cc += 1 + LINK_SIZE; 850 cc += 2 + 2 * LINK_SIZE; 934 if (end[-(1 + LINK_SIZE)] != OP_KET) 938 if (common->private_data_ptrs[end - common->start - LINK_SIZE] != 0) 964 if (next[0] != type || next[1] != OP_BRA || next[2 + LINK_SIZE] != *begin [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 | 72 final int LINK_SIZE = 6 * 4; // estimated size of a LinkedList's node 79 while (objSize >= LINK_SIZE) {
|
/external/pcre/ |
config.h | 157 /* The value of LINK_SIZE determines the number of bytes used to store links 162 #define LINK_SIZE 2
|
/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) {
|