Searched refs:age (Results 1 - 25 of 102) sorted by relevance

12345

/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/contrib/slapd-modules/autogroup/
H A Dautogroup.c103 ** age - the group to which the member DN will be added
106 autogroup_add_member_to_group( Operation *op, BerValue *dn, BerValue *ndn, autogroup_entry_t *age )
118 dn->bv_val, age->age_dn.bv_val, 0);
128 modlist->sml_desc = age->age_def->agd_member_ad;
129 modlist->sml_type = age->age_def->agd_member_ad->ad_cname;
139 o.o_req_dn = age->age_dn;
140 o.o_req_ndn = age->age_ndn;
156 ** age - the group to which the values will be added
159 autogroup_add_member_values_to_group( Operation *op, Entry *e, autogroup_entry_t *age, AttributeDescription *attrdesc ) argument
170 e->e_name.bv_val, age
271 autogroup_delete_member_values_from_group( Operation *op, Entry *e, autogroup_entry_t *age, AttributeDescription *attrdesc ) argument
328 autogroup_entry_t *age = agg->agg_group; local
386 autogroup_entry_t *age = agg->agg_group; local
455 autogroup_add_members_from_filter( Operation *op, Entry *e, autogroup_entry_t *age, autogroup_filter_t *agf, int modify) argument
723 autogroup_entry_t *age; local
789 autogroup_entry_t *age = agi->agi_entry, local
845 autogroup_entry_t *age, *age_prev, *age_next; local
928 autogroup_entry_t *age; local
1355 autogroup_entry_t *age; local
1455 autogroup_entry_t *age; local
1570 autogroup_entry_t *age; local
1959 autogroup_entry_t *age = agi->agi_entry, local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/Modules/geolocation/
H A DPositionOptions.h59 void setMaximumAge(int age) argument
61 ASSERT(age >= 0);
63 m_maximumAge = age;
/macosx-10.9.5/curl-78.94.1/curl/docs/examples/
H A Dversion-check.pl61 sub age { subroutine
81 my $r = age($doc{$a}) <=> age($doc{$b});
/macosx-10.9.5/libauto-185.5/auto_tester/
H A DWhiteBoxTest.h51 - (void)blockBecameGlobal:(void *)block withAge:(uint32_t)age;
54 - (void)blockMatured:(void *)block newAge:(uint32_t)age;
H A Dauto_tester.h46 void (*auto_probe_mature)(void *address, unsigned char age);
47 void (*auto_probe_make_global)(void *address, unsigned char age);
H A DWhiteBoxTest.m89 static void auto_probe_mature(void *address, unsigned char age)
91 PROBE_IMPL([script blockMatured:address newAge:age]);
94 static void auto_probe_make_global(void *address, unsigned char age)
96 PROBE_IMPL([script blockBecameGlobal:address withAge:age]);
196 - (void)blockBecameGlobal:(void *)block withAge:(uint32_t)age
200 - (void)blockMatured:(void *)block newAge:(uint32_t)age
H A DBlockLifetime.m39 verify block is scanned exactly once and age decrements by 1
40 until test block age becomes 0.
154 // This method runs generational collections until the block reaches age 0
165 // We are done iterating, the block is now age 0.
194 [self fail:@"age 0 block scanned during generational collection"];
235 - (void)blockBecameGlobal:(void *)block withAge:(uint32_t)age
239 _age = age;
241 [super blockBecameGlobal:block withAge:age];
246 - (void)blockMatured:(void *)block newAge:(uint32_t)age
249 if (age !
[all...]
H A DRadar5983285.m152 - (void)blockBecameGlobal:(void *)block withAge:(uint32_t)age
158 [super blockBecameGlobal:block withAge:age];
/macosx-10.9.5/ruby-104/ruby/test/ostruct/
H A Dtest_ostruct.rb6 h = {name: "John Smith", age: 70, pension: 300}
89 h = {name: "John Smith", age: 70, pension: 300}
94 to_h[:age] = 71
95 assert_equal(70, os.age)
96 assert_equal(70, h[:age])
98 assert_equal(h, OpenStruct.new("name" => "John Smith", "age" => 70, pension: 300).to_h)
102 h = {name: "John Smith", age: 70, pension: 300}
104 assert_equal '#<Enumerator: #<OpenStruct name="John Smith", age=70, pension=300>:each_pair>', os.each_pair.inspect
105 assert_equal [[:name, "John Smith"], [:age, 70], [:pension, 300]], os.each_pair.to_a
109 os1 = OpenStruct.new age
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/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...]
/macosx-10.9.5/hfs-226.1.1/fsck_hfs/dfalib/
H A DBlockCache.c36 int age,
38 static OSStatus ReleaseFragmentedBlock (SFCB *file, BlockDescriptor *block, int age);
111 int age; local
116 age = ((options & kTrashBlock) != 0);
130 result = CacheWrite(cache, buffer, age, 0);
132 result = CacheRelease (cache, buffer, age);
196 int age; local
201 age = ((options & kTrashBlock) != 0);
209 result = WriteFragmentedBlock(file, block, age, writeOptions);
211 result = CacheWrite(cache, buffer, age, writeOption
323 WriteFragmentedBlock( SFCB *file, BlockDescriptor *block, int age, uint32_t writeOptions ) argument
374 ReleaseFragmentedBlock(SFCB *file, BlockDescriptor *block, int age) argument
[all...]
/macosx-10.9.5/ruby-104/ruby/lib/rubygems/
H A Dsecurity.rb404 # the key is from the current time to +age+ which defaults to one year.
408 def self.create_cert subject, key, age = ONE_YEAR, extensions = EXTENSIONS,
417 cert.not_after = Time.now + age
435 def self.create_cert_email email, key, age = ONE_YEAR, extensions = EXTENSIONS
440 create_cert_self_signed subject, key, age, extensions
447 def self.create_cert_self_signed subject, key, age = ONE_YEAR,
449 certificate = create_cert subject, key, age, extensions
451 sign certificate, key, certificate, age, extensions, serial
483 def self.re_sign expired_certificate, private_key, age = ONE_YEAR,
502 create_cert_self_signed(expired_certificate.subject, private_key, age,
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DCodeCache.h123 SourceCodeValue(VM& vm, JSCell* cell, int64_t age) argument
125 , age(age)
130 int64_t age; member in struct:JSC::SourceCodeValue
162 int64_t age = m_age - addResult.iterator->value.age; local
163 if (age > m_capacity) {
168 } else if (age < m_capacity / 2) {
177 addResult.iterator->value.age = m_age;
195 int64_t age() { retur function in class:JSC::CodeCacheMap
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/contrib/slapd-tools/
H A Dstatslog37 --sort -s Sort input files by age. Implies --join.
144 my $age = -M $file;
145 if (defined($age)) {
146 push(@fileinfo, [$age, $file]);
/macosx-10.9.5/ruby-104/ruby/enc/unicode/
H A Dname2ctype.h.blt26269 char uniname2ctype_pool_str612[sizeof("age=1.1")];
26271 char uniname2ctype_pool_str614[sizeof("age=2.1")];
26277 char uniname2ctype_pool_str621[sizeof("age=5.1")];
26279 char uniname2ctype_pool_str623[sizeof("age=5.2")];
26280 char uniname2ctype_pool_str626[sizeof("age=2.0")];
26285 char uniname2ctype_pool_str633[sizeof("age=5.0")];
26288 char uniname2ctype_pool_str638[sizeof("age=6.1")];
26289 char uniname2ctype_pool_str639[sizeof("age=3.1")];
26291 char uniname2ctype_pool_str641[sizeof("age=3.2")];
26292 char uniname2ctype_pool_str642[sizeof("age
[all...]
H A Dname2ctype.h26269 char uniname2ctype_pool_str612[sizeof("age=1.1")];
26271 char uniname2ctype_pool_str614[sizeof("age=2.1")];
26277 char uniname2ctype_pool_str621[sizeof("age=5.1")];
26279 char uniname2ctype_pool_str623[sizeof("age=5.2")];
26280 char uniname2ctype_pool_str626[sizeof("age=2.0")];
26285 char uniname2ctype_pool_str633[sizeof("age=5.0")];
26288 char uniname2ctype_pool_str638[sizeof("age=6.1")];
26289 char uniname2ctype_pool_str639[sizeof("age=3.1")];
26291 char uniname2ctype_pool_str641[sizeof("age=3.2")];
26292 char uniname2ctype_pool_str642[sizeof("age
[all...]
/macosx-10.9.5/Heimdal-323.92.1/admin/
H A Dpurge.c99 * than `age'
109 int age; local
113 age = parse_time(opt->age_string, "s");
114 if(age < 0) {
151 && judgement_day - e->timestamp > age) {
/macosx-10.9.5/libauto-185.5/
H A DLarge.cpp50 Large::Large(Zone *zone, usword_t vm_size, usword_t size, usword_t layout, usword_t refcount, usword_t age, const WriteBarrier &wb) argument
51 : _prev(NULL), _next(NULL), _zone(zone), _vm_size(vm_size), _size(size), _layout(layout), _refcount(refcount), _age(age),
H A DLarge.h63 usword_t _age; // block age
70 Large(Zone *zone, usword_t vm_size, usword_t size, usword_t layout, usword_t refcount, usword_t age, const WriteBarrier &wb);
180 inline usword_t age() const { return _age; } function in class:Auto::Large
/macosx-10.9.5/ruby-104/ruby/test/etc/
H A Dtest_etc.rb21 assert(s.age.is_a?(Integer) || s.age.is_a?(String)) if s.respond_to?(:age)
/macosx-10.9.5/hfs-226.1.1/fsck_hfs/
H A Dcache.h207 int CacheWrite ( Cache_t *cache, Buf_t *buf, int age, uint32_t writeOptions );
216 int CacheRelease (Cache_t *cache, Buf_t *buf, int age);
/macosx-10.9.5/apache-786.1/httpd/modules/cache/
H A Dcache_util.c146 /* do a HTTP/1.1 age calculation */
157 /* Perform an HTTP/1.1 age calculation. (RFC2616 13.2.3) */
185 * request dies, the lock will be trashed when its max-age is reached,
403 apr_int64_t age, maxage_req, maxage_cresp, maxage, smaxage, maxstale; local
438 * maximum age an object can be before it is considered stale. This
442 * - RFC2616 14.9.4 Cache-Control: max-age this header can appear in both
486 /* calculate age of object */
487 age = ap_cache_current_age(info, age_c, r->request_time);
498 /* extract max-age from request */
500 && cc_req && ap_cache_liststr(r->pool, cc_req, "max-age",
[all...]
/macosx-10.9.5/bind9-45.100/bind9/contrib/zkt/
H A Drollover.c230 time_t age; local
247 age = dki_age (ksk, currtime);
253 if ( lifetime > 0 && age > lifetime && !fileexist (path) ) /* lifetime is over and no kskrollover in progress */
278 ksk->tag, str_delspace (age2str (age)));
280 zp->zone, ksk->tag, str_delspace (age2str (age - lifetime)));
539 time_t age; local
596 age = dki_age (akey, currtime);
597 if ( lifetime > 0 && age > lifetime - (OFFSET) )
625 domain, akey->tag, str_delspace (age2str (age - lifetime)));
/macosx-10.9.5/curl-78.94.1/curl/lib/
H A Dsslgen.c265 (*general_age)++; /* increase general age */
266 check->age = *general_age; /* set this as used in this age */
294 session->age = 0; /* fresh */
339 long oldest_age=data->state.session[0].age; /* zero if unused */
366 if(data->state.session[i].age < oldest_age) {
367 oldest_age = data->state.session[i].age;
380 store->age = *general_age; /* set current age */
/macosx-10.9.5/CPANInternal-140/SQL-Abstract/t/
H A D07subqueries.t68 = $sql->where({age => [{"<" => 10}, {">" => 20}]});
76 stmt => " WHERE ( NOT ( ( ( ( age < ? ) OR ( age > ? ) ) ) ) AND lname LIKE ? )",

Completed in 476 milliseconds

12345