HomeSort by relevance Sort by last modified time
    Searched full:int64 (Results 526 - 550 of 779) sorted by null

<<21222324252627282930>>

  /external/protobuf/java/src/main/java/com/google/protobuf/micro/
CodedOutputStreamMicro.java 140 /** Write an {@code int64} field, including tag, to the stream. */
300 /** Write an {@code int64} field to the stream. */
426 * {@code int64} field, including tag.
615 * {@code int64} field, including tag.
    [all...]
  /external/protobuf/src/google/protobuf/compiler/java/
java_extension.cc 54 case FieldDescriptor::TYPE_INT64 : return "INT64";
  /external/protobuf/src/google/protobuf/stubs/
strutil.h 307 inline int64 strto64(const char *nptr, char **endptr, int base) {
308 GOOGLE_COMPILE_ASSERT(sizeof(int64) == sizeof(long long),
346 LIBPROTOBUF_EXPORT char* FastInt64ToBuffer(int64 i, char* buffer);
389 LIBPROTOBUF_EXPORT char* FastInt64ToBufferLeft(int64 i, char* buffer);
substitute.h 69 // * int32, int64, uint32, uint64: Formatted using SimpleItoa().
  /external/protobuf/src/google/protobuf/
unittest_custom_options.proto 138 optional int64 int64_opt = 7705542;
descriptor.h 300 TYPE_INT64 = 3, // int64, varint on the wire. Negative numbers
318 TYPE_SFIXED64 = 16, // int64, exactly eight bytes on the wire
320 TYPE_SINT64 = 18, // int64, ZigZag-encoded varint on the wire
413 int64 default_value_int64() const;
515 int64 default_value_int64_;
    [all...]
  /external/bluetooth/bluez/src/
sdp-xml.c 147 appender(data, "<int64 value=\"");
148 snprintf(buf, STRBUFSIZE - 1, "%jd", value->val.int64);
769 else if (!strcmp(el, "int64"))
  /external/chromium/base/
file_util.h 85 BASE_API int64 ComputeDirectorySize(const FilePath& root_path);
93 BASE_API int64 ComputeFilesSize(const FilePath& directory,
305 BASE_API bool GetFileSize(const FilePath& file_path, int64* file_size);
logging.cc 137 return reinterpret_cast<int64>(pthread_self());
157 static_cast<int64>(ts.tv_sec) * 1000000 +
158 static_cast<int64>(ts.tv_nsec) / 1000;
message_loop.cc 230 const tracked_objects::Location& from_here, Task* task, int64 delay_ms) {
240 const tracked_objects::Location& from_here, Task* task, int64 delay_ms) {
473 const tracked_objects::Location& from_here, Task* task, int64 delay_ms,
message_loop.h 158 const tracked_objects::Location& from_here, Task* task, int64 delay_ms);
164 const tracked_objects::Location& from_here, Task* task, int64 delay_ms);
431 int64 delay_ms, bool nestable);
  /external/chromium/chrome/browser/download/
download_util.cc 678 int64 total = download->total_bytes();
679 int64 size = download->received_bytes();
700 int64 current_speed = download->CurrentSpeed();
    [all...]
  /external/chromium/chrome/browser/sync/engine/
