Searched defs:age (Results 1 - 25 of 54) sorted by relevance

123

/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_sampler_view.h67 unsigned age; member in struct:svga_sampler_view
H A Dsvga_resource_texture.h58 unsigned age; member in struct:svga_texture
H A Dsvga_sampler_view.c143 sv->age = tex->age;
174 unsigned age = 0; local
182 age = tex->age;
191 if (v->age < tex->view_age[i])
201 v->age = age;
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_sampler_view.h67 unsigned age; member in struct:svga_sampler_view
H A Dsvga_resource_texture.h58 unsigned age; member in struct:svga_texture
H A Dsvga_sampler_view.c143 sv->age = tex->age;
174 unsigned age = 0; local
182 age = tex->age;
191 if (v->age < tex->view_age[i])
201 v->age = age;
/external/chromium/chrome/browser/policy/
H A Dfile_based_policy_loader.cc140 base::TimeDelta age = now - last_modification_clock_; local
141 if (age < settle_interval_) {
142 *delay = settle_interval_ - age;
/external/chromium_org/base/test/
H A Dtest_reg_util_win.cc44 base::TimeDelta age = now - key_time; local
46 if (age > base::TimeDelta::FromHours(24))
/external/chromium_org/components/policy/core/common/
H A Dasync_policy_loader.cc129 const TimeDelta age = now - last_modification_clock_; local
130 if (age < kSettleInterval) {
131 *delay = kSettleInterval - age;
/external/chromium_org/third_party/WebKit/Source/modules/geolocation/
H A DPositionOptions.h59 void setMaximumAge(int age) argument
61 ASSERT(age >= 0);
63 m_maximumAge = age;
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dctrl_iface_ap.c27 struct os_time now, age; local
34 os_time_sub(&now, &sta->connected_time, &age);
37 (unsigned int) age.sec);
/external/wpa_supplicant_8/src/ap/
H A Dctrl_iface_ap.c27 struct os_time now, age; local
34 os_time_sub(&now, &sta->connected_time, &age);
37 (unsigned int) age.sec);
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dctrl_iface_ap.c27 struct os_time now, age; local
34 os_time_sub(&now, &sta->connected_time, &age);
37 (unsigned int) age.sec);
/external/chromium_org/chrome/browser/password_manager/
H A Dpassword_manager_util_win.cc56 DWORD age = 0; local
62 age = user_info->usri1_password_age;
68 base::Time changed = base::Time::Now() - base::TimeDelta::FromSeconds(age);
114 // Account for clock skew between pulling the password age and
/external/chromium_org/remoting/host/policy_hack/
H A Dpolicy_watcher_linux.cc216 base::TimeDelta age = now - last_modification_clock_; local
217 if (age < kSettleInterval) {
218 *delay = kSettleInterval - age;
/external/chromium_org/chrome/browser/invalidation/
H A Dticl_invalidation_service.cc224 base::TimeDelta age = base::Time::Now() - auth_token_time; local
225 if (age < base::TimeDelta::FromHours(1)) {
228 age,
234 age.InDays());
/external/chromium_org/content/browser/media/
H A Dwebrtc_identity_store_backend.cc224 base::TimeDelta age = base::Time::Now() - base::Time::FromInternalValue( local
226 if (age < validity_period_) {
/external/icu4c/tools/toolutil/
H A Dppucd.h50 UVersionInfo age; member in struct:UniProps
79 /** defaults;0000..10FFFF;age=NA;bc=L;... */
81 /** block;0000..007F;age=1.1;blk=ASCII;ea=Na;... */
/external/chromium_org/third_party/icu/source/i18n/
H A Dislamcal.cpp238 double age = moonAge(origin, status); local
243 if (age >= 0) {
247 age = moonAge(origin, status);
251 } while (age >= 0);
257 age = moonAge(origin, status);
261 } while (age < 0);
274 * Return the "age" of the moon at the given time; this is the difference
279 * @param time The time at which the moon's age is desired,
284 double age = 0; local
291 return age;
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
H A Dradeon_common.c165 uint32_t age; local
168 gp.value = (int *)&age;
177 return age;
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
H A Dradeon_common.c165 uint32_t age; local
168 gp.value = (int *)&age;
177 return age;
/external/chromium_org/v8/src/arm/
H A Dcodegen-arm.cc872 void Code::GetCodeAgeAndParity(byte* sequence, Age* age, argument
875 *age = kNoAgeCodeAge;
881 GetCodeAgeAndParity(stub, age, parity);
888 Code::Age age,
892 if (age == kNoAgeCodeAge) {
896 Code* stub = GetCodeAgeStub(isolate, age, parity);
886 PatchPlatformCodeAge(Isolate* isolate, byte* sequence, Code::Age age, MarkingParity parity) argument
/external/chromium_org/v8/src/mips/
H A Dcodegen-mips.cc639 void Code::GetCodeAgeAndParity(byte* sequence, Age* age, argument
642 *age = kNoAgeCodeAge;
648 GetCodeAgeAndParity(stub, age, parity);
655 Code::Age age,
659 if (age == kNoAgeCodeAge) {
663 Code* stub = GetCodeAgeStub(isolate, age, parity);
653 PatchPlatformCodeAge(Isolate* isolate, byte* sequence, Code::Age age, MarkingParity parity) argument
/external/chromium_org/v8/src/x64/
H A Dcodegen-x64.cc706 void Code::GetCodeAgeAndParity(byte* sequence, Age* age, argument
709 *age = kNoAgeCodeAge;
716 GetCodeAgeAndParity(stub, age, parity);
723 Code::Age age,
727 if (age == kNoAgeCodeAge) {
731 Code* stub = GetCodeAgeStub(isolate, age, parity);
721 PatchPlatformCodeAge(Isolate* isolate, byte* sequence, Code::Age age, MarkingParity parity) argument
/external/icu4c/i18n/
H A Dislamcal.cpp241 double age = moonAge(origin, status); local
246 if (age >= 0) {
250 age = moonAge(origin, status);
254 } while (age >= 0);
260 age = moonAge(origin, status);
264 } while (age < 0);
277 * Return the "age" of the moon at the given time; this is the difference
282 * @param time The time at which the moon's age is desired,
287 double age = 0; local
294 return age;
[all...]

Completed in 1161 milliseconds

123