HomeSort by relevance Sort by last modified time
    Searched refs:SetInt64 (Results 1 - 25 of 103) sorted by null

1 2 3 4 5

  /system/update_engine/
payload_state_unittest.cc 108 EXPECT_CALL(*prefs, SetInt64(_, _)).Times(AnyNumber());
109 EXPECT_CALL(*prefs, SetInt64(kPrefsPayloadAttemptNumber, 0))
111 EXPECT_CALL(*prefs, SetInt64(kPrefsFullPayloadAttemptNumber, 0))
113 EXPECT_CALL(*prefs, SetInt64(kPrefsBackoffExpiryTime, 0)).Times(AtLeast(1));
114 EXPECT_CALL(*prefs, SetInt64(kPrefsCurrentUrlIndex, 0)).Times(AtLeast(1));
115 EXPECT_CALL(*prefs, SetInt64(kPrefsCurrentUrlFailureCount, 0))
117 EXPECT_CALL(*prefs, SetInt64(kPrefsUpdateTimestampStart, _))
119 EXPECT_CALL(*prefs, SetInt64(kPrefsUpdateDurationUptime, _))
121 EXPECT_CALL(*prefs, SetInt64(kCurrentBytesDownloadedFromHttps, 0))
123 EXPECT_CALL(*prefs, SetInt64(kCurrentBytesDownloadedFromHttp, 0)
    [all...]
payload_state.cc 749 prefs_->SetInt64(kPrefsNumReboots, num_reboots);
861 prefs_->SetInt64(kPrefsPayloadAttemptNumber, payload_attempt_number_);
    [all...]
omaha_request_action_unittest.cc 763 ASSERT_TRUE(fake_prefs_.SetInt64(kPrefsUpdateCheckCount, 5));
    [all...]
  /prebuilts/go/darwin-x86/misc/cgo/gmp/
pi.go 40 accum.Mul(accum, tmp1.SetInt64(y2))
41 numer.Mul(numer, tmp1.SetInt64(k))
42 denom.Mul(denom, tmp1.SetInt64(y2))
46 accum.Sub(accum, tmp1.Mul(denom, tmp1.SetInt64(d)))
  /prebuilts/go/linux-x86/misc/cgo/gmp/
pi.go 40 accum.Mul(accum, tmp1.SetInt64(y2))
41 numer.Mul(numer, tmp1.SetInt64(k))
42 denom.Mul(denom, tmp1.SetInt64(y2))
46 accum.Sub(accum, tmp1.Mul(denom, tmp1.SetInt64(d)))
  /prebuilts/go/darwin-x86/src/math/big/
example_rat_test.go 20 term.SetInt64(1)
22 term.SetInt64((n - 1) / 3 * 2)
hilbert_test.go 52 x.SetInt64(1)
74 x1 := new(Rat).SetInt64(int64(i + j + 1))
int.go 41 // SetInt64 sets z to x and returns z.
42 func (z *Int) SetInt64(x int64) *Int {
62 return new(Int).SetInt64(x)
167 return z.SetInt64(1) // empty range
169 return z.SetInt64(0) // range includes 0
440 z.SetInt64(0)
442 x.SetInt64(0)
445 y.SetInt64(0)
457 Y := new(Int).SetInt64(1)
459 lastX := new(Int).SetInt64(1
    [all...]
floatexample_test.go 16 x.SetInt64(1000) // x is automatically set to 64bit precision
  /prebuilts/go/linux-x86/src/math/big/
example_rat_test.go 20 term.SetInt64(1)
22 term.SetInt64((n - 1) / 3 * 2)
hilbert_test.go 52 x.SetInt64(1)
74 x1 := new(Rat).SetInt64(int64(i + j + 1))
int.go 41 // SetInt64 sets z to x and returns z.
42 func (z *Int) SetInt64(x int64) *Int {
62 return new(Int).SetInt64(x)
167 return z.SetInt64(1) // empty range
169 return z.SetInt64(0) // range includes 0
440 z.SetInt64(0)
442 x.SetInt64(0)
445 y.SetInt64(0)
457 Y := new(Int).SetInt64(1)
459 lastX := new(Int).SetInt64(1
    [all...]
floatexample_test.go 16 x.SetInt64(1000) // x is automatically set to 64bit precision
  /system/update_engine/common/
mock_prefs.h 36 MOCK_METHOD2(SetInt64, bool(const std::string& key, const int64_t value));
prefs_interface.h 63 virtual bool SetInt64(const std::string& key, const int64_t value) = 0;
prefs_unittest.cc 173 TEST_F(PrefsTest, SetInt64) {
174 EXPECT_TRUE(prefs_.SetInt64(kKey, -123));
182 EXPECT_FALSE(prefs_.SetInt64(kKeyWithSpaces, 20));
187 EXPECT_TRUE(prefs_.SetInt64(kKey, std::numeric_limits<int64_t>::max()));
195 EXPECT_TRUE(prefs_.SetInt64(kKey, std::numeric_limits<int64_t>::min()));
263 ASSERT_TRUE(prefs_.SetInt64(kKey, 8));
272 ASSERT_TRUE(prefs_.SetInt64(kKey, 0));
351 EXPECT_TRUE(prefs_.SetInt64(kKey, 1234));
fake_prefs.h 45 bool SetInt64(const std::string& key, const int64_t value) override;
  /prebuilts/go/darwin-x86/src/crypto/elliptic/
p224_test.go 25 tmp.SetInt64(int64(in[i]))
elliptic_test.go 24 x, y := new(big.Int).SetInt64(1), new(big.Int).SetInt64(1)
347 k := new(big.Int).SetInt64(1)
399 x.SetInt64(0)
400 y.SetInt64(0)
  /prebuilts/go/linux-x86/src/crypto/elliptic/
p224_test.go 25 tmp.SetInt64(int64(in[i]))
elliptic_test.go 24 x, y := new(big.Int).SetInt64(1), new(big.Int).SetInt64(1)
347 k := new(big.Int).SetInt64(1)
399 x.SetInt64(0)
400 y.SetInt64(0)
  /prebuilts/go/darwin-x86/src/crypto/rand/
util_test.go 41 b := new(big.Int).SetInt64(int64(n))
65 b := new(big.Int).SetInt64(int64(-1))
  /prebuilts/go/linux-x86/src/crypto/rand/
util_test.go 41 b := new(big.Int).SetInt64(int64(n))
65 b := new(big.Int).SetInt64(int64(-1))
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
mpint.go 217 a.SetInt64(0)
241 a.SetInt64(-1)
243 a.SetInt64(0)
277 func (a *Mpint) SetInt64(c int64) {
278 a.Val.SetInt64(c)
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
mpint.go 217 a.SetInt64(0)
241 a.SetInt64(-1)
243 a.SetInt64(0)
277 func (a *Mpint) SetInt64(c int64) {
278 a.Val.SetInt64(c)

Completed in 1281 milliseconds

1 2 3 4 5