Searched defs:generation (Results 1 - 25 of 40) sorted by relevance

12

/external/chromium_org/third_party/skia/src/gpu/gl/
H A DGrGLSL.cpp12 bool GrGetGLSLGeneration(const GrGLInterface* gl, GrGLSLGeneration* generation) { argument
13 SkASSERT(generation);
22 *generation = k150_GrGLSLGeneration;
24 *generation = k140_GrGLSLGeneration;
26 *generation = k130_GrGLSLGeneration;
28 *generation = k110_GrGLSLGeneration;
34 *generation = k110_GrGLSLGeneration;
/external/skia/src/gpu/gl/
H A DGrGLSL.cpp12 bool GrGetGLSLGeneration(const GrGLInterface* gl, GrGLSLGeneration* generation) { argument
13 SkASSERT(NULL != generation);
22 *generation = k150_GrGLSLGeneration;
24 *generation = k140_GrGLSLGeneration;
26 *generation = k130_GrGLSLGeneration;
28 *generation = k110_GrGLSLGeneration;
34 *generation = k110_GrGLSLGeneration;
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dportallocatorsessionproxy.h97 virtual void set_generation(uint32 generation) { argument
99 impl_->set_generation(generation);
102 virtual uint32 generation() { function in class:cricket::PortAllocatorSessionProxy
104 return impl_->generation();
H A Dcandidate.h55 uint32 generation, const std::string& foundation)
58 type_(type), network_name_(network_name), generation_(generation),
114 // Candidates in a new generation replace those in the old generation.
115 uint32 generation() const { return generation_; } function in class:cricket::Candidate
116 void set_generation(uint32 generation) { generation_ = generation; } argument
51 Candidate(const std::string& id, int component, const std::string& protocol, const rtc::SocketAddress& address, uint32 priority, const std::string& username, const std::string& password, const std::string& type, const std::string& network_name, uint32 generation, const std::string& foundation) argument
H A Dportallocator.h106 virtual uint32 generation() { return generation_; } function in class:cricket::PortAllocatorSession
107 virtual void set_generation(uint32 generation) { generation_ = generation; } argument
H A Dport.h185 // Identifies the generation that this port was created in.
186 uint32 generation() { return generation_; } function in class:cricket::Port
187 void set_generation(uint32 generation) { generation_ = generation; } argument
/external/chromium_org/gpu/command_buffer/common/
H A Dcommand_buffer.h29 generation(0) {
54 // Generation index of this state. The generation index is incremented every
57 uint32 generation; member in struct:gpu::CommandBuffer::State
/external/chromium_org/jingle/glue/
H A Dutils.cc46 value.SetInteger("generation", candidate.generation());
71 int generation = 0; local
80 !dic_value->GetInteger("generation", &generation)) {
90 candidate->set_generation(generation);
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DFontFallbackList.h80 // FIXME: It should be possible to combine fontSelectorVersion and generation.
82 unsigned generation() const { return m_generation; } function in class:blink::FontFallbackList
H A DFontCache.cpp261 unsigned short FontCache::generation() function in class:blink::FontCache
/external/e2fsprogs/misc/
H A Dlsattr.c80 unsigned long generation; local
88 if (fgetversion (name, &generation) == -1) {
94 printf ("%5lu ", generation);
/external/libunwind/include/tdep-ia64/
H A Dscript.h73 uint32_t generation; /* generation number */ member in struct:ia64_script_cache
/external/chromium_org/remoting/protocol/
H A Djingle_messages.cc65 element->Attr(QName(kEmptyNamespace, "generation"));
69 int generation; local
74 !base::StringToInt(generation_str, &generation)) {
86 candidate->candidate.set_generation(generation);
108 result->SetAttr(QName(kEmptyNamespace, "generation"),
109 base::IntToString(candidate.candidate.generation()));
/external/chromium_org/v8/src/
H A Dcompilation-cache.cc45 Handle<CompilationCacheTable> CompilationSubCache::GetTable(int generation) { argument
46 DCHECK(generation < generations_);
48 if (tables_[generation]->IsUndefined()) {
50 tables_[generation] = *result;
53 CompilationCacheTable::cast(tables_[generation]);
66 // Set the first generation as unborn.
92 // Probe the script generation tables. Make sure not to leak handles
95 for (int generation = 0; generation < generations(); generation
151 int generation; local
231 int generation; local
272 int generation; local
[all...]
/external/chromium_org/third_party/leveldatabase/src/db/
H A Dskiplist_test.cc138 // gen is a generation number for key
142 // generation number inserted for that key, and sets hash to Hash(key,gen).
145 // generation number for each key. We then iterate, including random
187 // Per-key generation
189 port::AtomicPointer generation[K]; member in struct:leveldb::ConcurrentTest::State
191 generation[k].Release_Store(reinterpret_cast<void*>(v));
194 return reinterpret_cast<intptr_t>(generation[k].Acquire_Load());
250 // Note that generation 0 is never inserted, so it is ok if
/external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/
H A DSkPdfNativeDoc.cpp176 // TODO(edisonn): generation ignored for now (used in pdfs with updates)
177 // int generation = (int)token.intValue();
294 int generation = (int)token.intValue(); local
306 this->addCrossSectionInfo(startId + i, generation, offset, *token.c_str() == 'f');
363 void SkPdfNativeDoc::addCrossSectionInfo(int id, int generation, int offset, bool isFreed) { argument
399 "reading generation", NULL, NULL);
415 // TODO(edisonn): verify that the generation is the right one
416 if (!generationObj.isInteger() /* || generation != generationObj.intValue()*/) {
418 "readObject: unexpected generation",
535 // TODO(edisonn): generation/update
[all...]
H A DSkPdfNativeTokenizer.cpp715 SkPdfNativeObject generation; local
716 start = nextObject(start, end, &generation, allocator, doc);
721 if (value->isInteger() && generation.isInteger() &&
726 (unsigned int)generation.intValue(),
728 // PUT_TRACK_PARAMETERS_OBJ2(value, &generation)
/external/libunwind/include/
H A Dlibunwind-dynamic.h153 uint32_t generation; member in struct:unw_dyn_info_list
/external/llvm/lib/Transforms/Scalar/
H A DEarlyCSE.cpp284 /// keep track of a generation count of the read, which is compared against
285 /// the current generation count. The current generation count is
295 /// of read-only call values. It uses the same generation count as loads.
299 /// CurrentGeneration - This is the current generation of the memory value.
334 // values, loads, and calls as well as the generation. There is a child
351 void childGeneration(unsigned generation) { ChildGeneration = generation; } argument
471 // generation, replace this instruction.
498 // generation, replac
[all...]
/external/skia/experimental/PdfViewer/pdfparser/native/
H A DSkPdfNativeDoc.cpp176 // TODO(edisonn): generation ignored for now (used in pdfs with updates)
177 // int generation = (int)token.intValue();
294 int generation = (int)token.intValue(); local
306 this->addCrossSectionInfo(startId + i, generation, offset, *token.c_str() == 'f');
363 void SkPdfNativeDoc::addCrossSectionInfo(int id, int generation, int offset, bool isFreed) { argument
399 "reading generation", NULL, NULL);
415 // TODO(edisonn): verify that the generation is the right one
416 if (!generationObj.isInteger() /* || generation != generationObj.intValue()*/) {
418 "readObject: unexpected generation",
535 // TODO(edisonn): generation/update
[all...]
H A DSkPdfNativeTokenizer.cpp715 SkPdfNativeObject generation; local
716 start = nextObject(start, end, &generation, allocator, doc);
721 if (value->isInteger() && generation.isInteger() &&
726 (unsigned int)generation.intValue(),
728 // PUT_TRACK_PARAMETERS_OBJ2(value, &generation)
/external/qemu/distrib/sdl-1.2.15/src/video/ipod/
H A DSDL_ipodvideo.c64 static long generation = 0; variable
128 generation = iPod_GetGeneration();
262 if (dbgout) fprintf (dbgout, "Generation: %ld\n", generation);
264 if (generation >= 40000) {
294 if ((generation >= 60000) && (generation < 70000)) {
/external/chromium_org/net/http/
H A Dhttp_cache.cc568 // generation number. During playback, multiple fetches for the same
569 // item will use the same generation number and pull the proper
571 int generation = 0; local
574 generation = (*playback_cache_map_)[url];
575 (*playback_cache_map_)[url] = generation + 1;
578 std::string result = base::IntToString(generation);
/external/kernel-headers/original/uapi/linux/
H A Dfirewire-cdev.h75 * @generation: New bus generation
93 __u32 generation; member in struct:fw_cdev_event_bus_reset
151 * @generation: Bus generation in which the request is valid
171 * @generation pertain to that card. Destination node ID and bus generation may
189 * card index, node ID, and generation for outbound requests.
199 __u32 generation; member in struct:fw_cdev_event_request2
497 * @generation
511 __u32 generation; member in struct:fw_cdev_send_request
998 __u32 generation; member in struct:fw_cdev_send_stream_packet
1021 __u32 generation; member in struct:fw_cdev_send_phy_packet
[all...]
/external/chromium_org/base/debug/
H A Dtrace_event_impl.cc1065 int generation() const { return generation_; }
1093 generation_(trace_log->generation()) {
1188 // Return the chunk to the buffer only if the generation matches.
1192 // find the generation mismatch and delete this buffer soon.
1699 int generation = this->generation();
1728 Bind(&TraceLog::FlushCurrentThread, Unretained(this), generation));
1732 Bind(&TraceLog::OnFlushTimeout, Unretained(this), generation),
1737 FinishFlush(generation);
1771 void TraceLog::FinishFlush(int generation) {
1817 OnFlushTimeout(int generation) argument
[all...]

Completed in 981 milliseconds

12