syncer_thread.cc 733 int64 backoff_s =
734 std::max(static_cast<int64>(1),
745 backoff_s = std::max(static_cast<int64>(1),
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/
status_bubble_mac.mm 42 const int64 kShowDelayMilliseconds = 80;
43 const int64 kHideDelayMilliseconds = 250;
491 void StatusBubbleMac::StartTimer(int64 delay_ms) {
  /external/chromium/net/http/
http_util_unittest.cc 548 int64 expected_first_byte_position;
549 int64 expected_last_byte_position;
550 int64 expected_suffix_length;
  /external/chromium/webkit/glue/
webmediaplayer_impl.cc 67 // seconds to an int64 timestamp.
81 // Now we can safely cast to int64 microseconds.
82 return base::TimeDelta::FromMicroseconds(static_cast<int64>(integer));
  /external/opencv/cv/src/
cvmoments.cpp 335 ICV_DEF_CALC_MOMENTS_IN_TILE( CV_NOP, MomentsInTile, 16u, ushort, int, int64 )
336 ICV_DEF_CALC_MOMENTS_IN_TILE( CV_NOP, MomentsInTile, 16s, short, int, int64 )
343 ICV_DEF_CALC_MOMENTS_IN_TILE( CV_NONZERO_FLT, MomentsInTileBin, 64f, int64, double, double )
  /external/protobuf/java/src/main/java/com/google/protobuf/
FieldSet.java 437 case INT64 : return input.readInt64 ();
537 case INT64 : output.writeInt64NoTag ((Long ) value); break;
660 case INT64 : return CodedOutputStream.computeInt64SizeNoTag ((Long )value);
  /external/chromium/chrome/browser/ui/webui/
net_internals_ui.cc 856 int64 cur_time_ms = (base::Time::Now() - base::Time()).InMilliseconds();
858 int64 cur_time_ticks_ms =
862 int64 tick_to_time_ms = cur_time_ms - cur_time_ticks_ms;
868 const int64 kUnixEpochMs = 11644473600000LL
    [all...]
  /external/chromium/testing/gtest/test/
gtest-printers_test.cc 338 // Test that Int64 provides more storage than wchar_t.
340 EXPECT_LT(sizeof(wchar_t), sizeof(testing::internal::Int64));
354 Print(static_cast<testing::internal::Int64>(1) << 63)); // int64
1000 testing::internal::Int64, float, double, const char*, void*, string>
    [all...]
  /external/dbus/dbus/
dbus-marshal-basic.c     [all...]
  /external/opencv/cxcore/include/
cxtypes.h 142 typedef __int64 int64; typedef
145 typedef long long int64; typedef
173 int64 i;
303 CV_INLINE CvRNG cvRNG( int64 seed CV_DEFAULT(-1))
305 CvRNG rng = seed ? (uint64)seed : (uint64)(int64)-1;
    [all...]
  /external/opencv/cxcore/src/
cxdrawing.cpp 110 x1 += (int) (((int64) (a - y1)) * (x2 - x1) / (y2 - y1));
117 x2 += (int) (((int64) (a - y2)) * (x2 - x1) / (y2 - y1));
126 y1 += (int) (((int64) (a - x1)) * (y2 - y1) / (x2 - x1));
133 y2 += (int) (((int64) (a - x2)) * (y2 - y1) / (x2 - x1));
347 y_step = (int) (((int64) dy << XY_SHIFT) / (ax | 1));
351 pt1.y += (int) ((((int64) y_step) * j) >> XY_SHIFT) + (XY_ONE >> 1);
370 x_step = (int) (((int64) dx << XY_SHIFT) / (ay | 1));
375 pt1.x += (int) ((((int64) x_step) * j) >> XY_SHIFT) + (XY_ONE >> 1);
610 y_step = (int) (((int64) dy << XY_SHIFT) / (ax | 1));
624 x_step = (int) (((int64) dx << XY_SHIFT) / (ay | 1))
    [all...]
cxmatrix.cpp 419 ICV_DEF_TRANSP_INP_FUNC( 32s_C2IR, int64, 1 )
422 ICV_DEF_TRANSP_INP_FUNC( 64s_C3IR, int64, 3 )
423 ICV_DEF_TRANSP_INP_FUNC( 64s_C4IR, int64, 4 )
431 ICV_DEF_TRANSP_FUNC( 32s_C2R, int64, 1 )
434 ICV_DEF_TRANSP_FUNC( 64s_C3R, int64, 3 )
435 ICV_DEF_TRANSP_FUNC( 64s_C4R, int64, 4 )
    [all...]
  /external/chromium/chrome/browser/bookmarks/
bookmark_model_unittest.cc 694 base::hash_set<int64> ids;
868 std::set<int64> ids;
877 std::set<int64>* ids,
    [all...]

Completed in 918 milliseconds

<<21222324252627282930>>