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

12 3 4 5

  /external/replicaisland/src/com/replica/replicaisland/
PhysicsComponent.java 63 if (surfaceNormal.length2() > 0.0f) {
78 if (newVelocity.length2() < inertiaSquared) {
AABoxCollisionVolume.java 110 if (mWidthHeight.length2() > 0) {
LaunchProjectileComponent.java 155 if (Utils.close(mWorkingVector.length2(), 0.0f)) {
LifetimeComponent.java 115 if (parentObject.getBackgroundCollisionNormal().length2() > 0.0f) {
SphereCollisionVolume.java 119 final float distance2 = mWorkspaceVector.length2();
  /external/chromium_org/third_party/icu/source/common/
ustring.cpp 685 const UChar *s2, int32_t length2,
695 if(length1<0 && length2<0) {
717 /* special handling for strncmp, assume length1==length2>=0 but also check for NUL */
751 if(length2<0) {
752 length2=u_strlen(s2);
755 /* limit1=start1+min(lenght1, length2) */
756 if(length1<length2) {
759 } else if(length1==length2) {
762 } else /* length1>length2 */ {
764 limit1=start1+length2;
    [all...]
ustrcase.cpp 471 const UChar *s2, int32_t length2,
515 if(length2==-1) {
518 limit2=s2+length2;
770 const UChar *s2, int32_t length2,
777 if(s1==NULL || length1<-1 || s2==NULL || length2<-1) {
781 return u_strcmpFold(s1, length1, s2, length2,
  /external/icu/icu4c/source/common/
ustring.cpp 685 const UChar *s2, int32_t length2,
695 if(length1<0 && length2<0) {
717 /* special handling for strncmp, assume length1==length2>=0 but also check for NUL */
751 if(length2<0) {
752 length2=u_strlen(s2);
755 /* limit1=start1+min(lenght1, length2) */
756 if(length1<length2) {
759 } else if(length1==length2) {
762 } else /* length1>length2 */ {
764 limit1=start1+length2;
    [all...]
ustrcase.cpp 471 const UChar *s2, int32_t length2,
515 if(length2==-1) {
518 limit2=s2+length2;
770 const UChar *s2, int32_t length2,
777 if(s1==NULL || length1<-1 || s2==NULL || length2<-1) {
781 return u_strcmpFold(s1, length1, s2, length2,
  /external/chromium_org/third_party/icu/source/test/cintltst/
trie2test.c 547 int32_t length1, length2, length3; local
607 length2=utrie2_serialize(trie, storage, sizeof(storage), &errorCode);
616 if(length1!=length2) {
633 uprv_memset(swapped, 0x55, length2);
637 if(U_FAILURE(errorCode) || swappedLength!=length2) {
644 swappedLength=utrie2_swap(ds, storage, length2, swapped, &errorCode);
646 if(U_FAILURE(errorCode) || swappedLength!=length2) {
653 uprv_memset(storage, 0xaa, length2);
657 if(U_FAILURE(errorCode) || swappedLength!=length2) {
664 swappedLength=utrie2_swap(ds, swapped, length2, storage, &errorCode)
    [all...]
udatatst.c 1396 int32_t length, dataLength, length2, headerLength; local
    [all...]
  /external/icu/icu4c/source/test/cintltst/
trie2test.c 547 int32_t length1, length2, length3; local
607 length2=utrie2_serialize(trie, storage, sizeof(storage), &errorCode);
616 if(length1!=length2) {
633 uprv_memset(swapped, 0x55, length2);
637 if(U_FAILURE(errorCode) || swappedLength!=length2) {
644 swappedLength=utrie2_swap(ds, storage, length2, swapped, &errorCode);
646 if(U_FAILURE(errorCode) || swappedLength!=length2) {
653 uprv_memset(storage, 0xaa, length2);
657 if(U_FAILURE(errorCode) || swappedLength!=length2) {
664 swappedLength=utrie2_swap(ds, swapped, length2, storage, &errorCode)
    [all...]
udatatst.c 1399 int32_t length, dataLength, length2, headerLength; local
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/asm/
ByteVector.java 288 int length2 = length + size; local
289 byte[] newData = new byte[length1 > length2 ? length1 : length2];
  /external/compiler-rt/lib/asan/
asan_report.h 50 const char *offset2, uptr length2, StackTrace *stack);
asan_interceptors.cc 64 const char *offset2, uptr length2) {
65 return !((offset1 + length1 <= offset2) || (offset2 + length2 <= offset1));
67 #define CHECK_RANGES_OVERLAP(name, _offset1, length1, _offset2, length2) do { \
70 if (RangesOverlap(offset1, length1, offset2, length2)) { \
73 offset2, length2, &stack); \
  /external/chromium_org/ppapi/tests/
test_browser_font.cc 55 int32_t length2 = font.MeasureText(pp::BrowserFontTextRun("WWWWWWWW")); local
57 ASSERT_TRUE(length2 >= length1 * 2);
  /external/skia/samplecode/
SampleText.cpp 61 SkDEBUGCODE(size_t length2 =) paint.breakText(text, length, width, &mm);
62 SkASSERT(length2 == length);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/
InflaterOutputStreamTest.java 179 int length2 = bestDeflater.deflate(compressedBytes, length1, compressedBytes.length - length1); local
194 for (int i = length1; i < length2 * 2; i++) {
  /external/tcpdump/
print-ospf.c 836 register u_int length2; local
857 length2 = EXTRACT_16BITS(&op->ospf_len);
858 dptr = (u_char *)op + length2;
863 length2 += op->ospf_authdata[3];
865 if (length2 >= length) {
874 length2 = EXTRACT_16BITS(dptr);
875 printf(", length: %u", length2);
    [all...]
  /external/google-diff-match-patch/name/fraser/neil/plaintext/
diff_match_patch.java 2345 public int length2; field in class:Patch
    [all...]
  /external/chromium_org/courgette/
streams.cc 237 // <version><N><length1><length2>...<lengthN>
331 // <version><N><length1><length2>...<lengthN>
  /external/chromium_org/third_party/icu/source/test/intltest/
idnaref.h 201 * @param length2 Length of second source string, or -1 if NUL-terminated.
217 const UChar *s2, int32_t length2,
  /external/clang/test/Analysis/
keychainAPI.m 192 UInt32 length2;
196 &attrList, &length2, &outData2);
  /external/icu/icu4c/source/test/intltest/
idnaref.h 201 * @param length2 Length of second source string, or -1 if NUL-terminated.
217 const UChar *s2, int32_t length2,

Completed in 1073 milliseconds

12 3 4 5