Home
last modified time | relevance | path

Searched refs:runtime (Results 1 – 25 of 2248) sorted by relevance

12345678910>>...90

/external/skqp/src/compute/skc/platforms/cl_12/
Druntime_cl_12.c36 skc_block_pool_create(struct skc_runtime * const runtime, cl_command_queue cq) in skc_block_pool_create() argument
39 runtime->block_pool.size = &runtime->config->block_pool; in skc_block_pool_create()
42 skc_extent_pdrw_alloc(runtime, in skc_block_pool_create()
43 &runtime->block_pool.blocks, in skc_block_pool_create()
44 runtime->block_pool.size->pool_size * in skc_block_pool_create()
45 runtime->config->block.bytes); in skc_block_pool_create()
48 skc_extent_pdrw_alloc(runtime, in skc_block_pool_create()
49 &runtime->block_pool.ids, in skc_block_pool_create()
50 runtime->block_pool.size->ring_pow2 * sizeof(skc_uint)); in skc_block_pool_create()
53 skc_extent_phr_pdrw_alloc(runtime, in skc_block_pool_create()
[all …]
Draster_builder_cl_12.c162 struct skc_runtime * runtime; member
298 struct skc_runtime * const runtime = impl->runtime; in skc_raster_builder_pfn_release() local
301 skc_runtime_host_perm_free(runtime,impl->raster_builder); in skc_raster_builder_pfn_release()
304 skc_extent_phrwg_thr1s_free(runtime,&impl->path_ids); in skc_raster_builder_pfn_release()
305 skc_extent_phw1g_tdrNs_free(runtime,&impl->transforms); in skc_raster_builder_pfn_release()
306 skc_extent_phw1g_tdrNs_free(runtime,&impl->clips); in skc_raster_builder_pfn_release()
307 skc_extent_phw1g_tdrNs_free(runtime,&impl->fill_cmds); in skc_raster_builder_pfn_release()
308 skc_extent_phrwg_tdrNs_free(runtime,&impl->raster_ids); in skc_raster_builder_pfn_release()
325 skc_runtime_host_perm_free(runtime,impl); in skc_raster_builder_pfn_release()
334 skc_raster_builder_rasters_release(struct skc_runtime * const runtime, in skc_raster_builder_rasters_release() argument
[all …]
Dhandle_pool_cl_12.c72 skc_handle_reclaim_create(struct skc_runtime * const runtime, in skc_handle_reclaim_create() argument
83 reclaim->kernel = skc_device_acquire_kernel(runtime->device,kernel_id); in skc_handle_reclaim_create()
87 cl(SetKernelArg(reclaim->kernel,0,SKC_CL_ARG(runtime->block_pool.ids.drw))); in skc_handle_reclaim_create()
88 cl(SetKernelArg(reclaim->kernel,1,SKC_CL_ARG(runtime->block_pool.blocks.drw))); in skc_handle_reclaim_create()
89 cl(SetKernelArg(reclaim->kernel,2,SKC_CL_ARG(runtime->block_pool.atomics.drw))); in skc_handle_reclaim_create()
90 cl(SetKernelArg(reclaim->kernel,3,SKC_CL_ARG(runtime->config->block_pool.ring_mask))); in skc_handle_reclaim_create()
91 cl(SetKernelArg(reclaim->kernel,4,SKC_CL_ARG(runtime->handle_pool.map.drw))); in skc_handle_reclaim_create()
96 skc_handle_reclaim_dispose(struct skc_runtime * const runtime, in skc_handle_reclaim_dispose() argument
99 struct skc_handle_reclaim * const reclaim = runtime->handle_pool.reclaim + reclaim_type; in skc_handle_reclaim_dispose()
111 skc_handle_pool_create(struct skc_runtime * const runtime, in skc_handle_pool_create() argument
[all …]
Dextent_cl_12.c24 skc_extent_phrw_alloc(struct skc_runtime * const runtime, in skc_extent_phrw_alloc() argument
28 extent->hrw = skc_runtime_host_perm_alloc(runtime,SKC_MEM_FLAGS_READ_WRITE,size); in skc_extent_phrw_alloc()
32 skc_extent_phrw_free(struct skc_runtime * const runtime, in skc_extent_phrw_free() argument
35 skc_runtime_host_perm_free(runtime,extent->hrw); in skc_extent_phrw_free()
43 skc_extent_pdrw_alloc(struct skc_runtime * const runtime, in skc_extent_pdrw_alloc() argument
47 extent->drw = skc_runtime_device_perm_alloc(runtime, in skc_extent_pdrw_alloc()
53 skc_extent_pdrw_free(struct skc_runtime * const runtime, in skc_extent_pdrw_free() argument
56 skc_runtime_device_perm_free(runtime,extent->drw); in skc_extent_pdrw_free()
64 skc_extent_tdrw_alloc(struct skc_runtime * const runtime, in skc_extent_tdrw_alloc() argument
69 extent->drw = skc_runtime_device_temp_alloc(runtime, in skc_extent_tdrw_alloc()
[all …]
Dallocator_device_cl.c22 skc_runtime_device_perm_alloc(struct skc_runtime * const runtime, in skc_runtime_device_perm_alloc() argument
28 cl_mem mem = clCreateBuffer(runtime->cl.context, in skc_runtime_device_perm_alloc()
37 skc_runtime_device_perm_free(struct skc_runtime * const runtime, in skc_runtime_device_perm_free() argument
48 skc_runtime_device_temp_alloc(struct skc_runtime * const runtime, in skc_runtime_device_temp_alloc() argument
66 br.origin = skc_suballocator_subbuf_alloc(&runtime->allocator.device.temp.suballocator, in skc_runtime_device_temp_alloc()
67 runtime->scheduler, in skc_runtime_device_temp_alloc()
75 cl_mem mem = clCreateSubBuffer(runtime->allocator.device.temp.extent, in skc_runtime_device_temp_alloc()
86 skc_runtime_device_temp_free(struct skc_runtime * const runtime, in skc_runtime_device_temp_free() argument
93 skc_suballocator_subbuf_free(&runtime->allocator.device.temp.suballocator,subbuf_id); in skc_runtime_device_temp_free()
103 skc_allocator_device_create(struct skc_runtime * const runtime) in skc_allocator_device_create() argument
[all …]
Dextent_cl_12.h49 skc_extent_phrw_alloc(struct skc_runtime * const runtime,
54 skc_extent_phrw_free(struct skc_runtime * const runtime,
67 skc_extent_pdrw_alloc(struct skc_runtime * const runtime,
72 skc_extent_pdrw_free(struct skc_runtime * const runtime,
87 skc_extent_tdrw_alloc(struct skc_runtime * const runtime,
92 skc_extent_tdrw_free(struct skc_runtime * const runtime,
112 skc_extent_phr_pdrw_alloc(struct skc_runtime * const runtime,
117 skc_extent_phr_pdrw_free(struct skc_runtime * const runtime,
148 skc_extent_thr_tdrw_alloc(struct skc_runtime * const runtime,
153 skc_extent_thr_tdrw_free(struct skc_runtime * const runtime,
[all …]
Dcomposition_cl_12.c142 struct skc_runtime * const runtime = impl->runtime; in skc_composition_pfn_release() local
145 skc_runtime_host_perm_free(runtime,impl->composition); in skc_composition_pfn_release()
148 skc_runtime_release_cq_in_order(runtime,impl->cq); in skc_composition_pfn_release()
155 skc_extent_phw1g_tdrNs_free(runtime,&impl->cmds.extent); in skc_composition_pfn_release()
156 skc_extent_phrw_free (runtime,&impl->saved.extent); in skc_composition_pfn_release()
157 skc_extent_phr_pdrw_free (runtime,&impl->atomics); in skc_composition_pfn_release()
159 skc_extent_pdrw_free (runtime,&impl->keys); in skc_composition_pfn_release()
160 skc_extent_pdrw_free (runtime,&impl->offsets); in skc_composition_pfn_release()
163 skc_runtime_host_perm_free(runtime,impl); in skc_composition_pfn_release()
176 struct skc_runtime * const runtime = impl->runtime; in skc_composition_place_grid_pfn_dispose() local
[all …]
Dstyling_cl_12.c48 struct skc_scheduler * const scheduler = impl->runtime->scheduler; in skc_styling_unmap_cb()
90 struct skc_runtime * const runtime = impl->runtime; in skc_styling_pfn_seal() local
91 struct skc_scheduler * const scheduler = runtime->scheduler; in skc_styling_pfn_seal()
105 impl->grid = SKC_GRID_DEPS_ATTACH(runtime->deps, in skc_styling_pfn_seal()
123 struct skc_runtime * const runtime = impl->runtime; in skc_styling_unseal_complete() local
136 SKC_SCHEDULER_SCHEDULE(impl->runtime->scheduler,skc_styling_unseal_complete,impl); in skc_styling_unseal_cb()
150 struct skc_runtime * const runtime = impl->runtime; in skc_styling_pfn_unseal() local
151 struct skc_scheduler * const scheduler = runtime->scheduler; in skc_styling_pfn_unseal()
224 struct skc_runtime * const runtime = impl->runtime; in skc_styling_pfn_release() local
225 struct skc_scheduler * const scheduler = runtime->scheduler; in skc_styling_pfn_release()
[all …]
/external/skia/src/compute/skc/platforms/cl_12/
Druntime_cl_12.c36 skc_block_pool_create(struct skc_runtime * const runtime, cl_command_queue cq) in skc_block_pool_create() argument
39 runtime->block_pool.size = &runtime->config->block_pool; in skc_block_pool_create()
42 skc_extent_pdrw_alloc(runtime, in skc_block_pool_create()
43 &runtime->block_pool.blocks, in skc_block_pool_create()
44 runtime->block_pool.size->pool_size * in skc_block_pool_create()
45 runtime->config->block.bytes); in skc_block_pool_create()
48 skc_extent_pdrw_alloc(runtime, in skc_block_pool_create()
49 &runtime->block_pool.ids, in skc_block_pool_create()
50 runtime->block_pool.size->ring_pow2 * sizeof(skc_uint)); in skc_block_pool_create()
53 skc_extent_phr_pdrw_alloc(runtime, in skc_block_pool_create()
[all …]
Draster_builder_cl_12.c162 struct skc_runtime * runtime; member
298 struct skc_runtime * const runtime = impl->runtime; in skc_raster_builder_pfn_release() local
301 skc_runtime_host_perm_free(runtime,impl->raster_builder); in skc_raster_builder_pfn_release()
304 skc_extent_phrwg_thr1s_free(runtime,&impl->path_ids); in skc_raster_builder_pfn_release()
305 skc_extent_phw1g_tdrNs_free(runtime,&impl->transforms); in skc_raster_builder_pfn_release()
306 skc_extent_phw1g_tdrNs_free(runtime,&impl->clips); in skc_raster_builder_pfn_release()
307 skc_extent_phw1g_tdrNs_free(runtime,&impl->fill_cmds); in skc_raster_builder_pfn_release()
308 skc_extent_phrwg_tdrNs_free(runtime,&impl->raster_ids); in skc_raster_builder_pfn_release()
325 skc_runtime_host_perm_free(runtime,impl); in skc_raster_builder_pfn_release()
334 skc_raster_builder_rasters_release(struct skc_runtime * const runtime, in skc_raster_builder_rasters_release() argument
[all …]
Dhandle_pool_cl_12.c72 skc_handle_reclaim_create(struct skc_runtime * const runtime, in skc_handle_reclaim_create() argument
83 reclaim->kernel = skc_device_acquire_kernel(runtime->device,kernel_id); in skc_handle_reclaim_create()
87 cl(SetKernelArg(reclaim->kernel,0,SKC_CL_ARG(runtime->block_pool.ids.drw))); in skc_handle_reclaim_create()
88 cl(SetKernelArg(reclaim->kernel,1,SKC_CL_ARG(runtime->block_pool.blocks.drw))); in skc_handle_reclaim_create()
89 cl(SetKernelArg(reclaim->kernel,2,SKC_CL_ARG(runtime->block_pool.atomics.drw))); in skc_handle_reclaim_create()
90 cl(SetKernelArg(reclaim->kernel,3,SKC_CL_ARG(runtime->config->block_pool.ring_mask))); in skc_handle_reclaim_create()
91 cl(SetKernelArg(reclaim->kernel,4,SKC_CL_ARG(runtime->handle_pool.map.drw))); in skc_handle_reclaim_create()
96 skc_handle_reclaim_dispose(struct skc_runtime * const runtime, in skc_handle_reclaim_dispose() argument
99 struct skc_handle_reclaim * const reclaim = runtime->handle_pool.reclaim + reclaim_type; in skc_handle_reclaim_dispose()
111 skc_handle_pool_create(struct skc_runtime * const runtime, in skc_handle_pool_create() argument
[all …]
Dextent_cl_12.c24 skc_extent_phrw_alloc(struct skc_runtime * const runtime, in skc_extent_phrw_alloc() argument
28 extent->hrw = skc_runtime_host_perm_alloc(runtime,SKC_MEM_FLAGS_READ_WRITE,size); in skc_extent_phrw_alloc()
32 skc_extent_phrw_free(struct skc_runtime * const runtime, in skc_extent_phrw_free() argument
35 skc_runtime_host_perm_free(runtime,extent->hrw); in skc_extent_phrw_free()
43 skc_extent_pdrw_alloc(struct skc_runtime * const runtime, in skc_extent_pdrw_alloc() argument
47 extent->drw = skc_runtime_device_perm_alloc(runtime, in skc_extent_pdrw_alloc()
53 skc_extent_pdrw_free(struct skc_runtime * const runtime, in skc_extent_pdrw_free() argument
56 skc_runtime_device_perm_free(runtime,extent->drw); in skc_extent_pdrw_free()
64 skc_extent_tdrw_alloc(struct skc_runtime * const runtime, in skc_extent_tdrw_alloc() argument
69 extent->drw = skc_runtime_device_temp_alloc(runtime, in skc_extent_tdrw_alloc()
[all …]
Dallocator_device_cl.c22 skc_runtime_device_perm_alloc(struct skc_runtime * const runtime, in skc_runtime_device_perm_alloc() argument
28 cl_mem mem = clCreateBuffer(runtime->cl.context, in skc_runtime_device_perm_alloc()
37 skc_runtime_device_perm_free(struct skc_runtime * const runtime, in skc_runtime_device_perm_free() argument
48 skc_runtime_device_temp_alloc(struct skc_runtime * const runtime, in skc_runtime_device_temp_alloc() argument
66 br.origin = skc_suballocator_subbuf_alloc(&runtime->allocator.device.temp.suballocator, in skc_runtime_device_temp_alloc()
67 runtime->scheduler, in skc_runtime_device_temp_alloc()
75 cl_mem mem = clCreateSubBuffer(runtime->allocator.device.temp.extent, in skc_runtime_device_temp_alloc()
86 skc_runtime_device_temp_free(struct skc_runtime * const runtime, in skc_runtime_device_temp_free() argument
93 skc_suballocator_subbuf_free(&runtime->allocator.device.temp.suballocator,subbuf_id); in skc_runtime_device_temp_free()
103 skc_allocator_device_create(struct skc_runtime * const runtime) in skc_allocator_device_create() argument
[all …]
Dextent_cl_12.h49 skc_extent_phrw_alloc(struct skc_runtime * const runtime,
54 skc_extent_phrw_free(struct skc_runtime * const runtime,
67 skc_extent_pdrw_alloc(struct skc_runtime * const runtime,
72 skc_extent_pdrw_free(struct skc_runtime * const runtime,
87 skc_extent_tdrw_alloc(struct skc_runtime * const runtime,
92 skc_extent_tdrw_free(struct skc_runtime * const runtime,
112 skc_extent_phr_pdrw_alloc(struct skc_runtime * const runtime,
117 skc_extent_phr_pdrw_free(struct skc_runtime * const runtime,
148 skc_extent_thr_tdrw_alloc(struct skc_runtime * const runtime,
153 skc_extent_thr_tdrw_free(struct skc_runtime * const runtime,
[all …]
Dcomposition_cl_12.c142 struct skc_runtime * const runtime = impl->runtime; in skc_composition_pfn_release() local
145 skc_runtime_host_perm_free(runtime,impl->composition); in skc_composition_pfn_release()
148 skc_runtime_release_cq_in_order(runtime,impl->cq); in skc_composition_pfn_release()
155 skc_extent_phw1g_tdrNs_free(runtime,&impl->cmds.extent); in skc_composition_pfn_release()
156 skc_extent_phrw_free (runtime,&impl->saved.extent); in skc_composition_pfn_release()
157 skc_extent_phr_pdrw_free (runtime,&impl->atomics); in skc_composition_pfn_release()
159 skc_extent_pdrw_free (runtime,&impl->keys); in skc_composition_pfn_release()
160 skc_extent_pdrw_free (runtime,&impl->offsets); in skc_composition_pfn_release()
163 skc_runtime_host_perm_free(runtime,impl); in skc_composition_pfn_release()
176 struct skc_runtime * const runtime = impl->runtime; in skc_composition_place_grid_pfn_dispose() local
[all …]
Dstyling_cl_12.c48 struct skc_scheduler * const scheduler = impl->runtime->scheduler; in skc_styling_unmap_cb()
90 struct skc_runtime * const runtime = impl->runtime; in skc_styling_pfn_seal() local
91 struct skc_scheduler * const scheduler = runtime->scheduler; in skc_styling_pfn_seal()
105 impl->grid = SKC_GRID_DEPS_ATTACH(runtime->deps, in skc_styling_pfn_seal()
123 struct skc_runtime * const runtime = impl->runtime; in skc_styling_unseal_complete() local
136 SKC_SCHEDULER_SCHEDULE(impl->runtime->scheduler,skc_styling_unseal_complete,impl); in skc_styling_unseal_cb()
150 struct skc_runtime * const runtime = impl->runtime; in skc_styling_pfn_unseal() local
151 struct skc_scheduler * const scheduler = runtime->scheduler; in skc_styling_pfn_unseal()
224 struct skc_runtime * const runtime = impl->runtime; in skc_styling_pfn_release() local
225 struct skc_scheduler * const scheduler = runtime->scheduler; in skc_styling_pfn_release()
[all …]
/external/antlr/runtime/JavaScript/build/
Dantlr3.properties10 org/antlr/runtime/RecognizerSharedState.js,\
11 org/antlr/runtime/IndexOutOfBoundsExceptions.js,\
12 org/antlr/runtime/RecognitionException.js,\
13 org/antlr/runtime/MismatchedTokenException.js,\
14 org/antlr/runtime/UnwantedTokenException.js,\
15 org/antlr/runtime/MissingTokenException.js,\
16 org/antlr/runtime/NoViableAltException.js,\
17 org/antlr/runtime/EarlyExitException.js,\
18 org/antlr/runtime/MismatchedSetException.js,\
19 org/antlr/runtime/MismatchedNotSetException.js,\
[all …]
/external/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
DUtils.java43 import org.jruby.runtime.Block;
44 import org.jruby.runtime.ThreadContext;
45 import org.jruby.runtime.builtin.IRubyObject;
64 return context.runtime.newSymbol(typeName.replace("TYPE_", "").toLowerCase()); in fieldTypeToRuby()
69 Ruby runtime = context.runtime; in checkType() local
77 throw runtime.newTypeError("Expected number type for integral field."); in checkType()
90 num2ulong(context.runtime, value); in checkType()
97 throw runtime.newTypeError("Expected number type for float field."); in checkType()
101 throw runtime.newTypeError("Expected number type for double field."); in checkType()
105 throw runtime.newTypeError("Invalid argument for boolean field."); in checkType()
[all …]
DRubyMessageBuilderContext.java39 import org.jruby.runtime.Binding;
40 import org.jruby.runtime.Block;
41 import org.jruby.runtime.ObjectAllocator;
42 import org.jruby.runtime.ThreadContext;
43 import org.jruby.runtime.builtin.IRubyObject;
47 public static void createRubyMessageBuilderContext(Ruby runtime) { in createRubyMessageBuilderContext() argument
48 RubyModule protobuf = runtime.getClassFromPath("Google::Protobuf"); in createRubyMessageBuilderContext()
49 …ssageBuilderContext = protobuf.defineClassUnder("MessageBuilderContext", runtime.getObject(), new … in createRubyMessageBuilderContext()
51 public IRubyObject allocate(Ruby runtime, RubyClass klazz) { in createRubyMessageBuilderContext()
52 return new RubyMessageBuilderContext(runtime, klazz); in createRubyMessageBuilderContext()
[all …]
DRubyEnumDescriptor.java44 import org.jruby.runtime.Block;
45 import org.jruby.runtime.ObjectAllocator;
46 import org.jruby.runtime.ThreadContext;
47 import org.jruby.runtime.builtin.IRubyObject;
51 public static void createRubyEnumDescriptor(Ruby runtime) { in createRubyEnumDescriptor() argument
52 RubyModule mProtobuf = runtime.getClassFromPath("Google::Protobuf"); in createRubyEnumDescriptor()
53 …RubyClass cEnumDescriptor = mProtobuf.defineClassUnder("EnumDescriptor", runtime.getObject(), new … in createRubyEnumDescriptor()
55 public IRubyObject allocate(Ruby runtime, RubyClass klazz) { in createRubyEnumDescriptor()
56 return new RubyEnumDescriptor(runtime, klazz); in createRubyEnumDescriptor()
59 cEnumDescriptor.includeModule(runtime.getEnumerable()); in createRubyEnumDescriptor()
[all …]
DRubyDescriptor.java40 import org.jruby.runtime.Block;
41 import org.jruby.runtime.ObjectAllocator;
42 import org.jruby.runtime.ThreadContext;
43 import org.jruby.runtime.builtin.IRubyObject;
51 public static void createRubyDescriptor(Ruby runtime) { in createRubyDescriptor() argument
52 RubyModule protobuf = runtime.getClassFromPath("Google::Protobuf"); in createRubyDescriptor()
53 …RubyClass cDescriptor = protobuf.defineClassUnder("Descriptor", runtime.getObject(), new ObjectAll… in createRubyDescriptor()
55 public IRubyObject allocate(Ruby runtime, RubyClass klazz) { in createRubyDescriptor()
56 return new RubyDescriptor(runtime, klazz); in createRubyDescriptor()
59 cDescriptor.includeModule(runtime.getEnumerable()); in createRubyDescriptor()
[all …]
/external/skia/src/compute/skc/
Dallocator_host.c36 skc_runtime_host_perm_alloc(struct skc_runtime * const runtime, in skc_runtime_host_perm_alloc() argument
45 skc_runtime_host_perm_free(struct skc_runtime * const runtime, in skc_runtime_host_perm_free() argument
56 skc_runtime_host_temp_alloc(struct skc_runtime * const runtime, in skc_runtime_host_temp_alloc() argument
72 return runtime->allocator.host.temp.extent + in skc_runtime_host_temp_alloc()
73 skc_suballocator_subbuf_alloc(&runtime->allocator.host.temp.suballocator, in skc_runtime_host_temp_alloc()
74 runtime->scheduler, in skc_runtime_host_temp_alloc()
80 skc_runtime_host_temp_free(struct skc_runtime * const runtime, in skc_runtime_host_temp_free() argument
87 skc_suballocator_subbuf_free(&runtime->allocator.host.temp.suballocator,subbuf_id); in skc_runtime_host_temp_free()
95 skc_allocator_host_create(struct skc_runtime * const runtime) in skc_allocator_host_create() argument
97 skc_suballocator_create(runtime, in skc_allocator_host_create()
[all …]
/external/skqp/src/compute/skc/
Dallocator_host.c36 skc_runtime_host_perm_alloc(struct skc_runtime * const runtime, in skc_runtime_host_perm_alloc() argument
45 skc_runtime_host_perm_free(struct skc_runtime * const runtime, in skc_runtime_host_perm_free() argument
56 skc_runtime_host_temp_alloc(struct skc_runtime * const runtime, in skc_runtime_host_temp_alloc() argument
72 return runtime->allocator.host.temp.extent + in skc_runtime_host_temp_alloc()
73 skc_suballocator_subbuf_alloc(&runtime->allocator.host.temp.suballocator, in skc_runtime_host_temp_alloc()
74 runtime->scheduler, in skc_runtime_host_temp_alloc()
80 skc_runtime_host_temp_free(struct skc_runtime * const runtime, in skc_runtime_host_temp_free() argument
87 skc_suballocator_subbuf_free(&runtime->allocator.host.temp.suballocator,subbuf_id); in skc_runtime_host_temp_free()
95 skc_allocator_host_create(struct skc_runtime * const runtime) in skc_allocator_host_create() argument
97 skc_suballocator_create(runtime, in skc_allocator_host_create()
[all …]
/external/deqp-deps/glslang/Test/baseResults/
DruntimeArray.vert.out44 0:46 a: direct index for structure (layout( column_major shared) uniform runtime-sized array…
45 …k{layout( column_major shared) uniform runtime-sized array of int a, layout( column_major shared) …
51 0:47 b: direct index for structure (layout( column_major shared) uniform runtime-sized array…
52 …k{layout( column_major shared) uniform runtime-sized array of int a, layout( column_major shared) …
58 0:48 a: direct index for structure (layout( column_major shared) buffer runtime-sized array …
59 …ock{layout( column_major shared) buffer runtime-sized array of int a, layout( column_major shared)…
65 0:49 b: direct index for structure (layout( column_major shared) buffer runtime-sized array …
66 …ock{layout( column_major shared) buffer runtime-sized array of int a, layout( column_major shared)…
72 0:51 a: direct index for structure (layout( column_major shared) uniform runtime-sized array…
73 …k{layout( column_major shared) uniform runtime-sized array of int a, layout( column_major shared) …
[all …]
/external/pdfium/fxjs/xfa/
Dcjx_layoutpseudomodel.cpp72 CJS_V8* runtime, in HWXY() argument
78 CXFA_Node* pNode = ToNode(runtime->ToXFAObject(params[0])); in HWXY()
84 WideString tmp_unit = runtime->ToWideString(params[1]); in HWXY()
88 int32_t iIndex = params.size() >= 3 ? runtime->ToInt32(params[2]) : 0; in HWXY()
104 return CJS_Return(runtime->NewNumber(0.0)); in HWXY()
125 return CJS_Return(runtime->NewNumber(FXSYS_round(fValue * 1000) / 1000.0f)); in HWXY()
129 CJS_V8* runtime, in h() argument
131 return HWXY(runtime, params, XFA_LAYOUTMODEL_H); in h()
135 CJS_V8* runtime, in w() argument
137 return HWXY(runtime, params, XFA_LAYOUTMODEL_W); in w()
[all …]

12345678910>>...90