Searched refs:local (Results 76 - 100 of 632) sorted by relevance

1234567891011>>

/external/valgrind/memcheck/tests/
H A Dvarinfo1.c46 int local; local
56 croak( &local );
/external/jmonkeyengine/engine/src/core/com/jme3/asset/
H A DImplHandler.java44 * which store local persistent data to operate with a multi-threaded system.
46 * locator object in a thread local.
144 for (ImplThreadLocal local : genericLocators){
145 AssetLocator locator = (AssetLocator) local.get();
146 if (local.getPath() != null){
147 locator.setRootPath((String) local.getPath());
170 ImplThreadLocal local = loaders.get(key.getExtension());
171 if (local != null){
172 AssetLoader loader = (AssetLoader) local.get();
180 ImplThreadLocal local
[all...]
/external/skia/src/gpu/gl/
H A DGrGLPathProcessor.cpp20 const PathBatchTracker& local = args.fBT.cast<PathBatchTracker>(); local
26 if (kUniform_GrGPInput == local.fInputColorType) {
37 if (kAllOnes_GrGPInput == local.fInputCoverageType) {
46 const PathBatchTracker& local = bt.cast<PathBatchTracker>(); local
47 b->add32(local.fInputColorType | local.fInputCoverageType << 16);
53 const PathBatchTracker& local = bt.cast<PathBatchTracker>(); local
54 if (kUniform_GrGPInput == local.fInputColorType && local.fColor != fColor) {
56 GrColorToRGBAFloat(local
[all...]
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dfx_zlib_crc32.c33 #define local static macro
40 local unsigned long crc32_little OF((unsigned long,
42 local unsigned long crc32_big OF((unsigned long,
50 local unsigned long gf2_matrix_times OF((unsigned long *mat,
52 local void gf2_matrix_square OF((unsigned long *square, unsigned long *mat));
53 local uLong crc32_combine_ OF((uLong crc1, uLong crc2, z_off64_t len2));
58 local volatile int crc_table_empty = 1;
59 local z_crc_t FAR crc_table[TBLS][256];
60 local void make_crc_table OF((void));
62 local voi
[all...]
/external/skia/tools/lua/
H A Dscrape_dashing_full.lua0 local canvas -- holds the current canvas (from startcanvas())
39 local dashCount = 0
41 local total_found = {}
42 local drawPoints_count = {}
43 local drawPoints_direction = {}
45 local dashInterval_count = {}
46 local dashInterval_pattern = {}
48 local dash_phase = {}
50 local dash_cap = {}
53 local dashTabl
[all...]
H A Dscrape.lua2 local str = ""
21 local total = {} -- accumulate() stores its data in here
22 local canvas -- holds the current canvas (from startcanvas())
51 local n = total[t.verb] or 0
55 local r = t.rect;
56 local p = t.paint;
57 local c = p:getColor();
62 local pred, r1, r2, d1, d2 = t.path:isNestedFillRects()
H A Dglyph-usage.lua2 local str = ""
21 local canvas -- holds the current canvas (from startcanvas())
64 local strikes = {} -- [fontID_pointsize] = [] unique glyphs
80 local array = {}
89 local n = 0
100 local key = make_strike_key(t.paint)
116 local totalCount = 0
117 local strikeCount = 0
118 local min, max = 0, 0
120 local histogra
[all...]
H A Dglyph-counts.lua2 local str = ""
21 local canvas -- holds the current canvas (from startcanvas())
50 local gCounts = {} -- [fontID_pointsize] = [] unique glyphs
51 local gFirstGlyphs = {}
52 local gTotalCount = 0
55 local n = 0
66 local key = array_count(t.glyphs)
67 local n = gCounts[key]
75 local first = t.glyphs[1];
76 local
[all...]
H A Dscrape_dashing.lua2 local str = ""
21 local total_found = {} -- accumulate() stores its data in here
22 local total_total = {}
23 local canvas -- holds the current canvas (from startcanvas())
52 local drawPointsTable = {}
53 local drawPointsTable_direction = {}
58 local p = t.paint
60 local pe = p:getPathEffect();
67 local points = t.points
H A Dcount_effects.lua2 local str = ""
25 local effects = {}
33 local total_paints = 0;
/external/apache-http/src/org/apache/http/conn/params/
H A DConnRouteParams.java174 * :: for IPv6) to override a specific local address in a hierarchy.
178 * @return the local address set in the argument parameters, or
185 InetAddress local = (InetAddress)
188 return local;
197 * @param local the value to set, may be <code>null</code>
200 InetAddress local) {
204 params.setParameter(LOCAL_ADDRESS, local);
199 setLocalAddress(HttpParams params, InetAddress local) argument
/external/clang/test/CodeGen/
H A Dannotations-var.c32 void local(void) { function
34 // LOCAL-LABEL: define void @local()
/external/compiler-rt/test/asan/TestCases/Linux/
H A Duar_signals.cc17 int local; local
18 g = &local;
20 // printf("s: %p\n", &local);
44 int local; local
45 g = &local;
46 // printf("r: %p\n", &local);
/external/kernel-headers/original/uapi/linux/
H A Dif_pppolac.h30 } local, remote; member in struct:sockaddr_pppolac
/external/libnl/lib/route/sch/
H A Dblackhole.c18 #include <netlink-local.h>
/external/lldb/test/functionalities/watchpoint/watchpoint_commands/command/
H A Dmain.cpp20 int local = 0; local
/external/lldb/test/functionalities/watchpoint/watchpoint_commands/condition/
H A Dmain.cpp19 int local = 0; local
/external/lldb/test/python_api/watchpoint/condition/
H A Dmain.cpp19 int local = 0; local
/external/dexmaker/src/dx/java/com/android/dx/ssa/
H A DSsaInsn.java132 * Sets the local association for the result of this insn. This is
135 * @param local {@code null-ok;} new debug/local variable info
137 public final void setResultLocal(LocalItem local) { argument
140 if (local != oldItem && (local == null
141 || !local.equals(result.getLocalItem()))) {
143 result.getReg(), result.getType(), local);
187 * Gets the spec of a local variable assignment that occurs at this
188 * instruction, or null if no local variabl
[all...]
/external/skia/src/gpu/effects/
H A DGrBitmapTextGeoProc.cpp31 const BitmapTextBatchTracker& local = args.fBT.cast<BitmapTextBatchTracker>(); variable
53 this->setupColorPassThrough(pb, local.fInputColorType, args.fOutputColor, cte.inColor(),
82 const BitmapTextBatchTracker& local = bt.cast<BitmapTextBatchTracker>(); variable
83 if (kUniform_GrGPInput == local.fInputColorType && local.fColor != fColor) {
85 GrColorToRGBAFloat(local.fColor, c);
87 fColor = local.fColor;
102 const BitmapTextBatchTracker& local = bt.cast<BitmapTextBatchTracker>(); local
109 key |= local.fUsesLocalCoords && gp.localMatrix().hasPerspective() ? 0x2 : 0x0;
111 b->add32(local
156 BitmapTextBatchTracker* local = bt->cast<BitmapTextBatchTracker>(); local
[all...]
H A DGrBezierEffect.cpp40 const ConicBatchTracker& local = bt.cast<ConicBatchTracker>(); variable
41 if (kUniform_GrGPInput == local.fInputColorType && local.fColor != fColor) {
43 GrColorToRGBAFloat(local.fColor, c);
45 fColor = local.fColor;
47 if (0xff != local.fCoverageScale && fCoverageScale != local.fCoverageScale) {
48 pdman.set1f(fCoverageScaleUniform, GrNormalizeByteToFloat(local.fCoverageScale));
49 fCoverageScale = local.fCoverageScale;
81 const ConicBatchTracker& local local
176 const ConicBatchTracker& local = bt.cast<ConicBatchTracker>(); local
215 ConicBatchTracker* local = bt->cast<ConicBatchTracker>(); local
269 const QuadBatchTracker& local = bt.cast<QuadBatchTracker>(); variable
310 const QuadBatchTracker& local = args.fBT.cast<QuadBatchTracker>(); local
391 const QuadBatchTracker& local = bt.cast<QuadBatchTracker>(); local
430 QuadBatchTracker* local = bt->cast<QuadBatchTracker>(); local
484 const CubicBatchTracker& local = bt.cast<CubicBatchTracker>(); variable
511 const CubicBatchTracker& local = args.fBT.cast<CubicBatchTracker>(); local
623 const CubicBatchTracker& local = bt.cast<CubicBatchTracker>(); local
658 CubicBatchTracker* local = bt->cast<CubicBatchTracker>(); local
[all...]
/external/zlib/src/
H A Dcrc32.c33 #define local static macro
40 local unsigned long crc32_little OF((unsigned long,
42 local unsigned long crc32_big OF((unsigned long,
50 local unsigned long gf2_matrix_times OF((unsigned long *mat,
52 local void gf2_matrix_square OF((unsigned long *square, unsigned long *mat));
53 local uLong crc32_combine_ OF((uLong crc1, uLong crc2, z_off64_t len2));
58 local volatile int crc_table_empty = 1;
59 local z_crc_t FAR crc_table[TBLS][256];
60 local void make_crc_table OF((void));
62 local voi
[all...]
/external/compiler-rt/test/asan/TestCases/
H A Dstack-use-after-return.cc41 char local[kSize]; local
42 return Ident(local);
52 // CHECK: 'local' <== Memory access at offset {{16|32}} is inside this variable
56 // THREAD: 'local' <== Memory access at offset {{16|32}} is inside this variable
/external/mtpd/
H A Dmtpd.h33 uint16_t local; member in struct:sockaddr_pppopns
44 } local, remote; member in struct:sockaddr_pppolac
/external/compiler-rt/test/asan/TestCases/Windows/
H A Dqueue_user_work_item.cc27 int local; local

Completed in 771 milliseconds

1234567891011>>