HomeSort by relevance Sort by last modified time
    Searched refs:LL (Results 101 - 125 of 871) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/valgrind/main/callgrind/tests/
threads-use.stderr.exp 18 LL refs:
19 LL misses:
20 LL miss rate:
  /system/core/libutils/
Timers.cpp 48 return nsecs_t(t.tv_sec)*1000000000LL + t.tv_nsec;
59 return nsecs_t(t.tv_sec)*1000000000LL + nsecs_t(t.tv_usec)*1000LL;
68 if (timeoutDelay > uint64_t((INT_MAX - 1) * 1000000LL)) {
71 timeoutDelayMillis = (timeoutDelay + 999999LL) / 1000000LL;
  /external/chromium_org/third_party/openssl/openssl/crypto/des/
des_locl.h 214 #define D_ENCRYPT(LL,R,S) { \
222 LL^= *(const DES_LONG *)(des_SP +u1); \
223 LL^= *(const DES_LONG *)(des_SP+0x200+u2); \
227 LL^= *(const DES_LONG *)(des_SP+0x400+u1); \
228 LL^= *(const DES_LONG *)(des_SP+0x600+u3); \
233 LL^= *(const DES_LONG *)(des_SP+0x100+u1); \
234 LL^= *(const DES_LONG *)(des_SP+0x300+u2); \
238 LL^= *(const DES_LONG *)(des_SP+0x500+u1); \
239 LL^= *(const DES_LONG *)(des_SP+0x700+u3); }
242 #define D_ENCRYPT(LL,R,S) {
    [all...]
  /external/openssl/crypto/des/
des_locl.h 214 #define D_ENCRYPT(LL,R,S) { \
222 LL^= *(const DES_LONG *)(des_SP +u1); \
223 LL^= *(const DES_LONG *)(des_SP+0x200+u2); \
227 LL^= *(const DES_LONG *)(des_SP+0x400+u1); \
228 LL^= *(const DES_LONG *)(des_SP+0x600+u3); \
233 LL^= *(const DES_LONG *)(des_SP+0x100+u1); \
234 LL^= *(const DES_LONG *)(des_SP+0x300+u2); \
238 LL^= *(const DES_LONG *)(des_SP+0x500+u1); \
239 LL^= *(const DES_LONG *)(des_SP+0x700+u3); }
242 #define D_ENCRYPT(LL,R,S) {
    [all...]
  /external/chromium_org/third_party/yasm/source/config/win/
stdint.h 27 #define INT64_C(value) value##LL
  /external/clang/test/CodeGen/
2002-07-30-UnionTest.c 19 A.B = 12301230123123LL;
  /external/fio/lib/
ieee754.c 44 significand = fnorm * ((1LL << significandbits) + 0.5f);
64 result = (i & ((1LL << significandbits) - 1)); // mask
65 result /= (1LL << significandbits); // convert back to float
70 shift = ((i >> significandbits) & ((1LL << expbits) - 1)) - bias;
  /external/chromium_org/sync/internal_api/public/base/
node_ordinal_unittest.cc 17 0LL,
18 1LL, -1LL,
19 2LL, -2LL,
20 3LL, -3LL,
  /external/clang/test/Analysis/
additive-folding.cpp 31 int b = a + 1LL;
156 clang_analyzer_eval((a + 2) <= (max + 1LL)); // expected-warning{{TRUE}}
157 clang_analyzer_eval((a - 2) > (min - 1LL)); // expected-warning{{TRUE}}
158 clang_analyzer_eval((a + 2LL) <= max); // expected-warning{{UNKNOWN}}
165 clang_analyzer_eval((a + 2) < (max + 1LL)); // expected-warning{{TRUE}}
166 clang_analyzer_eval((a - 2) >= (min - 1LL)); // expected-warning{{TRUE}}
167 clang_analyzer_eval((a - 2LL) >= min); // expected-warning{{UNKNOWN}}
173 clang_analyzer_eval((a + 2) != (max + 1LL)); // expected-warning{{TRUE}}
174 clang_analyzer_eval((a + 2LL) == (max + 1LL)); // expected-warning{{UNKNOWN}
    [all...]
  /external/chromium_org/ui/base/text/
bytes_formatting.cc 72 3 * (1LL << 10), // DATA_UNITS_KIBIBYTE,
73 2 * (1LL << 20), // DATA_UNITS_MEBIBYTE,
74 1LL << 30, // DATA_UNITS_GIBIBYTE,
75 1LL << 40, // DATA_UNITS_TEBIBYTE,
76 1LL << 50 // DATA_UNITS_PEBIBYTE,
  /external/e2fsprogs/contrib/
