/device/google/bramble/vibrator/drv2624/tests/ |
D | test-hwcal.cpp | 83 uint32_t actual = ~expect; in TEST_F() local 89 EXPECT_TRUE(mHwCal->getCloseLoopThreshold(&actual)); in TEST_F() 90 EXPECT_EQ(expect, actual); in TEST_F() 96 uint32_t actual = ~expect; in TEST_F() local 102 EXPECT_TRUE(mHwCal->getCloseLoopThreshold(&actual)); in TEST_F() 103 EXPECT_EQ(expect, actual); in TEST_F() 109 bool actual = !expect; in TEST_F() local 115 EXPECT_TRUE(mHwCal->getDynamicConfig(&actual)); in TEST_F() 116 EXPECT_EQ(expect, actual); in TEST_F() 122 bool actual = !expect; in TEST_F() local [all …]
|
/device/google/redfin/vibrator/drv2624/tests/ |
D | test-hwcal.cpp | 83 uint32_t actual = ~expect; in TEST_F() local 89 EXPECT_TRUE(mHwCal->getCloseLoopThreshold(&actual)); in TEST_F() 90 EXPECT_EQ(expect, actual); in TEST_F() 96 uint32_t actual = ~expect; in TEST_F() local 102 EXPECT_TRUE(mHwCal->getCloseLoopThreshold(&actual)); in TEST_F() 103 EXPECT_EQ(expect, actual); in TEST_F() 109 bool actual = !expect; in TEST_F() local 115 EXPECT_TRUE(mHwCal->getDynamicConfig(&actual)); in TEST_F() 116 EXPECT_EQ(expect, actual); in TEST_F() 122 bool actual = !expect; in TEST_F() local [all …]
|
/device/google/barbet/vibrator/drv2624/tests/ |
D | test-hwcal.cpp | 83 uint32_t actual = ~expect; in TEST_F() local 89 EXPECT_TRUE(mHwCal->getCloseLoopThreshold(&actual)); in TEST_F() 90 EXPECT_EQ(expect, actual); in TEST_F() 96 uint32_t actual = ~expect; in TEST_F() local 102 EXPECT_TRUE(mHwCal->getCloseLoopThreshold(&actual)); in TEST_F() 103 EXPECT_EQ(expect, actual); in TEST_F() 109 bool actual = !expect; in TEST_F() local 115 EXPECT_TRUE(mHwCal->getDynamicConfig(&actual)); in TEST_F() 116 EXPECT_EQ(expect, actual); in TEST_F() 122 bool actual = !expect; in TEST_F() local [all …]
|
/device/google/sunfish/vibrator/drv2624/tests/ |
D | test-hwcal.cpp | 84 uint32_t actual = ~expect; in TEST_F() local 90 EXPECT_TRUE(mHwCal->getCloseLoopThreshold(&actual)); in TEST_F() 91 EXPECT_EQ(expect, actual); in TEST_F() 97 uint32_t actual = ~expect; in TEST_F() local 103 EXPECT_TRUE(mHwCal->getCloseLoopThreshold(&actual)); in TEST_F() 104 EXPECT_EQ(expect, actual); in TEST_F() 110 bool actual = !expect; in TEST_F() local 116 EXPECT_TRUE(mHwCal->getDynamicConfig(&actual)); in TEST_F() 117 EXPECT_EQ(expect, actual); in TEST_F() 123 bool actual = !expect; in TEST_F() local [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/ |
D | util.py | 21 def sorted_list_difference(expected, actual): argument 35 a = actual[j] 44 while actual[j] == a: 53 while actual[j] == a: 57 unexpected.extend(actual[j:]) 62 def unorderable_list_difference(expected, actual, ignore_duplicate=False): argument 74 actual.remove(item) 78 for lst in expected, actual: 85 while actual: 86 item = actual.pop() [all …]
|
/device/generic/goldfish-opengl/system/OpenglSystemCommon/ |
D | QemuPipeStream.cpp | 162 ssize_t actual = 0; in commitBufferAndReadFully() local 165 actual = qemu_pipe_read(m_sock, m_buf, maxRead); in commitBufferAndReadFully() 167 if (actual > 0) { in commitBufferAndReadFully() 168 m_read = m_readLeft = actual; in commitBufferAndReadFully() 171 if (actual == 0) { in commitBufferAndReadFully() 189 actual = qemu_pipe_read(m_sock, m_buf, kReadSize); in commitBufferAndReadFully() 191 if (actual == 0) { in commitBufferAndReadFully() 196 if (actual > 0) { in commitBufferAndReadFully() 197 m_read = m_readLeft = actual; in commitBufferAndReadFully() 201 if (!qemu_pipe_try_again(actual)) { in commitBufferAndReadFully()
|
D | QemuPipeStreamFuchsia.cpp | 113 uint64_t actual; in connect() local 115 status = m_pipe->Write(len + 1, 0, &status2, &actual); in connect() 181 uint64_t actual = 0; in commitBuffer() local 183 zx_status_t status = m_pipe->DoCall(size, kWriteOffset, 0, 0, &status2, &actual); in commitBuffer() 239 uint64_t actual = 0; in commitBufferAndReadFully() local 241 zx_status_t status = m_pipe->DoCall(size, kWriteOffset, maxRead, 0, &status2, &actual); in commitBufferAndReadFully() 248 if (actual) { in commitBufferAndReadFully() 249 m_read = m_readLeft = actual; in commitBufferAndReadFully() 265 actual = 0; in commitBufferAndReadFully() 266 status = m_pipe->Read(kReadSize, 0, &status2, &actual); in commitBufferAndReadFully() [all …]
|
D | AddressSpaceStream.cpp | 264 ssize_t actual = 0; in readFully() local 267 actual = speculativeRead(m_readBuf, maxRead); in readFully() 270 if (actual > 0) { in readFully() 271 m_read = m_readLeft = actual; in readFully() 274 if (actual == 0) { in readFully() 292 actual = speculativeRead(m_readBuf, kReadSize); in readFully() 294 if (actual == 0) { in readFully() 299 if (actual > 0) { in readFully() 300 m_read = m_readLeft = actual; in readFully() 311 ssize_t actual = speculativeRead(dst, wanted); in read() local [all …]
|
D | ProcessPipe.cpp | 87 uint64_t actual; in processPipeInitOnce() local 88 status = pipe->Write(len + 1, 0, &status2, &actual); in processPipeInitOnce() 102 status = pipe->DoCall(sizeof(confirmInt), 0, sizeof(sProcUID), 0, &status2, &actual); in processPipeInitOnce()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_cmath.py | 308 actual = function(arg) 317 actual = function(arg) 324 actual = function(arg) 327 actual = complex(abs(actual.real), actual.imag) 330 actual = complex(actual.real, abs(actual.imag)) 347 actual.real, actual.imag) 348 self.rAssertAlmostEqual(expected.real, actual.real, 351 self.rAssertAlmostEqual(expected.imag, actual.imag,
|
D | test_gdb.py | 159 def assertEndsWith(self, actual, exp_end): argument 161 self.assertTrue(actual.endswith(exp_end), 162 msg='%r did not end with %r' % (actual, exp_end)) 164 def assertMultilineMatches(self, actual, pattern): argument 165 m = re.match(pattern, actual, re.DOTALL) 166 self.assertTrue(m, msg='%r did not match %r' % (actual, pattern)) 547 def assertListing(self, expected, actual): argument 548 self.assertEndsWith(actual, expected)
|
D | test_difflib.py | 184 actual = full.replace('</body>','\n%s\n</body>' % tables) 191 self.assertEqual(actual, fp.read())
|
D | test_random.py | 342 actual = self.randomlist(2000)[-10:] 343 for a, e in zip(actual, expected): 364 actual = self.randomlist(2000)[-10:] 365 for a, e in zip(actual, expected):
|
D | test_httpservers.py | 450 actual = CGIHTTPServer._url_collapse_path_split(path) 451 self.assertEqual(expected, actual, 453 (path, actual, expected))
|
/device/google/sunfish/vibrator/common/ |
D | HardwareBase.cpp | 110 const std::string actual{key, std::min(strlen(key), expect.size())}; in debug() local 111 if (actual == expect) { in debug()
|
D | HardwareBase.h | 141 T actual; in poll() local 149 while ((ret = get(&actual, stream)) && (actual != value)) { in poll()
|
/device/linaro/bootloader/OpenPlatformPkg/Drivers/Usb/DwUsb3Dxe/ |
D | DwUsb3Dxe.c | 653 ep->req.actual = 0; in DriverInit() 655 pcd->ep0_req.actual = 0; in DriverInit() 672 ep->req.actual = 0; in DriverInit() 688 ep->req.actual = 0; in DriverInit() 1189 pcd->ep0_req.actual = 0; in SetupInStatusPhase() 1209 pcd->ep0_req.actual = 0; in SetupOutStatusPhase() 1241 req->actual += byte_count; in DwUsb3HandleEndPoint0() 1244 if (req->actual < req->length) { in DwUsb3HandleEndPoint0() 1272 req->actual += byte_count; in DwUsb3HandleEndPoint0() 1275 if (req->actual < req->length) { in DwUsb3HandleEndPoint0() [all …]
|
D | DwUsb3Dxe.h | 352 UINT32 actual; member 355 int (*complete)(unsigned actual, int status); 624 UINT32 actual; 627 int (*complete)(unsigned actual, int status);
|
/device/google/contexthub/sensorhal/ |
D | hubconnection.h | 330 inline static bool intervalLargeEnough(uint64_t actual, uint64_t desired) { in intervalLargeEnough() 331 return (actual + (actual >> 4)) >= desired; // >= 94.11% of desired in intervalLargeEnough()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
D | compileall.py | 91 actual = chandle.read(8) 92 if expect == actual:
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | compileall.py | 91 actual = chandle.read(8) 92 if expect == actual:
|
/device/linaro/bootloader/edk2/BaseTools/Scripts/ |
D | GccBase.lds | 24 * between 32-bit and 64-bit builds). The actual start of the .text section 25 * will be rounded up based on its actual alignment.
|
/device/linaro/bootloader/edk2/EmbeddedPkg/Scripts/LauterbachT32/ |
D | README.txt | 3 Update the memsize variable in EfiLoadDxe.cmm for the actual amount of memory available in your sys…
|
/device/linaro/bootloader/edk2/ArmPlatformPkg/ArmVExpressPkg/ |
D | ArmVExpressPkg.dec | 41 # MaxMode must be one number higher than the actual max mode, 42 # i.e. for actual maximum mode 2, set the value to 3.
|
/device/amlogic/yukawa/bootloader/ |
D | README | 12 actual tag : u-boot/v2019.10/sei610-20190905-fix
|