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

12 3 4 5 6 7 8 91011>>

  /frameworks/native/libs/vr/libpdx_uds/
service_endpoint.cpp 236 // Borrow the local channel handle before we move it into OnNewChannel().
237 BorrowedHandle channel_handle = local_socket.Borrow();
245 status = SendData(connection_fd.Borrow(), connection_info);
449 remote_socket.Borrow(), channel_data->event_set.pollin_event_fd(),
476 handle = channel_data->second.data_fd.Borrow();
501 auto status = ReceiveData(channel_fd.Borrow(), &request);
597 auto reenable_status = ReenableEpollEvent(socket_fd_.Borrow());
668 auto ref = state->PushChannelHandle(handle.Borrow());
703 return state->PushFileHandle(handle.Borrow());
720 return state->PushChannelHandle(handle.Borrow());
    [all...]
client_channel.cpp 262 return state->PushFileHandle(handle.Borrow());
274 return state->PushChannelHandle(handle.Borrow());
  /external/boringssl/src/crypto/fipsmodule/bn/
rsaz_exp.c 76 *R2 = table_s; /* borrow */
236 rsaz_1024_gather5_avx2(a_inv,table_s,wvalue); /* borrow a_inv */
245 rsaz_1024_gather5_avx2(a_inv,table_s,wvalue); /* borrow a_inv */
  /frameworks/native/libs/vr/libpdx/private/pdx/
