OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CPOOL_SIZE
(Results
1 - 2
of
2
) sorted by null
/external/pcre/dist/sljit/
sljitLir.c
128
# define
CPOOL_SIZE
512
381
compiler->cpool = (sljit_uw*)SLJIT_MALLOC(
CPOOL_SIZE
* sizeof(sljit_uw)
382
+
CPOOL_SIZE
* sizeof(sljit_ub), allocator_data);
389
compiler->cpool_unique = (sljit_ub*)(compiler->cpool +
CPOOL_SIZE
);
[
all
...]
sljitNativeARM_32.c
141
SLJIT_ASSERT(compiler->cpool_fill > 0 && compiler->cpool_fill <=
CPOOL_SIZE
);
184
sljit_uw cpool_index =
CPOOL_SIZE
;
205
if (cpool_index ==
CPOOL_SIZE
) {
207
if (compiler->cpool_fill <
CPOOL_SIZE
) {
234
if (SLJIT_UNLIKELY((compiler->cpool_diff != CONST_POOL_EMPTY && compiler->size - compiler->cpool_diff >= MAX_DIFFERENCE(4092)) || compiler->cpool_fill >=
CPOOL_SIZE
))
237
SLJIT_ASSERT(compiler->cpool_fill <
CPOOL_SIZE
&& (inst & 0xfff) == 0);
266
static sljit_uw patch_pc_relative_loads(sljit_uw *last_pc_patch, sljit_uw *code_ptr, sljit_uw* const_pool, sljit_uw
cpool_size
)
272
sljit_uw* clear_const_pool_end = const_pool +
cpool_size
;
288
SLJIT_ASSERT(ind <
cpool_size
&& !(*last_pc_patch & (1 << 25)) && (*last_pc_patch & (1 << 20)));
566
sljit_uw
cpool_size
;
local
[
all
...]
Completed in 291 milliseconds