Home
last modified time | relevance | path

Searched refs:byte_code (Results 1 – 25 of 326) sorted by relevance

12345678910>>...14

/dports/lang/quickjs/quickjs-2021-03-27/
H A Dlibregexp.c67 DynBuf byte_code; member
404 pos = s->byte_code.size; in re_emit_op_u32()
413 pos = s->byte_code.size; in re_emit_goto()
1313 put_u32(s->byte_code.buf + pos, s->byte_code.size - (pos + 4)); in re_parse_term()
1710 start = s->byte_code.size; in re_parse_alternative()
1731 memcpy(s->byte_code.buf + start, s->byte_code.buf + end, in re_parse_alternative()
1745 start = s->byte_code.size; in re_parse_disjunction()
1885 stack_size = compute_stack_size(s->byte_code.buf, s->byte_code.size); in lre_compile()
1893 put_u32(s->byte_code.buf + 3, s->byte_code.size - RE_HEADER_LEN); in lre_compile()
1903 lre_dump_bytecode(s->byte_code.buf, s->byte_code.size); in lre_compile()
[all …]
/dports/games/warzone2100/warzone2100/3rdparty/quickjs/
H A Dlibregexp.c71 DynBuf byte_code; member
408 pos = s->byte_code.size; in re_emit_op_u32()
417 pos = s->byte_code.size; in re_emit_goto()
1317 put_u32(s->byte_code.buf + pos, s->byte_code.size - (pos + 4)); in re_parse_term()
1714 start = s->byte_code.size; in re_parse_alternative()
1735 memcpy(s->byte_code.buf + start, s->byte_code.buf + end, in re_parse_alternative()
1749 start = s->byte_code.size; in re_parse_disjunction()
1889 stack_size = compute_stack_size(s->byte_code.buf, s->byte_code.size); in lre_compile()
1897 put_u32(s->byte_code.buf + 3, s->byte_code.size - RE_HEADER_LEN); in lre_compile()
1907 lre_dump_bytecode(s->byte_code.buf, s->byte_code.size); in lre_compile()
[all …]
/dports/multimedia/gpac-mp4box/gpac-1.0.0/src/quickjs/
H A Dlibregexp.c67 DynBuf byte_code; member
402 pos = s->byte_code.size; in re_emit_op_u32()
411 pos = s->byte_code.size; in re_emit_goto()
1288 put_u32(s->byte_code.buf + pos, s->byte_code.size - (pos + 4)); in re_parse_term()
1669 start = s->byte_code.size; in re_parse_alternative()
1690 memcpy(s->byte_code.buf + start, s->byte_code.buf + end, in re_parse_alternative()
1701 start = s->byte_code.size; in re_parse_disjunction()
1839 stack_size = compute_stack_size(s->byte_code.buf, s->byte_code.size); in lre_compile()
1847 put_u32(s->byte_code.buf + 3, s->byte_code.size - RE_HEADER_LEN); in lre_compile()
1857 lre_dump_bytecode(s->byte_code.buf, s->byte_code.size); in lre_compile()
[all …]
/dports/multimedia/gpac-libgpac/gpac-1.0.0/src/quickjs/
H A Dlibregexp.c67 DynBuf byte_code; member
402 pos = s->byte_code.size; in re_emit_op_u32()
411 pos = s->byte_code.size; in re_emit_goto()
1288 put_u32(s->byte_code.buf + pos, s->byte_code.size - (pos + 4)); in re_parse_term()
1669 start = s->byte_code.size; in re_parse_alternative()
1690 memcpy(s->byte_code.buf + start, s->byte_code.buf + end, in re_parse_alternative()
1701 start = s->byte_code.size; in re_parse_disjunction()
1839 stack_size = compute_stack_size(s->byte_code.buf, s->byte_code.size); in lre_compile()
1847 put_u32(s->byte_code.buf + 3, s->byte_code.size - RE_HEADER_LEN); in lre_compile()
1857 lre_dump_bytecode(s->byte_code.buf, s->byte_code.size); in lre_compile()
[all …]
/dports/lang/clover/mesa-21.3.6/src/gallium/frontends/nine/
H A Dpixelshader9.c56 info.byte_code = pFunction; in NinePixelShader9_ctor()
75 This->byte_code.version = info.version; in NinePixelShader9_ctor()
77 This->byte_code.tokens = mem_dup(pFunction, info.byte_size); in NinePixelShader9_ctor()
78 if (!This->byte_code.tokens) in NinePixelShader9_ctor()
80 This->byte_code.size = info.byte_size; in NinePixelShader9_ctor()
138 FREE((void *)This->byte_code.tokens); /* const_cast */ in NinePixelShader9_dtor()
153 *pSizeOfData = This->byte_code.size; in NinePixelShader9_GetFunction()
158 memcpy(pData, This->byte_code.tokens, This->byte_code.size); in NinePixelShader9_GetFunction()
190 info.byte_code = This->byte_code.tokens; in NinePixelShader9_GetVariant()
193 if (unlikely(This->byte_code.version < 0x20)) { in NinePixelShader9_GetVariant()
[all …]
H A Dvertexshader9.c61 info.byte_code = pFunction; in NineVertexShader9_ctor()
89 This->byte_code.version = info.version; in NineVertexShader9_ctor()
92 This->byte_code.tokens = mem_dup(pFunction, info.byte_size); in NineVertexShader9_ctor()
93 if (!This->byte_code.tokens) in NineVertexShader9_ctor()
95 This->byte_code.size = info.byte_size; in NineVertexShader9_ctor()
163 FREE((void *)This->byte_code.tokens); /* const_cast */ in NineVertexShader9_dtor()
179 *pSizeOfData = This->byte_code.size; in NineVertexShader9_GetFunction()
182 user_assert(*pSizeOfData >= This->byte_code.size, D3DERR_INVALIDCALL); in NineVertexShader9_GetFunction()
184 memcpy(pData, This->byte_code.tokens, This->byte_code.size); in NineVertexShader9_GetFunction()
216 info.byte_code = This->byte_code.tokens; in NineVertexShader9_GetVariant()
[all …]
/dports/graphics/libosmesa/mesa-21.3.6/src/gallium/frontends/nine/
H A Dpixelshader9.c56 info.byte_code = pFunction; in NinePixelShader9_ctor()
75 This->byte_code.version = info.version; in NinePixelShader9_ctor()
77 This->byte_code.tokens = mem_dup(pFunction, info.byte_size); in NinePixelShader9_ctor()
78 if (!This->byte_code.tokens) in NinePixelShader9_ctor()
80 This->byte_code.size = info.byte_size; in NinePixelShader9_ctor()
138 FREE((void *)This->byte_code.tokens); /* const_cast */ in NinePixelShader9_dtor()
153 *pSizeOfData = This->byte_code.size; in NinePixelShader9_GetFunction()
158 memcpy(pData, This->byte_code.tokens, This->byte_code.size); in NinePixelShader9_GetFunction()
190 info.byte_code = This->byte_code.tokens; in NinePixelShader9_GetVariant()
193 if (unlikely(This->byte_code.version < 0x20)) { in NinePixelShader9_GetVariant()
[all …]
H A Dvertexshader9.c61 info.byte_code = pFunction; in NineVertexShader9_ctor()
89 This->byte_code.version = info.version; in NineVertexShader9_ctor()
92 This->byte_code.tokens = mem_dup(pFunction, info.byte_size); in NineVertexShader9_ctor()
93 if (!This->byte_code.tokens) in NineVertexShader9_ctor()
95 This->byte_code.size = info.byte_size; in NineVertexShader9_ctor()
163 FREE((void *)This->byte_code.tokens); /* const_cast */ in NineVertexShader9_dtor()
179 *pSizeOfData = This->byte_code.size; in NineVertexShader9_GetFunction()
182 user_assert(*pSizeOfData >= This->byte_code.size, D3DERR_INVALIDCALL); in NineVertexShader9_GetFunction()
184 memcpy(pData, This->byte_code.tokens, This->byte_code.size); in NineVertexShader9_GetFunction()
216 info.byte_code = This->byte_code.tokens; in NineVertexShader9_GetVariant()
[all …]
/dports/graphics/libosmesa-gallium/mesa-21.3.6/src/gallium/frontends/nine/
H A Dpixelshader9.c56 info.byte_code = pFunction; in NinePixelShader9_ctor()
75 This->byte_code.version = info.version; in NinePixelShader9_ctor()
77 This->byte_code.tokens = mem_dup(pFunction, info.byte_size); in NinePixelShader9_ctor()
78 if (!This->byte_code.tokens) in NinePixelShader9_ctor()
80 This->byte_code.size = info.byte_size; in NinePixelShader9_ctor()
138 FREE((void *)This->byte_code.tokens); /* const_cast */ in NinePixelShader9_dtor()
153 *pSizeOfData = This->byte_code.size; in NinePixelShader9_GetFunction()
158 memcpy(pData, This->byte_code.tokens, This->byte_code.size); in NinePixelShader9_GetFunction()
190 info.byte_code = This->byte_code.tokens; in NinePixelShader9_GetVariant()
193 if (unlikely(This->byte_code.version < 0x20)) { in NinePixelShader9_GetVariant()
[all …]
H A Dvertexshader9.c61 info.byte_code = pFunction; in NineVertexShader9_ctor()
89 This->byte_code.version = info.version; in NineVertexShader9_ctor()
92 This->byte_code.tokens = mem_dup(pFunction, info.byte_size); in NineVertexShader9_ctor()
93 if (!This->byte_code.tokens) in NineVertexShader9_ctor()
95 This->byte_code.size = info.byte_size; in NineVertexShader9_ctor()
163 FREE((void *)This->byte_code.tokens); /* const_cast */ in NineVertexShader9_dtor()
179 *pSizeOfData = This->byte_code.size; in NineVertexShader9_GetFunction()
182 user_assert(*pSizeOfData >= This->byte_code.size, D3DERR_INVALIDCALL); in NineVertexShader9_GetFunction()
184 memcpy(pData, This->byte_code.tokens, This->byte_code.size); in NineVertexShader9_GetFunction()
216 info.byte_code = This->byte_code.tokens; in NineVertexShader9_GetVariant()
[all …]
/dports/graphics/mesa-gallium-xa/mesa-21.3.6/src/gallium/frontends/nine/
H A Dpixelshader9.c56 info.byte_code = pFunction; in NinePixelShader9_ctor()
75 This->byte_code.version = info.version; in NinePixelShader9_ctor()
77 This->byte_code.tokens = mem_dup(pFunction, info.byte_size); in NinePixelShader9_ctor()
78 if (!This->byte_code.tokens) in NinePixelShader9_ctor()
80 This->byte_code.size = info.byte_size; in NinePixelShader9_ctor()
138 FREE((void *)This->byte_code.tokens); /* const_cast */ in NinePixelShader9_dtor()
153 *pSizeOfData = This->byte_code.size; in NinePixelShader9_GetFunction()
158 memcpy(pData, This->byte_code.tokens, This->byte_code.size); in NinePixelShader9_GetFunction()
190 info.byte_code = This->byte_code.tokens; in NinePixelShader9_GetVariant()
193 if (unlikely(This->byte_code.version < 0x20)) { in NinePixelShader9_GetVariant()
[all …]
H A Dvertexshader9.c61 info.byte_code = pFunction; in NineVertexShader9_ctor()
89 This->byte_code.version = info.version; in NineVertexShader9_ctor()
92 This->byte_code.tokens = mem_dup(pFunction, info.byte_size); in NineVertexShader9_ctor()
93 if (!This->byte_code.tokens) in NineVertexShader9_ctor()
95 This->byte_code.size = info.byte_size; in NineVertexShader9_ctor()
163 FREE((void *)This->byte_code.tokens); /* const_cast */ in NineVertexShader9_dtor()
179 *pSizeOfData = This->byte_code.size; in NineVertexShader9_GetFunction()
182 user_assert(*pSizeOfData >= This->byte_code.size, D3DERR_INVALIDCALL); in NineVertexShader9_GetFunction()
184 memcpy(pData, This->byte_code.tokens, This->byte_code.size); in NineVertexShader9_GetFunction()
216 info.byte_code = This->byte_code.tokens; in NineVertexShader9_GetVariant()
[all …]
/dports/graphics/mesa-libs/mesa-21.3.6/src/gallium/frontends/nine/
H A Dpixelshader9.c56 info.byte_code = pFunction; in NinePixelShader9_ctor()
75 This->byte_code.version = info.version; in NinePixelShader9_ctor()
77 This->byte_code.tokens = mem_dup(pFunction, info.byte_size); in NinePixelShader9_ctor()
78 if (!This->byte_code.tokens) in NinePixelShader9_ctor()
80 This->byte_code.size = info.byte_size; in NinePixelShader9_ctor()
138 FREE((void *)This->byte_code.tokens); /* const_cast */ in NinePixelShader9_dtor()
153 *pSizeOfData = This->byte_code.size; in NinePixelShader9_GetFunction()
158 memcpy(pData, This->byte_code.tokens, This->byte_code.size); in NinePixelShader9_GetFunction()
190 info.byte_code = This->byte_code.tokens; in NinePixelShader9_GetVariant()
193 if (unlikely(This->byte_code.version < 0x20)) { in NinePixelShader9_GetVariant()
[all …]
H A Dvertexshader9.c61 info.byte_code = pFunction; in NineVertexShader9_ctor()
89 This->byte_code.version = info.version; in NineVertexShader9_ctor()
92 This->byte_code.tokens = mem_dup(pFunction, info.byte_size); in NineVertexShader9_ctor()
93 if (!This->byte_code.tokens) in NineVertexShader9_ctor()
95 This->byte_code.size = info.byte_size; in NineVertexShader9_ctor()
163 FREE((void *)This->byte_code.tokens); /* const_cast */ in NineVertexShader9_dtor()
179 *pSizeOfData = This->byte_code.size; in NineVertexShader9_GetFunction()
182 user_assert(*pSizeOfData >= This->byte_code.size, D3DERR_INVALIDCALL); in NineVertexShader9_GetFunction()
184 memcpy(pData, This->byte_code.tokens, This->byte_code.size); in NineVertexShader9_GetFunction()
216 info.byte_code = This->byte_code.tokens; in NineVertexShader9_GetVariant()
[all …]
/dports/graphics/mesa-dri-gallium/mesa-21.3.6/src/gallium/frontends/nine/
H A Dpixelshader9.c56 info.byte_code = pFunction; in NinePixelShader9_ctor()
75 This->byte_code.version = info.version; in NinePixelShader9_ctor()
77 This->byte_code.tokens = mem_dup(pFunction, info.byte_size); in NinePixelShader9_ctor()
78 if (!This->byte_code.tokens) in NinePixelShader9_ctor()
80 This->byte_code.size = info.byte_size; in NinePixelShader9_ctor()
138 FREE((void *)This->byte_code.tokens); /* const_cast */ in NinePixelShader9_dtor()
153 *pSizeOfData = This->byte_code.size; in NinePixelShader9_GetFunction()
158 memcpy(pData, This->byte_code.tokens, This->byte_code.size); in NinePixelShader9_GetFunction()
190 info.byte_code = This->byte_code.tokens; in NinePixelShader9_GetVariant()
193 if (unlikely(This->byte_code.version < 0x20)) { in NinePixelShader9_GetVariant()
[all …]
H A Dvertexshader9.c61 info.byte_code = pFunction; in NineVertexShader9_ctor()
89 This->byte_code.version = info.version; in NineVertexShader9_ctor()
92 This->byte_code.tokens = mem_dup(pFunction, info.byte_size); in NineVertexShader9_ctor()
93 if (!This->byte_code.tokens) in NineVertexShader9_ctor()
95 This->byte_code.size = info.byte_size; in NineVertexShader9_ctor()
163 FREE((void *)This->byte_code.tokens); /* const_cast */ in NineVertexShader9_dtor()
179 *pSizeOfData = This->byte_code.size; in NineVertexShader9_GetFunction()
182 user_assert(*pSizeOfData >= This->byte_code.size, D3DERR_INVALIDCALL); in NineVertexShader9_GetFunction()
184 memcpy(pData, This->byte_code.tokens, This->byte_code.size); in NineVertexShader9_GetFunction()
216 info.byte_code = This->byte_code.tokens; in NineVertexShader9_GetVariant()
[all …]
/dports/graphics/mesa-gallium-va/mesa-21.3.6/src/gallium/frontends/nine/
H A Dpixelshader9.c56 info.byte_code = pFunction; in NinePixelShader9_ctor()
75 This->byte_code.version = info.version; in NinePixelShader9_ctor()
77 This->byte_code.tokens = mem_dup(pFunction, info.byte_size); in NinePixelShader9_ctor()
78 if (!This->byte_code.tokens) in NinePixelShader9_ctor()
80 This->byte_code.size = info.byte_size; in NinePixelShader9_ctor()
138 FREE((void *)This->byte_code.tokens); /* const_cast */ in NinePixelShader9_dtor()
153 *pSizeOfData = This->byte_code.size; in NinePixelShader9_GetFunction()
158 memcpy(pData, This->byte_code.tokens, This->byte_code.size); in NinePixelShader9_GetFunction()
190 info.byte_code = This->byte_code.tokens; in NinePixelShader9_GetVariant()
193 if (unlikely(This->byte_code.version < 0x20)) { in NinePixelShader9_GetVariant()
[all …]
H A Dvertexshader9.c61 info.byte_code = pFunction; in NineVertexShader9_ctor()
89 This->byte_code.version = info.version; in NineVertexShader9_ctor()
92 This->byte_code.tokens = mem_dup(pFunction, info.byte_size); in NineVertexShader9_ctor()
93 if (!This->byte_code.tokens) in NineVertexShader9_ctor()
95 This->byte_code.size = info.byte_size; in NineVertexShader9_ctor()
163 FREE((void *)This->byte_code.tokens); /* const_cast */ in NineVertexShader9_dtor()
179 *pSizeOfData = This->byte_code.size; in NineVertexShader9_GetFunction()
182 user_assert(*pSizeOfData >= This->byte_code.size, D3DERR_INVALIDCALL); in NineVertexShader9_GetFunction()
184 memcpy(pData, This->byte_code.tokens, This->byte_code.size); in NineVertexShader9_GetFunction()
216 info.byte_code = This->byte_code.tokens; in NineVertexShader9_GetVariant()
[all …]
/dports/graphics/mesa-devel/mesa-22.0-branchpoint-2059-ge8a63cf61ec/src/gallium/frontends/nine/
H A Dpixelshader9.c56 info.byte_code = pFunction; in NinePixelShader9_ctor()
75 This->byte_code.version = info.version; in NinePixelShader9_ctor()
77 This->byte_code.tokens = mem_dup(pFunction, info.byte_size); in NinePixelShader9_ctor()
78 if (!This->byte_code.tokens) in NinePixelShader9_ctor()
80 This->byte_code.size = info.byte_size; in NinePixelShader9_ctor()
138 FREE((void *)This->byte_code.tokens); /* const_cast */ in NinePixelShader9_dtor()
153 *pSizeOfData = This->byte_code.size; in NinePixelShader9_GetFunction()
158 memcpy(pData, This->byte_code.tokens, This->byte_code.size); in NinePixelShader9_GetFunction()
190 info.byte_code = This->byte_code.tokens; in NinePixelShader9_GetVariant()
193 if (unlikely(This->byte_code.version < 0x20)) { in NinePixelShader9_GetVariant()
[all …]
H A Dvertexshader9.c61 info.byte_code = pFunction; in NineVertexShader9_ctor()
89 This->byte_code.version = info.version; in NineVertexShader9_ctor()
92 This->byte_code.tokens = mem_dup(pFunction, info.byte_size); in NineVertexShader9_ctor()
93 if (!This->byte_code.tokens) in NineVertexShader9_ctor()
95 This->byte_code.size = info.byte_size; in NineVertexShader9_ctor()
163 FREE((void *)This->byte_code.tokens); /* const_cast */ in NineVertexShader9_dtor()
179 *pSizeOfData = This->byte_code.size; in NineVertexShader9_GetFunction()
182 user_assert(*pSizeOfData >= This->byte_code.size, D3DERR_INVALIDCALL); in NineVertexShader9_GetFunction()
184 memcpy(pData, This->byte_code.tokens, This->byte_code.size); in NineVertexShader9_GetFunction()
216 info.byte_code = This->byte_code.tokens; in NineVertexShader9_GetVariant()
[all …]
/dports/graphics/mesa-dri-classic/mesa-20.2.3/src/gallium/frontends/nine/
H A Dpixelshader9.c56 info.byte_code = pFunction; in NinePixelShader9_ctor()
74 This->byte_code.version = info.version; in NinePixelShader9_ctor()
76 This->byte_code.tokens = mem_dup(pFunction, info.byte_size); in NinePixelShader9_ctor()
77 if (!This->byte_code.tokens) in NinePixelShader9_ctor()
79 This->byte_code.size = info.byte_size; in NinePixelShader9_ctor()
137 FREE((void *)This->byte_code.tokens); /* const_cast */ in NinePixelShader9_dtor()
152 *pSizeOfData = This->byte_code.size; in NinePixelShader9_GetFunction()
157 memcpy(pData, This->byte_code.tokens, This->byte_code.size); in NinePixelShader9_GetFunction()
189 info.byte_code = This->byte_code.tokens; in NinePixelShader9_GetVariant()
192 if (unlikely(This->byte_code.version < 0x20)) { in NinePixelShader9_GetVariant()
[all …]
/dports/graphics/mesa-gallium-vdpau/mesa-21.3.6/src/gallium/frontends/nine/
H A Dpixelshader9.c56 info.byte_code = pFunction; in NinePixelShader9_ctor()
75 This->byte_code.version = info.version; in NinePixelShader9_ctor()
77 This->byte_code.tokens = mem_dup(pFunction, info.byte_size); in NinePixelShader9_ctor()
78 if (!This->byte_code.tokens) in NinePixelShader9_ctor()
80 This->byte_code.size = info.byte_size; in NinePixelShader9_ctor()
138 FREE((void *)This->byte_code.tokens); /* const_cast */ in NinePixelShader9_dtor()
153 *pSizeOfData = This->byte_code.size; in NinePixelShader9_GetFunction()
158 memcpy(pData, This->byte_code.tokens, This->byte_code.size); in NinePixelShader9_GetFunction()
190 info.byte_code = This->byte_code.tokens; in NinePixelShader9_GetVariant()
193 if (unlikely(This->byte_code.version < 0x20)) { in NinePixelShader9_GetVariant()
[all …]
H A Dvertexshader9.c61 info.byte_code = pFunction; in NineVertexShader9_ctor()
89 This->byte_code.version = info.version; in NineVertexShader9_ctor()
92 This->byte_code.tokens = mem_dup(pFunction, info.byte_size); in NineVertexShader9_ctor()
93 if (!This->byte_code.tokens) in NineVertexShader9_ctor()
95 This->byte_code.size = info.byte_size; in NineVertexShader9_ctor()
163 FREE((void *)This->byte_code.tokens); /* const_cast */ in NineVertexShader9_dtor()
179 *pSizeOfData = This->byte_code.size; in NineVertexShader9_GetFunction()
182 user_assert(*pSizeOfData >= This->byte_code.size, D3DERR_INVALIDCALL); in NineVertexShader9_GetFunction()
184 memcpy(pData, This->byte_code.tokens, This->byte_code.size); in NineVertexShader9_GetFunction()
216 info.byte_code = This->byte_code.tokens; in NineVertexShader9_GetVariant()
[all …]
/dports/graphics/mesa-dri/mesa-21.3.6/src/gallium/frontends/nine/
H A Dpixelshader9.c56 info.byte_code = pFunction; in NinePixelShader9_ctor()
75 This->byte_code.version = info.version; in NinePixelShader9_ctor()
77 This->byte_code.tokens = mem_dup(pFunction, info.byte_size); in NinePixelShader9_ctor()
78 if (!This->byte_code.tokens) in NinePixelShader9_ctor()
80 This->byte_code.size = info.byte_size; in NinePixelShader9_ctor()
138 FREE((void *)This->byte_code.tokens); /* const_cast */ in NinePixelShader9_dtor()
153 *pSizeOfData = This->byte_code.size; in NinePixelShader9_GetFunction()
158 memcpy(pData, This->byte_code.tokens, This->byte_code.size); in NinePixelShader9_GetFunction()
190 info.byte_code = This->byte_code.tokens; in NinePixelShader9_GetVariant()
193 if (unlikely(This->byte_code.version < 0x20)) { in NinePixelShader9_GetVariant()
[all …]
/dports/lang/parrot/parrot-8.1.0/src/packfile/
H A Dsegments.c2124 if (byte_code->op_func_table) in byte_code_destroy()
2126 if (byte_code->op_info_table) in byte_code_destroy()
2128 if (byte_code->op_mapping.libs) { in byte_code_destroy()
2140 if (byte_code->libdeps) in byte_code_destroy()
2143 if (byte_code->annotations) in byte_code_destroy()
2146 byte_code->annotations = NULL; in byte_code_destroy()
2147 byte_code->const_table = NULL; in byte_code_destroy()
2148 byte_code->debugs = NULL; in byte_code_destroy()
2242 *cursor++ = byte_code->main_sub; in byte_code_pack()
2244 *cursor++ = byte_code->n_libdeps; in byte_code_pack()
[all …]

12345678910>>...14