channel_handle.h 96 ChannelHandle<ChannelHandleMode::Borrowed> Borrow() const {
file_handle.h 100 FileHandle<FileHandleMode::Borrowed> Borrow() const {
  /external/llvm/lib/Target/SystemZ/
README.txt 59 need to produce a borrow. (Note that there are no memory forms of
60 ADD LOGICAL WITH CARRY and SUBTRACT LOGICAL WITH BORROW, so the high
  /frameworks/base/tools/aapt2/
StringPool.cpp 190 Entry* borrow = entry.get(); local
192 indexed_strings_.insert(std::make_pair(StringPiece(borrow->value), borrow));
193 return Ref(borrow);
217 StyleEntry* borrow = entry.get(); local
219 return StyleRef(borrow);
232 StyleEntry* borrow = entry.get(); local
234 return StyleRef(borrow);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
dtoa.c 929 ULLong borrow, y; local
931 ULong borrow, y; local
963 borrow = 0;
966 y = (ULLong)*xa++ - *xb++ - borrow;
967 borrow = y >> 32 & (ULong)1;
972 y = *xa++ - borrow;
973 borrow = y >> 32 & (ULong)1;
978 y = (*xa & 0xffff) - (*xb & 0xffff) - borrow;
979 borrow = (y & 0x10000) >> 16;
980 z = (*xa++ >> 16) - (*xb++ >> 16) - borrow;
1238 ULLong borrow, carry, y, ys; local
1240 ULong borrow, carry, y, ys; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
dtoa.c 912 ULLong borrow, y; local
914 ULong borrow, y; local
946 borrow = 0;
949 y = (ULLong)*xa++ - *xb++ - borrow;
950 borrow = y >> 32 & (ULong)1;
955 y = *xa++ - borrow;
956 borrow = y >> 32 & (ULong)1;
961 y = (*xa & 0xffff) - (*xb & 0xffff) - borrow;
962 borrow = (y & 0x10000) >> 16;
963 z = (*xa++ >> 16) - (*xb++ >> 16) - borrow;
1221 ULLong borrow, carry, y, ys; local
1223 ULong borrow, carry, y, ys; local
    [all...]
  /external/python/cpython2/Python/
dtoa.c 929 ULLong borrow, y; local
931 ULong borrow, y; local
963 borrow = 0;
966 y = (ULLong)*xa++ - *xb++ - borrow;
967 borrow = y >> 32 & (ULong)1;
972 y = *xa++ - borrow;
973 borrow = y >> 32 & (ULong)1;
978 y = (*xa & 0xffff) - (*xb & 0xffff) - borrow;
979 borrow = (y & 0x10000) >> 16;
980 z = (*xa++ >> 16) - (*xb++ >> 16) - borrow;
1238 ULLong borrow, carry, y, ys; local
1240 ULong borrow, carry, y, ys; local
    [all...]
  /external/llvm/unittests/ADT/
APIntTest.cpp 503 // Tests some rare "borrow" cases in D4 step
842 // No out borrow.
850 // With out borrow.
860 // No across word borrow, no out borrow.
868 // 1 across word borrow, no out borrow.
877 // 2 across word borrow, no out borrow.
886 // 3 across word borrow, no out borrow
    [all...]
  /libcore/ojluni/src/main/java/sun/misc/
FDBigInteger.java 809 long borrow = 0L; local
812 long diff = (mData[mIndex] & LONG_MASK) - (sData[sIndex] & LONG_MASK) + borrow;
814 borrow = diff >> 32; // signed shift
816 for (; borrow != 0 && mIndex < minLen; mIndex++) {
817 long diff = (mData[mIndex] & LONG_MASK) + borrow;
819 borrow = diff >> 32; // signed shift
821 assert borrow == 0L : borrow; // borrow out of subtract,
889 long borrow = 0L; local
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/internal/
biginteger.h 194 Type borrow = 0; local
196 Type d = a->digits_[i] - borrow;
199 borrow = (d > a->digits_[i]) ? 1 : 0;
  /bionic/libc/system_properties/include/system_properties/
prop_info.h 46 // We borrow the 2nd from the top byte for extra flags, and use the bottom most bit of that for
  /external/iproute2/man/man8/
tc-cbq-details.8 235 it will try to borrow avgidle from siblings that are not
238 to borrow enough avgidle to send a packet, it is throttled and not asked
356 Signifies that this class will not borrow bandwidth from its siblings.
359 Means that this class will not borrow bandwidth to its siblings
  /external/libnl/python/netlink/route/qdisc/
htb.py 126 ret += ' {s|borrow-up-to!k} {a|ceil}'
  /external/skia/src/core/
SkExecutor.cpp 93 virtual void borrow() override {
  /external/skqp/src/core/
SkExecutor.cpp 93 virtual void borrow() override {
  /frameworks/native/libs/vr/libbufferhub/include/private/dvr/
bufferhub_rpc.h 174 acquire_fence_fd_(acquire_fence_fd.Borrow()),
175 release_fence_fd_(release_fence_fd.Borrow()) {}
233 FenceHandle<pdx::BorrowedHandle> borrow() const { function in class:android::dvr::FenceHandle
234 return FenceHandle<pdx::BorrowedHandle>(fence_.Borrow());
  /toolchain/binutils/binutils-2.27/zlib/
configure.ac 51 # The same as in boehm-gc and libstdc++. Have to borrow it from there.
  /external/pdfium/third_party/bigint/
BigUnsigned.cc 212 // Handle an incoming borrow
218 borrowIn = borrowOut; // Pass the borrow along
220 // If there is a borrow left over, decrease blocks until
226 /* If there's still a borrow, the result is negative.
511 // Roll-over a borrow as necessary.
687 bool borrow = true; local
688 for (i = 0; borrow; i++) {
689 borrow = (blk[i] == 0);
  /external/llvm/lib/Support/
APInt.cpp 211 /// @returns the borrow out of the subtraction
217 y = 1; // We have to "borrow 1" from next "digit"
219 y = 0; // No need to borrow
264 /// @returns returns the borrow out.
268 bool borrow = false;
270 uint64_t x_tmp = borrow ? x[i] - 1 : x[i];
271 borrow = y[i] > x_tmp || (borrow && x[i] == 0);
274 return borrow;
1595 int64_t borrow = 0; local
1602 << ", borrow = " << borrow << '\\n'); local
    [all...]
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
APInt.cpp 211 /// @returns the borrow out of the subtraction
217 y = 1; // We have to "borrow 1" from next "digit"
219 y = 0; // No need to borrow
272 /// @returns returns the borrow out.
276 bool borrow = false;
278 uint64_t x_tmp = borrow ? x[i] - 1 : x[i];
279 borrow = y[i] > x_tmp || (borrow && x[i] == 0);
282 return borrow;
1569 int64_t borrow = 0; local
1576 << ", borrow = " << borrow << '\\n'); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Objects/
longobject.c 1234 digit borrow = 0; local
2469 digit borrow = 0; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Objects/
longobject.c 1248 digit borrow = 0; local
2483 digit borrow = 0; local
    [all...]

Completed in 511 milliseconds

12 3 4 5 6 7 8 91011>>