HomeSort by relevance Sort by last modified time
    Searched defs:wds (Results 1 - 5 of 5) sorted by null

  /bionic/libc/upstream-openbsd/lib/libc/gdtoa/
misc.c 86 rv->sign = rv->wds = 0;
170 int i, wds; local
182 wds = b->wds;
205 while(++i < wds);
207 if (wds >= b->maxwds) {
215 b->x[wds++] = carry;
216 b->wds = wds;
269 b->wds = 1
    [all...]
gdtoaimp.h 476 int k, maxwds, sign, wds; member in struct:Bigint
487 #define Bcopy(x,y) memcpy_D2A(&x->sign,&y->sign,y->wds*sizeof(ULong) + 2*sizeof(int))
489 #define Bcopy(x,y) memcpy(&x->sign,&y->sign,y->wds*sizeof(ULong) + 2*sizeof(int))
  /external/chromium_org/chrome/browser/sync/test/integration/
autofill_helper.cc 85 scoped_refptr<AutofillWebDataService> wds = local
91 RunOnDBThreadAndBlock(Bind(add_observer_func, wds, &mock_observer));
93 wds->RemoveFormValueForElementName(key.name(), key.value());
99 RunOnDBThreadAndBlock(Bind(remove_observer_func, wds, &mock_observer));
102 void GetAllAutofillEntriesOnDBThread(AutofillWebDataService* wds,
106 wds->GetDatabase())->GetAllAutofillEntries(entries);
109 std::vector<AutofillEntry> GetAllAutofillEntries(AutofillWebDataService* wds) {
113 Unretained(wds),
194 scoped_refptr<AutofillWebDataService> wds = GetWebDataService(profile); local
199 RunOnDBThreadAndBlock(Bind(add_observer_func, wds, &mock_observer))
226 scoped_refptr<AutofillWebDataService> wds = GetWebDataService(profile); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
dtoa.cpp 169 int wds = b.size(); local
185 } while (++i < wds);
    [all...]
  /external/chromium_org/base/third_party/dmg_fp/
dtoa.cc 526 int k, maxwds, sign, wds; member in struct:dmg_fp::Bigint
573 rv->sign = rv->wds = 0;
602 y->wds*sizeof(Long) + 2*sizeof(int))
612 int i, wds; variable
624 wds = b->wds;
647 while(++i < wds);
649 if (wds >= b->maxwds) {
655 b->x[wds++] = (ULong)carry;
656 b->wds = wds
    [all...]

Completed in 235 milliseconds