Searched defs:version (Results 251 - 275 of 1603) sorted by relevance

<<11121314151617181920>>

/external/oprofile/libop/
H A Dop_sample_file.h23 u32 version; member in struct:opd_header
/external/pdfium/core/src/fxcodec/libjpeg/
H A Dfpdfapi_jdapimin.c31 jpeg_CreateDecompress (j_decompress_ptr cinfo, int version, size_t structsize) argument
35 /* Guard against version mismatches between library and caller. */
37 if (version != JPEG_LIB_VERSION)
38 ERREXIT2(cinfo, JERR_BAD_LIB_VERSION, JPEG_LIB_VERSION, version);
/external/qemu/distrib/jpeg-6b/
H A Djdapimin.c30 jpeg_CreateDecompress (j_decompress_ptr cinfo, int version, size_t structsize) argument
34 /* Guard against version mismatches between library and caller. */
36 if (version != JPEG_LIB_VERSION)
37 ERREXIT2(cinfo, JERR_BAD_LIB_VERSION, JPEG_LIB_VERSION, version);
/external/qemu/distrib/sdl-1.2.15/src/audio/mint/
H A DSDL_mintaudio_mcsn.h8 version 2 of the License, or (at your option) any later version.
34 unsigned short version; /* Version */ member in struct:__anon29386
/external/qemu/distrib/sdl-1.2.15/src/video/xbios/
H A DSDL_xbios_tveille.h8 version 2 of the License, or (at your option) any later version.
38 unsigned long version; member in struct:__anon29624
/external/qemu/target-i386/
H A Dhax-i386.h5 ** License version 2, as published by the Free Software Foundation, and
41 uint32_t version; member in struct:hax_state
62 int hax_mod_version(struct hax_state *hax, struct hax_module_version *version);
/external/skia/src/sfnt/
H A DSkOTTable_EBSC.h24 SK_OT_Fixed version; member in struct:SkOTTableEmbeddedBitmapScaling
H A DSkOTTable_maxp_TT.h18 SK_OT_Fixed version; member in struct:SkOTTableMaximumProfile_TT
H A DSkTTCFHeader.h23 SK_OT_Fixed version; member in struct:SkTTCFHeader
48 };// version2ext (if version == version_2)
/external/smack/src/org/jivesoftware/smackx/entitycaps/packet/
H A DCapsExtension.java30 public CapsExtension(String node, String version, String hash) { argument
32 this.ver = version;
/external/tcpdump/
H A Dprint-vrrp.c7 * - print version, type string and packet length
90 int version, type, auth_type; local
94 version = (bp[0] & 0xf0) >> 4;
97 printf("VRRPv%u, %s", version, type_s);
100 if (version != 2 || type != VRRP_TYPE_ADVERTISEMENT)
/external/webrtc/src/modules/audio_processing/ns/
H A Dnoise_suppression.c19 const char version[] = "NS 2.2.0"; local
20 const short versionLen = (short)strlen(version) + 1; // +1: null-termination
30 strncpy(versionStr, version, versionLen);
H A Dnoise_suppression_x.c19 const char version[] = "NS\t3.1.0"; local
20 const short versionLen = (short)strlen(version) + 1; // +1: null-termination
30 strncpy(versionStr, version, versionLen);
/external/wpa_supplicant_8/hostapd/src/eap_common/
H A Deap_peap_common.c15 int peap_prfplus(int version, const u8 *key, size_t key_len, argument
34 if (version == 0) {
/external/wpa_supplicant_8/src/eap_common/
H A Deap_peap_common.c15 int peap_prfplus(int version, const u8 *key, size_t key_len, argument
34 if (version == 0) {
/external/wpa_supplicant_8/wpa_supplicant/src/eap_common/
H A Deap_peap_common.c15 int peap_prfplus(int version, const u8 *key, size_t key_len, argument
34 if (version == 0) {
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
H A DProviderTest.java56 assertEquals("Provider.id version", p
57 .getProperty("Provider.id version"), String.valueOf(p
148 if (key.equals("Provider.id version") && val.equals("1.0")) {
181 assertTrue(s1.contains("Provider.id version"));
303 MyProvider(String name, double version, String info) { argument
304 super(name, version, info);
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/
H A DMessageDigest_Impl2Test.java176 MyProvider(String name, double version, String info) { argument
177 super(name, version, info);
/external/apache-http/src/org/apache/http/
H A DProtocolVersion.java39 * Represents a protocol version, as specified in RFC 2616.
42 * for the protocol name. It defines a protocol version "SIP/2.0".
46 * This class defines a protocol version as a combination of
47 * protocol name, major version number, and minor version number.
54 * @version $Revision: 609106 $
69 /** Major version number of the protocol */
72 /** Minor version number of the protocol */
77 * Create a protocol version designator.
80 * @param major the major version numbe
253 greaterEquals(ProtocolVersion version) argument
268 lessEquals(ProtocolVersion version) argument
[all...]
/external/apache-http/src/org/apache/http/impl/client/
H A DRequestWrapper.java56 * @version $Revision: 674186 $
71 private ProtocolVersion version; field in class:RequestWrapper
85 this.version = null;
95 this.version = request.getProtocolVersion();
118 if (this.version != null) {
119 return this.version;
125 public void setProtocolVersion(final ProtocolVersion version) { argument
126 this.version = version;
/external/apache-http/src/org/apache/http/impl/cookie/
H A DRFC2109Spec.java156 int version = Integer.MAX_VALUE;
159 if (cookie.getVersion() < version) {
160 version = cookie.getVersion();
167 buffer.append(Integer.toString(version));
171 formatCookieAsVer(buffer, cookie, version);
181 int version = cookie.getVersion();
185 buffer.append(Integer.toString(version));
187 formatCookieAsVer(buffer, cookie, version);
196 * version 0
200 * @param version Th
202 formatParamAsVer(final CharArrayBuffer buffer, final String name, final String value, int version) argument
224 formatCookieAsVer(final CharArrayBuffer buffer, final Cookie cookie, int version) argument
[all...]
H A DRFC2965Spec.java187 final Cookie cookie, int version) {
188 super.formatCookieAsVer(buffer, cookie, version);
186 formatCookieAsVer(final CharArrayBuffer buffer, final Cookie cookie, int version) argument
/external/apache-http/src/org/apache/http/message/
H A DBasicLineFormatter.java61 * @version $Revision: 574185 $
104 * Formats a protocol version.
106 * @param version the protocol version to format
111 * @return the formatted protocol version
114 String formatProtocolVersion(final ProtocolVersion version, argument
118 return formatter.appendProtocolVersion(null, version).toString();
124 final ProtocolVersion version) {
125 if (version == null) {
127 ("Protocol version ma
123 appendProtocolVersion(final CharArrayBuffer buffer, final ProtocolVersion version) argument
158 estimateProtocolVersionLen(final ProtocolVersion version) argument
[all...]
/external/bison/
H A DGNUmakefile12 # the Free Software Foundation, either version 3 of the License, or
13 # (at your option) any later version.
47 _have-git-version-gen := \
48 $(shell test -f $(srcdir)/$(_build-aux)/git-version-gen && echo yes)
49 ifeq ($(_have-git-version-gen)0,yes$(MAKELEVEL))
55 && $(_build-aux)/git-version-gen \
56 .tarball-version \
57 $(git-version-gen-tag-sed-script))
60 $(info WARNING: unable to verify if $(VERSION) is the correct version)
64 # recompilation after 'make all'. But as long as changing the version
[all...]
/external/blktrace/btreplay/
H A Dbtrecord.h8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
66 * @version: Version information
72 __u64 version; member in struct:io_file_hdr
83 static inline void get_btversion(__u64 version, int *mjr, int *mnr, int *sub) argument
85 *mjr = (int)((version >> 16) & 0xff);
86 *mnr = (int)((version >> 8) & 0xff);
87 *sub = (int)((version >> 0) & 0xff);

Completed in 4307 milliseconds

<<11121314151617181920>>