/external/chromium_org/gpu/command_buffer/service/ |
mailbox_synchronizer.h | 81 unsigned int version; member in struct:gpu::gles2::MailboxSynchronizer::TextureVersion
|
/external/chromium_org/media/cast/net/rtp/ |
rtp_header_parser.cc | 51 const uint8 version = rtp_data_begin_[0] >> 6; local 52 if (version != 2) {
|
/external/chromium_org/media/formats/mpeg/ |
mpeg1_audio_stream_parser.h | 26 enum Version { 41 Version version; member in struct:media::MPEG1AudioStreamParser::Header
|
/external/chromium_org/net/cert/ |
signed_certificate_timestamp.cc | 26 return lhs->version < rhs->version; 34 CHECK(pickle->WriteInt(version)); 48 int version; local 56 if (!(iter->ReadInt(&version) && 68 sct->version = static_cast<Version>(version);
|
/external/chromium_org/net/disk_cache/simple/ |
simple_entry_format.h | 43 uint32 version; member in struct:disk_cache::SimpleFileHeader
|
/external/chromium_org/net/quic/crypto/ |
quic_server_info.cc | 69 int version = -1; local 70 if (!p.ReadInt(&iter, &version)) { 71 DVLOG(1) << "Missing version"; 75 if (version != kQuicCryptoConfigVersion) { 76 DVLOG(1) << "Unsupported version";
|
/external/chromium_org/sandbox/win/src/ |
process_mitigations.cc | 34 base::win::Version version = base::win::GetVersion(); 37 if (version >= base::win::VERSION_VISTA && 53 if (version >= base::win::VERSION_VISTA && 66 const bool return_on_fail = version >= base::win::VERSION_VISTA; 106 if (version < base::win::VERSION_WIN8) 172 base::win::Version version = base::win::GetVersion(); local 179 if (version < base::win::VERSION_WIN8) 188 if (version <= base::win::VERSION_VISTA 248 base::win::Version version = base::win::GetVersion(); local [all...] |
/external/chromium_org/sync/test/engine/ |
mock_model_type_sync_worker.cc | 77 // Overwrite the existing server version if this is the new highest version. 79 int64 version = old_version + version_offset; local 80 if (version > old_version) { 81 SetServerVersion(tag_hash, version); 87 data.response_version = version; 94 data.mtime = data.ctime + base::TimeDelta::FromSeconds(version); 106 int64 version = old_version + version_offset; local 107 if (version > old_version) { 108 SetServerVersion(tag_hash, version); 147 int64 version = GetServerVersion(client_tag_hash); local [all...] |
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/ |
IDBMetadata.h | 91 IDBDatabaseMetadata(const String& name, int64_t id, const String& version, int64_t intVersion, int64_t maxObjectStoreId) 94 , version(version) 102 String version; member in struct:blink::IDBDatabaseMetadata
|
IDBRequestTest.cpp | 137 const int64_t version = 1; local 144 IDBOpenDBRequest* request = IDBOpenDBRequest::create(scriptState(), callbacks, transactionId, version); 153 IDBOpenDBRequest* request = IDBOpenDBRequest::create(scriptState(), callbacks, transactionId, version);
|
/external/chromium_org/third_party/WebKit/Source/modules/webmidi/ |
MIDIPort.h | 57 String version() const { return m_version; } function in class:blink::MIDIPort 70 MIDIPort(MIDIAccess*, const String& id, const String& manufacturer, const String& name, MIDIPortTypeCode, const String& version);
|
/external/chromium_org/third_party/boringssl/src/crypto/x509/ |
pkcs7.c | 31 uint64_t version; local 60 !CBS_get_asn1_uint64(&signed_data, &version) || 66 if (version < 1) {
|
/external/chromium_org/third_party/boringssl/src/ssl/ |
s23_clnt.c | 52 * The licence and distribution terms for any publically available version or 124 /* When SSL_set_session is called, do NOT switch to the version-specific 125 * method table. The server may still negotiate a different version when 129 * version-specific tables. https://crbug.com/403378 */ 170 /* s->version=TLS1_VERSION; */ 270 int version = 0, version_major, version_minor; local 277 * to maintain "version capability" vector contiguous. So 283 version = TLS1_2_VERSION; 285 version = TLS1_1_VERSION; 288 version = TLS1_VERSION [all...] |
/external/chromium_org/third_party/freetype/src/sfnt/ |
ttbdf.c | 85 FT_UInt version = FT_NEXT_USHORT( p ); local 92 if ( version != 0x0001 ||
|
/external/chromium_org/third_party/freetype/src/truetype/ |
ttpload.c | 489 FT_UInt version, nn, num_records; local 506 version = FT_NEXT_USHORT( p ); 516 /* There are at least two fonts, HANNOM-A and HANNOM-B version */ 526 if ( version != 0 || num_records > 255 || record_size > 0x10001L )
|
/external/chromium_org/third_party/harfbuzz-ng/src/ |
hb-ot-head-table.hh | 56 return TRACE_RETURN (c->check_struct (this) && likely (version.major == 1)); 60 FixedVersion version; /* Version of the head table--currently member in struct:OT::head 61 * 0x00010000u for version 1.0. */
|
hb-ot-hhea-table.hh | 49 return TRACE_RETURN (c->check_struct (this) && likely (version.major == 1)); 53 FixedVersion version; /* 0x00010000u for version 1.0. */ member in struct:OT::hhea
|
/external/chromium_org/third_party/mesa/src/src/glsl/builtins/tools/ |
generate_builtins.py | 279 version = re.sub(r'_(glsl|vert|frag)$', '', profile) variable 280 if version.isdigit(): 281 check += 'state->language_version == ' + version 283 check += 'state->' + version + '_enable'
|
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
version.c | 27 #include "version.h" 31 * Override the context's GL version if the environment variable 33 * are point-separated version numbers, such as "3.0". 39 const char *version; local 43 version = getenv(env_var); 44 if (!version) { 48 n = sscanf(version, "%u.%u", &major, &minor); 50 fprintf(stderr, "error: invalid value for %s: %s\n", env_var, version); 54 ctx->Version = major * 10 + minor; 58 * Override the context's GLSL version if the environment variabl 66 const char *version; local [all...] |
/external/chromium_org/third_party/ots/src/ |
vdmx.h | 35 uint16_t version; member in struct:ots::OpenTypeVDMX
|
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/ |
font_factory.cc | 4 * Licensed under the Apache License, Version 2.0 (the "License"); 180 int32_t version = wfd->ReadFixed(Offset::kVersion); local 181 UNREFERENCED_PARAMETER(version);
|
/external/chromium_org/third_party/skia/src/gpu/gl/ |
GrGLContext.h | 22 * version, the GrGLStandard type of the context, and GLSL version. 49 GrGLVersion version() const { return fGLVersion; } function in class:GrGLContextInfo
|
/external/chromium_org/third_party/skia/src/sfnt/ |
SkOTTable_OS_2.h | 27 union Version { 28 SK_OT_USHORT version; member in union:SkOTTableOS2::Version 39 } version; member in struct:SkOTTableOS2 45 SK_COMPILE_ASSERT(sizeof(SkOTTableOS2::Version::VA) == 68, sizeof_SkOTTableOS2__VA_not_68); 46 SK_COMPILE_ASSERT(sizeof(SkOTTableOS2::Version::V0) == 78, sizeof_SkOTTableOS2__V0_not_78); 47 SK_COMPILE_ASSERT(sizeof(SkOTTableOS2::Version::V1) == 86, sizeof_SkOTTableOS2__V1_not_86); 48 SK_COMPILE_ASSERT(sizeof(SkOTTableOS2::Version::V2) == 96, sizeof_SkOTTableOS2__V2_not_96); 49 SK_COMPILE_ASSERT(sizeof(SkOTTableOS2::Version::V3) == 96, sizeof_SkOTTableOS2__V3_not_96); 50 SK_COMPILE_ASSERT(sizeof(SkOTTableOS2::Version::V4) == 96, sizeof_SkOTTableOS2__V4_not_96);
|
SkOTTable_gasp.h | 24 SK_OT_USHORT version; member in struct:SkOTTableGridAndScanProcedure 48 SymmetricGridfit, // Version 1 49 SymmetricSmoothing, // Version 1
|
SkOTTable_hhea.h | 24 SK_OT_Fixed version; member in struct:SkOTTableHorizontalHeader
|