Searched defs:unknown (Results 1 - 25 of 36) sorted by relevance

12

/external/libpng/contrib/libtests/
H A Dfakepng.c44 const unsigned char unknown[] = variable
56 put_chunk(unknown, sizeof unknown);
H A Dpngunknown.c2 /* pngunknown.c - test the read side unknown chunk handling
14 * allows the libpng unknown handling code to be tested by interpreting
33 /* Since this program tests the ability to change the unknown chunk handling
40 * still useful to set unknown chunk handling without either of these in order
175 int unknown; /* Chunk not known to libpng */ member in struct:__anon9082
178 int keep; /* unknown handling setting */
483 fprintf(stderr, "%s(%s): unknown text compression %d\n", d->file,
511 /* See the comments in png.h - use the default for unknown chunks,
514 if (chunk_info[chunk].unknown)
554 /* However if there is no support to store unknown chunk
575 png_unknown_chunkp unknown; local
858 check_handling(display *d, int def, png_uint_32 chunks, png_uint_32 known, png_uint_32 unknown, const char *position, int set_callback) argument
[all...]
/external/lzma/CPP/7zip/UI/Common/
H A DSetProperties.cpp29 HRESULT SetProperties(IUnknown *unknown, const CObjectVector<CProperty> &properties) argument
34 unknown->QueryInterface(IID_ISetProperties, (void **)&setProperties);
/external/drm_gralloc/
H A Dgralloc_drm_handle.h56 uint64_t unknown __attribute__((aligned(8))); member in struct:gralloc_drm_handle_t
/external/gptfdisk/
H A Dbsd.h43 enum BSDValidity {unknown, bsd_invalid, bsd}; enumerator in enum:BSDValidity
/external/llvm/include/llvm/Analysis/
H A DMemoryBuiltins.h162 SizeOffsetType unknown() { function in class:llvm::ObjectSizeOffsetVisitor
226 SizeOffsetEvalType unknown() { function in class:llvm::ObjectSizeOffsetEvaluator
/external/clang/lib/Basic/
H A DTargetInfo.cpp93 // Default to an unknown platform name.
94 PlatformName = "unknown";
459 // Eventually, an unknown constraint should just be treated as 'g'.
575 // add more constraints as we hit it. Eventually, an unknown
652 const Kind unknown = static_cast<Kind>(-1); local
659 .Default(unknown);
660 if (kind == unknown) return false;
/external/libcxxabi/src/
H A Dprivate_typeinfo.h66 unknown = 0, enumerator in enum:__cxxabiv1::__anon7865
91 // The following three paths are either unknown, public_path or not_public_path.
108 // is_dst_type_derived_from_static_type is either unknown, yes or no.
110 // Number of dst_type in tree. If 0, then that means unknown.
/external/protobuf/src/google/protobuf/
H A Dunknown_field_set_unittest.cc36 // tests handling of unknown fields throughout the system.
103 // unknown fields of every type.
321 // Test mixing known and unknown fields when parsing.
339 // Test that fields of the wrong wire type are treated like unknown fields
348 // All fields should have been interpreted as unknown, so the debug strings
390 // Test that fields of the wrong wire type are treated like unknown fields
399 // All fields should have been interpreted as unknown, so the debug strings
488 // Make sure an unknown field set has zero space used until a field is
532 UnknownFieldSet unknown; local
534 unknown
[all...]
/external/srtp/test/
H A Drtpw.c122 typedef enum { sender, receiver, unknown } program_type; enumerator in enum:__anon14467
136 program_type prog_type = unknown;
205 if (prog_type == unknown) {
326 printf("error: unknown security service requested\n");
/external/wpa_supplicant_8/hostapd/src/common/
H A Dieee802_11_common.c74 wpa_printf(MSG_EXCESSIVE, "unknown WMM "
151 wpa_printf(MSG_EXCESSIVE, "unknown vendor specific "
176 int unknown = 0; local
238 unknown++;
343 unknown++;
347 "ignored unknown element (id=%d elen=%d)",
359 return unknown ? ParseUnknown : ParseOK;
820 * Returns: Frequency in MHz or -1 if the specified channel is unknown
/external/wpa_supplicant_8/src/common/
H A Dieee802_11_common.c74 wpa_printf(MSG_EXCESSIVE, "unknown WMM "
151 wpa_printf(MSG_EXCESSIVE, "unknown vendor specific "
176 int unknown = 0; local
238 unknown++;
343 unknown++;
347 "ignored unknown element (id=%d elen=%d)",
359 return unknown ? ParseUnknown : ParseOK;
820 * Returns: Frequency in MHz or -1 if the specified channel is unknown
/external/wpa_supplicant_8/wpa_supplicant/src/common/
H A Dieee802_11_common.c74 wpa_printf(MSG_EXCESSIVE, "unknown WMM "
151 wpa_printf(MSG_EXCESSIVE, "unknown vendor specific "
176 int unknown = 0; local
238 unknown++;
343 unknown++;
347 "ignored unknown element (id=%d elen=%d)",
359 return unknown ? ParseUnknown : ParseOK;
820 * Returns: Frequency in MHz or -1 if the specified channel is unknown
/external/tinyxml/
H A Dxmltest.cpp601 TiXmlUnknown unknown; local
602 unknown.Parse( "<[unknown]>", 0, TIXML_ENCODING_UNKNOWN );
603 TiXmlUnknown unknownCopy( unknown );
607 XmlTest( "Copy/Assign: unknown copy.", "[unknown]", unknownCopy.Value() );
608 XmlTest( "Copy/Assign: unknown assign.", "[unknown]", unknownAssign.Value() );
879 TiXmlUnknown* unknown = docH.Child( 1 ).Unknown(); local
880 XmlTest( "Correct value of unknown
[all...]
/external/clang/test/SemaCXX/
H A Dwarn-consumed-analysis.cpp38 void callableWhenUnknown() const CALLABLE_WHEN("unconsumed", "unknown");
80 ConsumableClass<int> returnsUnknown() RETURN_TYPESTATE(unknown); variable
278 // Coerce all variables into the unknown state.
288 *var0; // expected-warning {{invalid invocation of method 'operator*' on object 'var0' while it is in the 'unknown' state}}
289 *var1; // expected-warning {{invalid invocation of method 'operator*' on object 'var1' while it is in the 'unknown' state}}
293 *var0; // expected-warning {{invalid invocation of method 'operator*' on object 'var0' while it is in the 'unknown' state}}
294 *var1; // expected-warning {{invalid invocation of method 'operator*' on object 'var1' while it is in the 'unknown' state}}
306 *var0; // expected-warning {{invalid invocation of method 'operator*' on object 'var0' while it is in the 'unknown' state}}
307 *var1; // expected-warning {{invalid invocation of method 'operator*' on object 'var1' while it is in the 'unknown' state}}
311 *var0; // expected-warning {{invalid invocation of method 'operator*' on object 'var0' while it is in the 'unknown' stat
[all...]
/external/kernel-headers/original/uapi/linux/
H A Dedd.h111 } __attribute__ ((packed)) unknown; member in union:edd_device_params::__anon6771
166 } __attribute__ ((packed)) unknown; member in union:edd_device_params::__anon6778
/external/clang/test/CXX/drs/
H A Ddr5xx.cpp49 const char *unknown = "\Q"; // expected-error {{unknown escape sequence}} member in namespace:dr505
412 const a) { // expected-error {{unknown type name 'a'}}
415 try {} catch (const n) {} // expected-error {{unknown type name 'n'}}
431 { for (const n // expected-error {{unknown type name 'n'}} expected-note {{}}
434 (void) [](const n) {}; // expected-error {{unknown type name 'n'}}
719 namespace dr571 { // dr571 unknown
/external/jsoncpp/chromium-overrides/src/lib_json/
H A Djson_value.cpp52 static const unsigned int unknown = (unsigned)-1; member in namespace:Json
80 * length is "unknown".
81 * @param length Length of the value. if equals to unknown, then it will be
87 unsigned int length = unknown )
89 if ( length == unknown )
/external/jsoncpp/src/lib_json/
H A Djson_value.cpp48 static const unsigned int unknown = (unsigned)-1; member in namespace:Json
76 * length is "unknown".
77 * @param length Length of the value. if equals to unknown, then it will be
83 unsigned int length = unknown )
85 if ( length == unknown )
/external/strace/
H A Dsyscall.c1263 static const struct_sysent unknown = { local
1269 tcp->s_ent = &unknown;
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DMemRegion.h1139 UnknownSpaceRegion *unknown; member in class:clang::ento::MemRegionManager
1145 ImmutableGlobals(nullptr), heap(nullptr), unknown(nullptr),
1174 /// getUnknownRegion - Retrieve the memory region associated with unknown
/external/clang/test/Analysis/
H A Dstring.c115 // Call a function with unknown effects, which should invalidate globals.
755 void strcmp_unknown_arg (char *unknown) { argument
756 clang_analyzer_eval(strcmp(unknown, unknown) == 0); // expected-warning{{TRUE}}
/external/fio/
H A Doptions.c3948 int i, ret, unknown; local
3954 for (ret = 0, i = 0, unknown = 0; i < num_opts; i++) {
3964 unknown++;
3974 if (unknown) {
/external/flac/include/FLAC/
H A Dformat.h823 /** Structure that is used when a metadata block of unknown type is loaded.
825 * correctly handle unknown metadata.
838 * then \a data.unknown must be used. */
854 FLAC__StreamMetadata_Unknown unknown; member in union:__anon4986::__anon4987
/external/icu/icu4c/source/i18n/
H A Dtimezone.cpp436 const TimeZone& unknown = getUnknown(); local
437 if (_UNKNOWN_ZONE == NULL) { // Cannot test (&unknown == NULL) because the
440 result = unknown.clone();

Completed in 889 milliseconds

12