HomeSort by relevance Sort by last modified time
    Searched full:requested (Results 26 - 50 of 11551) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/webrtc/webrtc/modules/video_capture/
device_info_impl.cc 122 const VideoCaptureCapability& requested,
166 const int32_t diffWidth = capability.width - requested.width;
167 const int32_t diffHeight = capability.height - requested.height;
168 const int32_t diffFrameRate = capability.maxFPS - requested.maxFPS;
170 const int32_t currentbestDiffWith = bestWidth - requested.width;
171 const int32_t currentbestDiffHeight = bestHeight - requested.height;
172 const int32_t currentbestDiffFrameRate = bestFrameRate - requested.maxFPS;
191 diffFrameRate >= currentbestDiffFrameRate)) // Current frame rate is lower than requested. This is better.
197 if (bestRawType != requested.rawType
198 && requested.rawType != kVideoUnknow
    [all...]
  /external/syslinux/gpxe/src/config/
config.c 60 * Drag in all requested console types
87 * Drag in all requested network protocols
95 * Drag in all requested PXE support
106 * Drag in all requested download protocols
129 * Drag in all requested SAN boot protocols
143 * Drag in all requested resolvers
151 * Drag in all requested image formats
197 * Drag in all requested commands
212 /* IWMGMT_CMD is brought in by net80211.c if requested */
config_romprefix.c 19 * Provide UNDI loader if PXE stack is requested
  /frameworks/base/core/jni/android/graphics/
CreateJavaOutputStreamAdaptor.cpp 67 jint requested = 0; local
69 requested = fCapacity;
71 // This is safe because requested is clamped to (jint)
73 requested = static_cast<jint>(size);
77 gInputStream_readMethodID, fJavaByteArray, 0, requested);
197 jint requested = 0; local
199 requested = fCapacity;
201 // This is safe because requested is clamped to (jint)
203 requested = static_cast<jint>(size);
206 env->SetByteArrayRegion(storage, 0, requested,
    [all...]
  /external/selinux/libselinux/src/
checkAccess.c 80 int selinux_check_passwd_access(access_vector_t requested)
98 requested,
101 if ((retval == 0) && ((requested & avd.allowed) == requested)) {
115 int checkPasswdAccess(access_vector_t requested)
117 return selinux_check_passwd_access(requested);
compute_av.c 16 access_vector_t requested,
42 unmap_class(tclass), unmap_perm(tclass, requested));
80 access_vector_t requested,
87 requested, &lavd);
107 access_vector_t requested,
121 requested, avd);
134 access_vector_t requested, struct av_decision *avd)
140 requested, &lavd);
  /hardware/libhardware/modules/camera/3_4/metadata/
control.h 145 // Get the requested setting for this control.
146 T requested; local
147 int res = SingleTagValue(metadata, delegate_->tag(), &requested);
149 // Nothing requested of this control, that's fine.
157 // Check that the requested setting is in the supported options.
163 return options_->IsSupported(requested);
173 // Get the requested value.
174 T requested; local
175 int res = SingleTagValue(metadata, delegate_->tag(), &requested);
177 // Nothing requested of this control, nothing to do
    [all...]
  /external/clang/test/SemaCXX/
align_value.cpp 20 // expected-error@+1 {{requested alignment is not a power of 2}}
24 // expected-note@+1 {{in instantiation of template class 'nope<long double, 4>' requested here}}
instantiate-blocks.cpp 28 foo(100, 'a'); // expected-note {{in instantiation of function template specialization 'foo<int, char>' requested here}}
30 noret((float)0.0, double(0.0)); // expected-note {{in instantiation of function template specialization 'noret<float, double>' requested here}}
operator-arrow-temporary.cpp 18 void f() { Accessor acc; acc->doit(); } // expected-note {{requested here}}
  /external/clang/test/SemaTemplate/
instantiate-member-initializers.cpp 10 A<void*> a1; // expected-note{{in instantiation of member function 'A<void *>::A' requested here}}
20 B<int> b0; // expected-note {{in instantiation of member function 'B<int>::B' requested here}}
overloaded-functions.cpp 16 // expected-note@-1 {{in instantiation of function template specialization '(anonymous namespace)::Foo<-1>' requested here}}
30 // expected-note@-1 {{in instantiation of function template specialization 'Bar<-1>' requested here}}
crash-unparsed-exception.cpp 16 B<int> b; //expected-note{{in instantiation of template class 'B<int>' requested here}}
  /external/selinux/libselinux/man/man3/
avc_has_perm.3 17 .BI "security_class_t " tclass ", access_vector_t " requested ,
24 .BI "security_class_t " tclass ", access_vector_t " requested ,
31 .BI "security_class_t " tclass ", access_vector_t " requested ,
46 .I requested
78 .IR requested ,
111 If requested permissions are granted, zero is returned. If requested permissions are denied or an error occurred, \-1 is returned and
124 A requested permission was denied.
  /art/runtime/interpreter/mterp/arm64/
op_aget_object.S 11 GET_VREG w1, w3 // w1<- vCC (requested index)
  /art/runtime/interpreter/mterp/x86_64/
op_aget_object.S 10 GET_VREG OUT_32_ARG1, %rcx # ecx <- vCC (requested index)
  /development/tools/privapp_permissions/
README 4 a list of signature|privileged permissions that are requested by
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
res_config.h 7 #define CHECK_SRVR_ADDR 1 /* confirm that the server requested sent the reply */
  /external/clang/test/CXX/over/over.match/over.match.best/over.best.ics/over.ics.list/
p6.cpp 13 A<int>::foo({}); // expected-note {{requested here}}
  /external/clang/test/SemaObjC/
property-expression-error.m 16 &object.index; // expected-error {{address of property expression requested}}
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
CacheBase.java 31 * @param key Cache lookup key for the requested instance
33 * @return The requested instance
38 * @param key Cache lookup key for the requested instance
40 * @return The requested instance
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
CacheBase.java 29 * @param key Cache lookup key for the requested instance
31 * @return The requested instance
36 * @param key Cache lookup key for the requested instance
38 * @return The requested instance
  /external/libcxx/test/std/utilities/optional/optional.syn/
optional_nullopt_t.fail.cpp 24 optional<nullopt_t> opt; // expected-note 1 {{requested here}}
25 optional<const nullopt_t> opt1; // expected-note 1 {{requested here}}
26 optional<nullopt_t &> opt2; // expected-note 1 {{requested here}}
27 optional<nullopt_t &&> opt3; // expected-note 1 {{requested here}}
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-scripts/
rgn-at11.d 6 # lma_region != region if not requested by script.
rgn-at9.d 6 # lma_region != region if requested by script.

Completed in 846 milliseconds

12 3 4 5 6 7 8 91011>>