Searched refs:lo (Results 1 - 25 of 456) sorted by relevance

1234567891011>>

/macosx-10.9.5/IOAudioFamily-197.4.2/
H A DBigNum128.h32 U128(uint64_t lo = 0) : lo(lo), hi(0) { };
33 U128(uint64_t hi, uint64_t lo) : lo(lo), hi(hi) { }; argument
34 inline bool operator==( const U128 &A ) const { return ( A.hi == hi ) && ( A.lo == lo ); }
35 inline bool operator>( const U128 &A ) const { return ( ( A.hi > hi ) || ( ( A.hi == hi ) && ( A.lo > lo ) ) ); }
137 uint64_t lo; member in class:U128
139 uint64_t lo; member in class:U128
[all...]
/macosx-10.9.5/dcerpc-58/dcerpc/uuid/
H A Duuid_i.h129 * add lo and high order longword separately, using sign bits of the low-order
143 if (!(((add1)->lo&0x80000000UL) ^ ((add2)->lo&0x80000000UL))) \
145 if (((add1)->lo&0x80000000UL)) \
147 (sum)->lo = (add1)->lo + (add2)->lo ; \
152 (sum)->lo = (add1)->lo + (add2)->lo ; \
235 unsigned32 lo; member in struct:__anon8286
241 unsigned32 lo; member in struct:__anon8287
[all...]
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/string/
H A Dstrsearch.c42 register char* lo = (char*)tab; local
43 register char* hi = lo + (num - 1) * siz;
47 while (lo <= hi)
49 mid = lo + (((hi - lo) / siz) / 2) * siz;
53 lo = mid + siz;
H A Dstrpsearch.c55 register char* lo = (char*)tab; local
56 register char* hi = lo + (num - 1) * siz;
71 while (lo <= hi)
73 mid = lo + (sequential ? 0 : (((hi - lo) / siz) / 2) * siz);
99 while ((mid -= siz) >= lo && (s = *((unsigned char**)mid)) && ((c == MAP(m, *s)) || *s == '[' && c == MAP(m, *(s + 1))));
120 lo = mid + siz;
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/contrib/slapd-modules/nssov/
H A DMakefile45 XOBJS = tio.lo
47 OBJS = alias.lo ether.lo group.lo host.lo netgroup.lo network.lo \
48 nssov.lo passwd.lo protocol.lo rp
[all...]
/macosx-10.9.5/apache-786.1/httpd/srclib/apr-util/
H A Dbuild-outputs.mk3 buckets/apr_brigade.lo: buckets/apr_brigade.c .make.dirs include/apr_buckets.h
4 buckets/apr_buckets.lo: buckets/apr_buckets.c .make.dirs include/apr_buckets.h
5 buckets/apr_buckets_alloc.lo: buckets/apr_buckets_alloc.c .make.dirs include/apr_buckets.h
6 buckets/apr_buckets_eos.lo: buckets/apr_buckets_eos.c .make.dirs include/apr_buckets.h
7 buckets/apr_buckets_file.lo: buckets/apr_buckets_file.c .make.dirs include/apr_buckets.h
8 buckets/apr_buckets_flush.lo: buckets/apr_buckets_flush.c .make.dirs include/apr_buckets.h
9 buckets/apr_buckets_heap.lo: buckets/apr_buckets_heap.c .make.dirs include/apr_buckets.h
10 buckets/apr_buckets_mmap.lo: buckets/apr_buckets_mmap.c .make.dirs include/apr_buckets.h
11 buckets/apr_buckets_pipe.lo: buckets/apr_buckets_pipe.c .make.dirs include/apr_buckets.h
12 buckets/apr_buckets_pool.lo
[all...]
/macosx-10.9.5/apr-30/apr-util/apr-util/
H A Dbuild-outputs.mk3 buckets/apr_brigade.lo: buckets/apr_brigade.c .make.dirs include/apr_buckets.h
4 buckets/apr_buckets.lo: buckets/apr_buckets.c .make.dirs include/apr_buckets.h
5 buckets/apr_buckets_alloc.lo: buckets/apr_buckets_alloc.c .make.dirs include/apr_buckets.h
6 buckets/apr_buckets_eos.lo: buckets/apr_buckets_eos.c .make.dirs include/apr_buckets.h
7 buckets/apr_buckets_file.lo: buckets/apr_buckets_file.c .make.dirs include/apr_buckets.h
8 buckets/apr_buckets_flush.lo: buckets/apr_buckets_flush.c .make.dirs include/apr_buckets.h
9 buckets/apr_buckets_heap.lo: buckets/apr_buckets_heap.c .make.dirs include/apr_buckets.h
10 buckets/apr_buckets_mmap.lo: buckets/apr_buckets_mmap.c .make.dirs include/apr_buckets.h
11 buckets/apr_buckets_pipe.lo: buckets/apr_buckets_pipe.c .make.dirs include/apr_buckets.h
12 buckets/apr_buckets_pool.lo
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/contrib/slapd-modules/comp_match/
H A DMakefile39 componentlib.lo: componentlib.c
42 certificate.lo: certificate.c
45 crl.lo: crl.c
48 authorityKeyIdentifier.lo: authorityKeyIdentifier.c
51 asn_to_syn_mr.lo: asn_to_syn_mr.c
54 init.lo: init.c
57 compmatch.la: componentlib.lo init.lo certificate.lo asn_to_syn_mr.lo authorityKeyIdentifie
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/libraries/libldap/
H A Dtls2.c106 ldap_int_tls_destroy( struct ldapoptions *lo )
108 if ( lo->ldo_tls_ctx ) {
109 ldap_pvt_tls_ctx_free( lo->ldo_tls_ctx );
110 lo->ldo_tls_ctx = NULL;
113 if ( lo->ldo_tls_certfile ) {
114 LDAP_FREE( lo->ldo_tls_certfile );
115 lo->ldo_tls_certfile = NULL;
117 if ( lo->ldo_tls_keyfile ) {
118 LDAP_FREE( lo->ldo_tls_keyfile );
119 lo
155 struct ldapoptions *lo = LDAP_INT_GLOBAL_OPT(); local
198 ldap_int_tls_init_ctx( struct ldapoptions *lo, int is_server ) argument
286 struct ldapoptions *lo = LDAP_INT_GLOBAL_OPT(); local
303 struct ldapoptions *lo = LDAP_INT_GLOBAL_OPT(); local
348 struct ldapoptions *lo; local
599 struct ldapoptions *lo; local
711 struct ldapoptions *lo; local
1344 struct ldapoptions *lo = LDAP_INT_GLOBAL_OPT(); local
[all...]
H A Doptions.c98 struct ldapoptions *lo; local
107 lo = LDAP_INT_GLOBAL_OPT();
108 if (NULL == lo) {
112 if( lo->ldo_valid != LDAP_INITIALIZED ) {
113 ldap_int_initialize(lo, NULL);
132 lo = &ld->ld_options;
140 LDAP_MUTEX_LOCK( &lo->ldo_mutex );
200 if ( lo->ldo_tm_api.tv_sec < 0 ) {
202 } else if ( ldap_int_timeval_dup( outvalue, &lo->ldo_tm_api ) != 0 ) {
210 if ( lo
440 struct ldapoptions *lo; local
[all...]
/macosx-10.9.5/Security-55471.14.18/include/security_asn1/
H A Dprlong.h78 #define LL_INIT(hi, lo) ((hi ## L << 32) + lo ## L)
80 #define LL_INIT(hi, lo) ((hi ## i64 << 32) + lo ## i64)
82 #define LL_INIT(hi, lo) ((hi ## LL << 32) + lo ## LL)
197 #define LL_INIT(hi, lo) {PR_INT32(lo), PR_INT32(hi)}
199 #define LL_INIT(hi, lo) {PR_INT32(hi), PR_INT32(lo)}
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_asn1/Security/
H A Dprlong.h78 #define LL_INIT(hi, lo) ((hi ## L << 32) + lo ## L)
80 #define LL_INIT(hi, lo) ((hi ## i64 << 32) + lo ## i64)
82 #define LL_INIT(hi, lo) ((hi ## LL << 32) + lo ## LL)
197 #define LL_INIT(hi, lo) {PR_INT32(lo), PR_INT32(hi)}
199 #define LL_INIT(hi, lo) {PR_INT32(hi), PR_INT32(lo)}
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_asn1/lib/
H A Dprlong.h78 #define LL_INIT(hi, lo) ((hi ## L << 32) + lo ## L)
80 #define LL_INIT(hi, lo) ((hi ## i64 << 32) + lo ## i64)
82 #define LL_INIT(hi, lo) ((hi ## LL << 32) + lo ## LL)
197 #define LL_INIT(hi, lo) {PR_INT32(lo), PR_INT32(hi)}
199 #define LL_INIT(hi, lo) {PR_INT32(hi), PR_INT32(lo)}
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_asn1/security_asn1/
H A Dprlong.h78 #define LL_INIT(hi, lo) ((hi ## L << 32) + lo ## L)
80 #define LL_INIT(hi, lo) ((hi ## i64 << 32) + lo ## i64)
82 #define LL_INIT(hi, lo) ((hi ## LL << 32) + lo ## LL)
197 #define LL_INIT(hi, lo) {PR_INT32(lo), PR_INT32(hi)}
199 #define LL_INIT(hi, lo) {PR_INT32(hi), PR_INT32(lo)}
[all...]
/macosx-10.9.5/swig-10/Source/DOH/
H A Dlist.c39 static DOH *CopyList(DOH *lo) { argument
42 l = (List *) ObjData(lo);
64 static void DelList(DOH *lo) { argument
65 List *l = (List *) ObjData(lo);
79 static void List_clear(DOH *lo) { argument
80 List *l = (List *) ObjData(lo);
95 static int List_insert(DOH *lo, int pos, DOH *item) { argument
96 List *l = (List *) ObjData(lo);
128 static int List_remove(DOH *lo, int pos) { argument
129 List *l = (List *) ObjData(lo);
150 List_len(DOH *lo) argument
161 List_get(DOH *lo, int n) argument
177 List_set(DOH *lo, int n, DOH *val) argument
199 List_first(DOH *lo) argument
237 List_str(DOH *lo) argument
264 List_dump(DOH *lo, DOH *out) argument
277 List_setfile(DOH *lo, DOH *file) argument
291 List_getfile(DOH *lo) argument
296 List_setline(DOH *lo, int line) argument
301 List_getline(DOH *lo) argument
369 DohSortList(DOH *lo, int (*cmp) (const DOH *, const DOH *)) argument
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/tcl/
H A Dtcl_util.c37 int cmdindex, hi, lo, result, ret; local
67 Tcl_WrongNumArgs(interp, 2, objv, "lo hi");
71 Tcl_GetIntFromObj(interp, objv[2], &lo)) != TCL_OK)
76 if (lo < 0 || hi < 0) {
83 ret = lo + rand() % ((hi - lo) + 1);
95 Tcl_GetIntFromObj(interp, objv[2], &lo)) == TCL_OK) {
96 srand((u_int)lo);
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/contrib/slapd-modules/cloak/
H A DMakefile9 cloak.lo: cloak.c
12 cloak.la: cloak.lo
17 rm cloak.lo cloak.la
/macosx-10.9.5/apr-30/apr/apr/
H A Dbuild-outputs.mk3 passwd/apr_getpass.lo: passwd/apr_getpass.c .make.dirs include/apr_allocator.h include/apr_errno.h include/apr_general.h include/apr_lib.h include/apr_pools.h include/apr_strings.h include/apr_thread_mutex.h include/apr_want.h
4 strings/apr_cpystrn.lo: strings/apr_cpystrn.c .make.dirs include/apr_allocator.h include/apr_errno.h include/apr_general.h include/apr_lib.h include/apr_pools.h include/apr_strings.h include/apr_thread_mutex.h include/apr_want.h
5 strings/apr_fnmatch.lo: strings/apr_fnmatch.c .make.dirs include/apr_allocator.h include/apr_errno.h include/apr_file_info.h include/apr_fnmatch.h include/apr_general.h include/apr_lib.h include/apr_pools.h include/apr_strings.h include/apr_tables.h include/apr_thread_mutex.h include/apr_time.h include/apr_user.h include/apr_want.h
6 strings/apr_snprintf.lo: strings/apr_snprintf.c .make.dirs include/apr_allocator.h include/apr_dso.h include/apr_errno.h include/apr_file_info.h include/apr_file_io.h include/apr_general.h include/apr_global_mutex.h include/apr_inherit.h include/apr_lib.h include/apr_network_io.h include/apr_pools.h include/apr_portable.h include/apr_proc_mutex.h include/apr_shm.h include/apr_strings.h include/apr_tables.h include/apr_thread_mutex.h include/apr_thread_proc.h include/apr_time.h include/apr_user.h include/apr_want.h
7 strings/apr_strings.lo: strings/apr_strings.c .make.dirs include/apr_allocator.h include/apr_errno.h include/apr_general.h include/apr_lib.h include/apr_pools.h include/apr_strings.h include/apr_thread_mutex.h include/apr_want.h
8 strings/apr_strnatcmp.lo: strings/apr_strnatcmp.c .make.dirs include/apr_allocator.h include/apr_errno.h include/apr_general.h include/apr_lib.h include/apr_pools.h include/apr_strings.h include/apr_thread_mutex.h include/apr_want.h
9 strings/apr_strtok.lo: strings/apr_strtok.c .make.dirs include/apr_allocator.h include/apr_errno.h include/apr_general.h include/apr_pools.h include/apr_strings.h include/apr_thread_mutex.h include/apr_want.h
10 tables/apr_hash.lo: tables/apr_hash.c .make.dirs include/apr_allocator.h include/apr_errno.h include/apr_general.h include/apr_hash.h include/apr_pools.h include/apr_thread_mutex.h include/apr_want.h
11 tables/apr_tables.lo: tables/apr_tables.c .make.dirs include/apr_allocator.h include/apr_errno.h include/apr_general.h include/apr_lib.h include/apr_pools.h include/apr_strings.h include/apr_tables.h include/apr_thread_mutex.h include/apr_want.h
13 OBJECTS_all = passwd/apr_getpass.lo string
[all...]
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/
H A Dbuild-outputs.mk3 passwd/apr_getpass.lo: passwd/apr_getpass.c .make.dirs include/apr_allocator.h include/apr_errno.h include/apr_general.h include/apr_lib.h include/apr_pools.h include/apr_strings.h include/apr_thread_mutex.h include/apr_want.h
4 strings/apr_cpystrn.lo: strings/apr_cpystrn.c .make.dirs include/apr_allocator.h include/apr_errno.h include/apr_general.h include/apr_lib.h include/apr_pools.h include/apr_strings.h include/apr_thread_mutex.h include/apr_want.h
5 strings/apr_fnmatch.lo: strings/apr_fnmatch.c .make.dirs include/apr_allocator.h include/apr_errno.h include/apr_file_info.h include/apr_fnmatch.h include/apr_general.h include/apr_lib.h include/apr_pools.h include/apr_strings.h include/apr_tables.h include/apr_thread_mutex.h include/apr_time.h include/apr_user.h include/apr_want.h
6 strings/apr_snprintf.lo: strings/apr_snprintf.c .make.dirs include/apr_allocator.h include/apr_dso.h include/apr_errno.h include/apr_file_info.h include/apr_file_io.h include/apr_general.h include/apr_global_mutex.h include/apr_inherit.h include/apr_lib.h include/apr_network_io.h include/apr_pools.h include/apr_portable.h include/apr_proc_mutex.h include/apr_shm.h include/apr_strings.h include/apr_tables.h include/apr_thread_mutex.h include/apr_thread_proc.h include/apr_time.h include/apr_user.h include/apr_want.h
7 strings/apr_strings.lo: strings/apr_strings.c .make.dirs include/apr_allocator.h include/apr_errno.h include/apr_general.h include/apr_lib.h include/apr_pools.h include/apr_strings.h include/apr_thread_mutex.h include/apr_want.h
8 strings/apr_strnatcmp.lo: strings/apr_strnatcmp.c .make.dirs include/apr_allocator.h include/apr_errno.h include/apr_general.h include/apr_lib.h include/apr_pools.h include/apr_strings.h include/apr_thread_mutex.h include/apr_want.h
9 strings/apr_strtok.lo: strings/apr_strtok.c .make.dirs include/apr_allocator.h include/apr_errno.h include/apr_general.h include/apr_pools.h include/apr_strings.h include/apr_thread_mutex.h include/apr_want.h
10 tables/apr_hash.lo: tables/apr_hash.c .make.dirs include/apr_allocator.h include/apr_errno.h include/apr_general.h include/apr_hash.h include/apr_pools.h include/apr_thread_mutex.h include/apr_time.h include/apr_want.h
11 tables/apr_tables.lo: tables/apr_tables.c .make.dirs include/apr_allocator.h include/apr_errno.h include/apr_general.h include/apr_lib.h include/apr_pools.h include/apr_strings.h include/apr_tables.h include/apr_thread_mutex.h include/apr_want.h
13 OBJECTS_all = passwd/apr_getpass.lo string
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/contrib/slapd-modules/passwd/
H A DMakefile6 kerberos.lo: kerberos.c
9 kerberos.la: kerberos.lo
13 netscape.lo: netscape.c
16 netscape.la: netscape.lo
20 radius.lo: radius.c
23 radius.la: radius.lo
27 apr1.lo: apr1.c
30 apr1.la: apr1.lo
35 rm -f kerberos.lo kerberos.la
36 rm -f netscape.lo netscap
[all...]
/macosx-10.9.5/CPANInternal-140/Template-Toolkit/t/
H A Dstring.t88 [% lo = String.new('world') -%]
89 [% hw = String.new(text="$hi $lo") -%]
91 lo: [[% lo %]]
95 lo: [world]
100 [% lo = hi.new('world') -%]
102 lo: [[% lo %]]
105 lo: [world]
109 [% lo
[all...]
/macosx-10.9.5/CPANInternal-140/Template-Toolkit-2.24/t/
H A Dstring.t88 [% lo = String.new('world') -%]
89 [% hw = String.new(text="$hi $lo") -%]
91 lo: [[% lo %]]
95 lo: [world]
100 [% lo = hi.new('world') -%]
102 lo: [[% lo %]]
105 lo: [world]
109 [% lo
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/contrib/slapd-modules/samba4/
H A DMakefile44 pguid.lo: pguid.c
47 pguid.la: pguid.lo
51 rdnval.lo: rdnval.c
54 rdnval.la: rdnval.lo
58 vernum.lo: vernum.c
61 vernum.la: vernum.lo
67 pguid.o pguid.lo pguid.la \
68 rdnval.o rdnval.lo rdnval.la \
69 vernum.o vernum.lo vernum.la
/macosx-10.9.5/cxxfilt-11/cxxfilt/bfd/
H A DMakefile.am39 archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo \
40 cache.lo coffgen.lo corefile.lo \
41 format.lo init.lo libbf
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/contrib/slapd-modules/autogroup/
H A DMakefile14 autogroup.lo: autogroup.c
17 autogroup.la: autogroup.lo
22 rm -f autogroup.lo autogroup.la

Completed in 460 milliseconds

1234567891011>>