fallocate.c 62 return -1LL;
66 return -1LL;
84 return -1LL;
92 loff_t length = -2LL;
123 if (length == -2LL) {
  /frameworks/base/core/jni/
android_os_SystemClock.cpp 68 return tm.tv_sec * 1000LL + tm.tv_nsec / 1000000;
73 return tv.tv_sec * 1000LL + tv.tv_usec / 1000;
88 return tm.tv_sec * 1000000LL + tm.tv_nsec / 1000;
93 return tv.tv_sec * 1000000LL + tv.tv_nsec / 1000;
106 return tv.tv_sec * 1000000LL + tv.tv_usec;
  /external/chromium_org/third_party/openssl/openssl/crypto/bf/
bf_locl.h 164 #define BF_ENC(LL,R,KEY,Pi) (\
165 LL^=KEY[Pi], \
170 LL^=t \
193 #define BF_ENC(LL,R,S,P) ( \
194 LL^=P, \
195 LL^= (((*(BF_LONG *)((unsigned char *)&(S[ 0])+((R>>BF_0)&BF_M))+ \
210 #define BF_ENC(LL,R,S,P) ( \
211 LL^=P, \
212 LL^=((( S[ ((int)(R>>24)&0xff)] + \
  /external/openssl/crypto/bf/
bf_locl.h 164 #define BF_ENC(LL,R,KEY,Pi) (\
165 LL^=KEY[Pi], \
170 LL^=t \
193 #define BF_ENC(LL,R,S,P) ( \
194 LL^=P, \
195 LL^= (((*(BF_LONG *)((unsigned char *)&(S[ 0])+((R>>BF_0)&BF_M))+ \
210 #define BF_ENC(LL,R,S,P) ( \
211 LL^=P, \
212 LL^=((( S[ ((int)(R>>24)&0xff)] + \
  /external/llvm/unittests/Support/
raw_ostream_test.cpp 64 EXPECT_EQ("0", printToString(0LL));
65 EXPECT_EQ("257257257235709", printToString(257257257235709LL));
66 EXPECT_EQ("-257257257235709", printToString(-257257257235709LL));
95 EXPECT_EQ("0", printToStringUnbuffered(0LL));
96 EXPECT_EQ("257257257235709", printToStringUnbuffered(257257257235709LL));
97 EXPECT_EQ("-257257257235709", printToStringUnbuffered(-257257257235709LL));
  /device/generic/goldfish/camera/
EmulatedFakeCameraDevice.h 173 static const nsecs_t mRedrawAfter = 15000000LL;
177 static const nsecs_t mRotateFreq = 3000000000LL;
  /external/jemalloc/include/jemalloc/internal/
jemalloc_internal_macros.h 47 #define KZI(z) ZI(z##LL)
49 #define KQI(q) QI(q##LL)
  /external/chromium_org/third_party/mesa/src/bin/
minstall 10 # If these commands aren't portable, we'll need some "if (arch)" type stuff
73 LL=`ls -l "$FILE"`
74 for L in $LL ; do
  /external/clang/test/Headers/
limits.cpp 37 _Static_assert(LLONG_MAX == -(LLONG_MIN+1LL), "");
38 _Static_assert(LLONG_MIN == -LLONG_MAX-1LL, "");
  /external/clang/test/SemaCXX/
cxx98-compat-pedantic.cpp 46 -42LL; // expected-warning {{'long long' is incompatible with C++98}}
  /external/mesa3d/bin/
minstall 10 # If these commands aren't portable, we'll need some "if (arch)" type stuff
73 LL=`ls -l "$FILE"`
74 for L in $LL ; do
  /external/chromium_org/third_party/re2/re2/testing/
re2_arg_test.cc 68 { "4294967296", 4294967296LL, { false, false, false, false, true, true }},
70 9223372036854775807LL, { false, false, false, false, true, true }},
73 { "-2147483649", -2147483649LL, { false, false, false, false, true, false }},
  /external/regex-re2/re2/testing/
re2_arg_test.cc 68 { "4294967296", 4294967296LL, { false, false, false, false, true, true }},
70 9223372036854775807LL, { false, false, false, false, true, true }},
73 { "-2147483649", -2147483649LL, { false, false, false, false, true, false }},
  /external/webrtc/src/system_wrappers/interface/
tick_util.h 177 result._ticks = 1000000000LL * static_cast<WebRtc_Word64>(ts.tv_sec) + static_cast<WebRtc_Word64>(ts.tv_nsec);
195 result._ticks = 1000000LL * static_cast<WebRtc_Word64>(tv.tv_sec) + static_cast<WebRtc_Word64>(tv.tv_usec);
212 return now._ticks / 1000000LL;
214 return now._ticks / 1000LL;
228 return now._ticks *1000LL;
231 return now._ticks / 1000LL;
253 return ms * 1000000LL;
255 return ms * 1000LL;
270 return ticks / 1000000LL;
272 return ticks / 1000LL;
    [all...]
  /hardware/invensense/60xx/mlsdk/mllite/
ml_stored_data.c 427 tmp += 16777216LL * (long long)calData[ptr++];
428 tmp += 65536LL * (long long)calData[ptr++];
429 tmp += 256LL * (long long)calData[ptr++];
431 if (tmp > 2147483648LL) {
432 tmp -= 4294967296LL;
443 tmp += 16777216LL * (long long)calData[ptr++];
444 tmp += 65536LL * (long long)calData[ptr++];
445 tmp += 256LL * (long long)calData[ptr++];
447 if (tmp > 2147483648LL) {
448 tmp -= 4294967296LL;
547 unsigned long long ll; member in union:doubleToLongLong
777 unsigned long long ll; member in union:doubleToLongLong
1243 unsigned long long ll; member in union:doubleToLongLong
    [all...]

Completed in 590 milliseconds

1 2 3 45 6 7 8 91011>>