HomeSort by relevance Sort by last modified time
    Searched refs:generation (Results 1 - 25 of 529) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/skia/src/gpu/gl/
GrGLGLSL.cpp 13 bool GrGLGetGLSLGeneration(const GrGLInterface* gl, GrGLSLGeneration* generation) {
14 SkASSERT(generation);
23 *generation = k420_GrGLSLGeneration;
25 *generation = k400_GrGLSLGeneration;
27 *generation = k330_GrGLSLGeneration;
29 *generation = k150_GrGLSLGeneration;
31 *generation = k140_GrGLSLGeneration;
33 *generation = k130_GrGLSLGeneration;
35 *generation = k110_GrGLSLGeneration;
41 *generation = k320es_GrGLSLGeneration
    [all...]
GrGLGLSL.h 20 * Gets the most recent GLSL Generation compatible with the OpenGL context.
22 bool GrGLGetGLSLGeneration(const GrGLInterface* gl, GrGLSLGeneration* generation);
  /external/skqp/src/gpu/gl/
GrGLGLSL.cpp 13 bool GrGLGetGLSLGeneration(const GrGLInterface* gl, GrGLSLGeneration* generation) {
14 SkASSERT(generation);
23 *generation = k420_GrGLSLGeneration;
25 *generation = k400_GrGLSLGeneration;
27 *generation = k330_GrGLSLGeneration;
29 *generation = k150_GrGLSLGeneration;
31 *generation = k140_GrGLSLGeneration;
33 *generation = k130_GrGLSLGeneration;
35 *generation = k110_GrGLSLGeneration;
41 *generation = k320es_GrGLSLGeneration
    [all...]
GrGLGLSL.h 20 * Gets the most recent GLSL Generation compatible with the OpenGL context.
22 bool GrGLGetGLSLGeneration(const GrGLInterface* gl, GrGLSLGeneration* generation);
  /frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
ThreadUtil.java 23 void updateItemCount(int generation, int itemCount);
25 void addTile(int generation, TileList.Tile<T> tile);
27 void removeTile(int generation, int position);
32 void refresh(int generation);
  /external/autotest/client/common_lib/cros/fake_device_server/
meta_handler.py 17 def __init__(self, generation):
20 @param generation: string unique token for this server (e.g. a UUID).
23 self._generation = generation
27 if ['generation'] == list(args):
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mips/
mips16e-jrc.s 1 # Test the generation of jalrc/jrc opcodes
mips16-jalx.s 1 # Test the generation of jalx opcodes
mips-jalx.s 1 # Test the generation of jalx opcodes
mips32@isa-override-1.d 2 #name: MIPS ISA override code generation
mips32r3@isa-override-1.d 2 #name: MIPS ISA override code generation
mips32r5@isa-override-1.d 2 #name: MIPS ISA override code generation
mips32r6@isa-override-1.d 2 #name: MIPS ISA override code generation
mips64r3@isa-override-1.d 2 #name: MIPS ISA override code generation
mips64r5@isa-override-1.d 2 #name: MIPS ISA override code generation
mips64r6@isa-override-1.d 2 #name: MIPS ISA override code generation
octeon3@isa-override-1.d 2 #name: MIPS ISA override code generation
octeon@isa-override-1.d 2 #name: MIPS ISA override code generation
r3000@isa-override-1.d 2 #name: MIPS ISA override code generation
r3900@isa-override-1.d 2 #name: MIPS ISA override code generation
  /external/toolchain-utils/bestflags/
steering.py 4 """The framework stage that produces the next generation of tasks to run.
15 """The core method template that produces the next generation of tasks to run.
17 This method waits for the results of the tasks from the previous generation.
19 next generation of tasks.
21 The main logic of producing the next generation from previous generation is
25 in the concrete subclasses of the class Generation to produce the next
26 application-specific generation. The steering method invokes the 'Next'
27 method, produces the next generation and submits the tasks in this generation
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
arm-it-bad-3.d 1 #name: Test automatic IT generation in Thumb-1 architectures.
  /frameworks/base/libs/hwui/font/
FontCacheHistoryTracker.cpp 27 glyph.startX, glyph.startY, glyph.bitmapW, glyph.bitmapH, glyph.generation);
32 log.appendFormat(" glyph skipped in gen: %d\n", entry.glyph.generation);
43 glyph.generation);
65 entry.glyph.generation = generation;
78 glyph.generation = generation;
88 glyph.generation = generation;
97 generation++
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/util/
ExpirableCache.java 94 * The current generation of items added to the cache.
96 * <p>Items in the cache can belong to a previous generation, but in that case they would be
101 private final AtomicInteger generation; field in class:ExpirableCache
107 generation = new AtomicInteger(0);
204 generation.incrementAndGet();
213 return new GenerationalCachedValue<V>(value, generation);
237 /** Cached values storing the generation at which they were added. */
243 /** The generation at which the value was added to the cache. */
244 private final int generation; field in class:ExpirableCache.GenerationalCachedValue
245 /** The atomic integer storing the current generation of the cache it belongs to. *
    [all...]
  /external/tensorflow/tensorflow/stream_executor/
temporary_memory_manager.cc 38 const DeviceMemoryBase& device_memory, uint64 generation, bool must_exist) {
79 // If the allocation generation did not match, it's vacuously true.
84 uint64 generation) const {
90 return it->second.allocation_generation == generation;
105 uint64 generation; local
111 generation = ++generation_;
113 records_[device_memory] = {generation,
119 "generation %llu",
120 stream_, device_memory.opaque(), byte_size, generation);
122 new TemporaryDeviceMemoryBase(stream_, device_memory, generation));
    [all...]

Completed in 387 milliseconds

1 2 3 4 5 6 7 8 91011>>