Searched
full:uninitialized (Results
476 -
500 of
1841) sorted by null
<<11121314151617181920>>
/external/icu/icu4c/source/common/ |
unormcmp.cpp | 234 start1=stack1[level1].start; /*Not uninitialized*/ 236 s1=stack1[level1].s; /*Not uninitialized*/ 237 limit1=stack1[level1].limit; /*Not uninitialized*/ 257 start2=stack2[level2].start; /*Not uninitialized*/ 259 s2=stack2[level2].s; /*Not uninitialized*/ 260 limit2=stack2[level2].limit; /*Not uninitialized*/
|
ustrcase.cpp | 574 start1=stack1[level1].start; /*Not uninitialized*/ 576 s1=stack1[level1].s; /*Not uninitialized*/ 577 limit1=stack1[level1].limit; /*Not uninitialized*/ 597 start2=stack2[level2].start; /*Not uninitialized*/ 599 s2=stack2[level2].s; /*Not uninitialized*/ 600 limit2=stack2[level2].limit; /*Not uninitialized*/
|
/external/v8/src/ |
code-stubs.cc | 271 // Generate the uninitialized versions of the stub. 348 case CompareICState::UNINITIALIZED: 349 return ::v8::internal::UNINITIALIZED; 363 return ::v8::internal::UNINITIALIZED; 388 UNINITIALIZED); 413 case CompareICState::UNINITIALIZED:
|
/external/v8/src/ic/ |
ic.cc | 30 case UNINITIALIZED: 355 case UNINITIALIZED: 357 if (new_state == UNINITIALIZED || new_state == PREMONOMORPHIC) break; 437 State old_state = UNINITIALIZED; 438 State new_state = UNINITIALIZED; 494 if (state != UNINITIALIZED && !feedback->IsAllocationSite()) { 693 // uninitialized accesses. 842 case UNINITIALIZED: 912 case UNINITIALIZED: [all...] |
/art/runtime/verifier/ |
reg_type.cc | 342 result << "Unresolved And Uninitialized Reference" << ": " 350 result << "Unresolved And Uninitialized This Reference" 369 result << "Uninitialized Reference" << ": " << PrettyDescriptor(GetClass()); 376 result << "Uninitialized This Reference" << ": " << PrettyDescriptor(GetClass()); 686 // Something that is uninitialized hasn't had its constructor called. Unitialized types are
|
/external/valgrind/docs/internals/ |
3_2_BUGSTATUS.txt | 38 124478 glibc-fix memcheck reports uninitialized bytes on 44 128359 glibc-fix Please suppress the uninitialized bytes report 274 pending pending 124478 memcheck reports uninitialized bytes on 277 pending pending 128359 Please suppress the uninitialized bytes 315 uninitialized
|
/frameworks/av/media/libstagefright/filters/ |
MediaFilter.cpp | 49 : mState(UNINITIALIZED), 444 CHECK_EQ(mState, UNINITIALIZED); 679 if (mState != UNINITIALIZED) { 685 if (!keepComponentAllocated || mState == UNINITIALIZED) { 686 mState = UNINITIALIZED;
|
/frameworks/base/keystore/java/android/security/ |
KeyStore.java | 59 public static final int UNINITIALIZED = 3; 97 public enum State { UNLOCKED, LOCKED, UNINITIALIZED }; 145 case UNINITIALIZED: return State.UNINITIALIZED; 642 case UNINITIALIZED:
|
/external/mesa3d/docs/ |
relnotes-7.10.html | 358 <li>mesa: fix uninitialized var warning</li> [all...] |
/dalvik/docs/ |
java-constraints.html | 752 An instance initializer must only be invoked on an uninitialized 790 The must be no backwards branches with uninitialized instances on the 793 uninitialized instances.
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/ |
CHANGES | 52 which is passed an uninitialized object recovered from substrate and 179 - Fix to Set/SetOf type decoder to handle uninitialized scalar SetOf 233 anymore. They remain uninitialized acting as ASN.1 types. In
|
/external/clang/test/Analysis/ |
properties.m | 166 // <rdar://problem/9241180> Static analyzer doesn't detect uninitialized variable issues for property accesses 177 if (y && o.x) // expected-warning {{Property access on an uninitialized object pointer}} 183 self.x = y; // expected-warning {{Argument for property setter is an uninitialized value}}
|
new.cpp | 190 // Should warn that *n is uninitialized. 203 // Should warn that n is uninitialized.
|
/external/dbus/dbus/ |
dbus-sysdeps.h | 104 /** an invalid PID used to represent an uninitialized dbus_pid_t field */ 106 /** an invalid UID used to represent an uninitialized dbus_uid_t field */ 108 /** an invalid GID used to represent an uninitialized dbus_gid_t field */
|
/external/eigen/doc/ |
TutorialMatrixClass.dox | 82 \li \c a is a 3-by-3 matrix, with a plain float[9] array of uninitialized coefficients, 94 \li \c a is a 10x15 dynamic-size matrix, with allocated but currently uninitialized coefficients. 95 \li \c b is a dynamic-size vector of size 30, with allocated but currently uninitialized coefficients.
|
/external/google-breakpad/src/common/ |
scoped_ptr.h | 90 // There is no way to create an uninitialized scoped_ptr. 195 // There is no way to create an uninitialized scoped_array. 303 // There is no way to create an uninitialized scoped_ptr.
|
/frameworks/av/cmds/stagefright/ |
SimplePlayer.cpp | 38 : mState(UNINITIALIZED), 111 if (mState != UNINITIALIZED) { 237 mState = UNINITIALIZED;
|
/hardware/libhardware/tests/camera2/ |
camera2_utils.cpp | 320 mState(UNINITIALIZED), mDevice(NULL), 337 if (mState != UNINITIALIZED) return INVALID_OPERATION; 361 mState = UNINITIALIZED;
|
/external/v8/src/compiler/ |
js-generic-lowering.cc | 285 isolate(), p.language_mode(), UNINITIALIZED); 295 isolate(), NOT_INSIDE_TYPEOF, p.language_mode(), UNINITIALIZED); 308 isolate(), p.typeof_mode(), SLOPPY, UNINITIALIZED); 331 isolate(), language_mode, UNINITIALIZED); 343 isolate(), p.language_mode(), UNINITIALIZED); 358 isolate(), p.language_mode(), UNINITIALIZED); [all...] |
/external/ceres-solver/include/ceres/internal/ |
scoped_ptr.h | 68 // There is no way to create an uninitialized scoped_ptr. 200 // There is no way to create an uninitialized scoped_array.
|
/external/clang/docs/analyzer/ |
RegionStore.txt | 116 sometimes zero, for static data, or "uninitialized", for stack variables). 124 // "uninitialized" as the default value (and emit a
|
/external/eigen/Eigen/src/SparseLU/ |
SparseLU_gemm_kernel.h | 103 // workaround "may be used uninitialized in this function" warning 201 // workaround "may be used uninitialized in this function" warning
|
/external/libunwind/src/ppc32/ |
Gstep.c | 65 /* Unless the cursor or stack is corrupt or uninitialized, 108 /* Unless the cursor or stack is corrupt or uninitialized we've most
|
/external/skia/include/core/ |
SkRRect.h | 322 // use an explicitly sized type so we're sure the class is dense (no uninitialized bytes) 325 // uninitialized data
|
/external/skia/src/codec/ |
SkCodec.cpp | 210 // In this case, we will fill any uninitialized memory with a default value. 211 // Some subclasses will take care of filling any uninitialized memory on
|
Completed in 710 milliseconds
<<11121314151617181920>>