Searched refs:le (Results 1 - 25 of 267) sorted by relevance

1234567891011

/macosx-10.10/ICU-531.30/icuSources/layout/
H A Dloengine.cpp33 LayoutEngine *le = (LayoutEngine *) engine; local
35 delete le;
49 LayoutEngine *le = (LayoutEngine *) engine; local
51 if (le == NULL) {
56 return le->layoutChars(chars, offset, count, max, rightToLeft, x, y, *success);
63 LayoutEngine *le = (LayoutEngine *) engine; local
65 if (le == NULL) {
70 return le->getGlyphCount();
78 LayoutEngine *le = (LayoutEngine *) engine; local
80 if (le
93 LayoutEngine *le = (LayoutEngine *) engine; local
109 LayoutEngine *le = (LayoutEngine *) engine; local
124 LayoutEngine *le = (LayoutEngine *) engine; local
141 LayoutEngine *le = (LayoutEngine *) engine; local
155 LayoutEngine *le = (LayoutEngine *) engine; local
[all...]
/macosx-10.10/libarchive-30/libarchive/libarchive/
H A Darchive_entry_link_resolver.c149 struct links_entry *le; local
155 while ((le = next_entry(res)) != NULL)
156 archive_entry_free(le->entry);
167 struct links_entry *le; local
173 le = next_entry(res);
174 if (le != NULL) {
175 *e = le->entry;
176 le->entry = NULL;
192 le = find_entry(res, *e);
193 if (le !
251 struct links_entry *le; local
306 struct links_entry *le; local
341 struct links_entry *le; local
373 struct links_entry *le, **new_buckets; local
[all...]
H A Darchive_read_support_format_cpio.c730 struct links_entry *le; local
744 for (le = cpio->links_head; le; le = le->next) {
745 if (le->dev == dev && le->ino == ino) {
746 archive_entry_copy_hardlink(entry, le->name);
748 if (--le->links <= 0) {
749 if (le
[all...]
/macosx-10.10/bind9-45.101/bind9/unit/atf-src/atf-c/detail/
H A Dlist.c52 entry_to_citer(const atf_list_t *l, const struct list_entry *le) argument
56 iter.m_entry = le;
62 entry_to_iter(atf_list_t *l, struct list_entry *le) argument
66 iter.m_entry = le;
74 struct list_entry *le; local
76 le = (struct list_entry *)malloc(sizeof(*le));
77 if (le != NULL) {
78 le->m_prev = le
89 delete_entry(struct list_entry *le) argument
102 struct list_entry *le; local
127 const struct list_entry *le = citer.m_entry; local
135 const struct list_entry *le = citer.m_entry; local
164 const struct list_entry *le = iter.m_entry; local
172 const struct list_entry *le = iter.m_entry; local
230 struct list_entry *le; local
254 struct list_entry *le = l->m_begin; local
261 const struct list_entry *le = l->m_begin; local
357 struct list_entry *le, *next, *prev; local
[all...]
/macosx-10.10/xnu-2782.1.97/osfmk/kern/
H A Dledger.c305 struct ledger_entry *le; local
310 le = &ledger->l_entries[entry];
311 if ((le->le_flags & LF_ENTRY_ACTIVE) == 0) {
312 flag_set(&le->le_flags, LF_ENTRY_ACTIVE);
374 struct ledger_entry *le = &ledger->l_entries[i]; local
377 le->le_flags = et->et_flags;
380 flag_clear(&le->le_flags, LF_ENTRY_ACTIVE);
386 flag_set(&le->le_flags, LEDGER_ACTION_CALLBACK);
387 le->le_credit = 0;
388 le
461 warn_level_exceeded(struct ledger_entry *le) argument
481 limit_exceeded(struct ledger_entry *le) argument
513 ledger_limit_entry_wakeup(struct ledger_entry *le) argument
534 struct ledger_entry *le; local
657 struct ledger_entry *le; local
765 struct ledger_entry *le; local
819 struct ledger_entry *le; local
843 struct ledger_entry *le; local
868 struct ledger_entry *le; local
907 struct ledger_entry *le; local
1059 struct ledger_entry *le; local
1076 struct ledger_entry *le; local
1119 struct ledger_entry *le; local
1179 struct ledger_entry *le; local
1309 struct ledger_entry *le; local
1380 struct ledger_entry *le; local
1418 struct ledger_entry *le; local
1434 struct ledger_entry *le; local
1449 struct ledger_entry *le; local
1464 struct ledger_entry *le; local
1518 ledger_fill_entry_info(struct ledger_entry *le, struct ledger_entry_info *lei, uint64_t now) argument
1540 struct ledger_entry *le; local
1577 struct ledger_entry *le = &ledger->l_entries[entry]; local
[all...]
/macosx-10.10/file_cmds-242/du/
H A Ddu.c383 struct links_entry *le, **new_buckets; local
408 le = free_list;
409 free_list = le->next;
410 free(le);
424 le = buckets[i];
425 buckets[i] = le->next;
428 hash = (le->dev ^ le->ino) % new_size;
432 le;
433 le
516 struct links_entry *le, **new_buckets; local
[all...]
/macosx-10.10/dtrace-147/tools/ctfconvert/
H A Dlist.c49 list_t *le; local
51 le = xmalloc(sizeof (list_t));
52 le->l_data = data;
53 le->l_next = *list;
54 *list = le;
82 list_t *le, **le2; local
88 for (le = *list, le2 = list; le; le2 = &le->l_next, le
103 list_t *le; local
[all...]
H A Dtdata.c277 labelent_t *le = xmalloc(sizeof (*le)); local
279 le->le_name = xstrdup(label);
280 le->le_idx = (idx == -1 ? td->td_nextid - 1 : idx);
282 slist_add(&td->td_labels, le, (int (*)())tdata_label_cmp);
288 labelent_t *le = data; local
291 *topp = le;
307 tdata_label_find_cb(labelent_t *le, labelent_t *tmpl) argument
309 return (streq(le->le_name, tmpl->le_name));
335 labelent_t *le local
354 tdata_label_free_cb(labelent_t *le, void *private) argument
[all...]
/macosx-10.10/curl-83.1.2/curl/lib/
H A Dhash.c157 struct curl_llist_element *le; local
160 for(le = l->head; le; le = le->next) {
161 he = (struct curl_hash_element *) le->ptr;
163 Curl_llist_remove(l, le, (void *)h);
191 struct curl_llist_element *le; local
195 for(le = l->head; le; l
209 struct curl_llist_element *le; local
231 struct curl_llist_element *le; local
264 struct curl_llist_element *le; local
[all...]
/macosx-10.10/BerkeleyDB-21/db/docs_src/ref/install/
H A DMakefile3 COPY= magic.txt magic.s5.be.txt magic.s5.le.txt
/macosx-10.10/bash-94.1.2/bash-3.2/examples/functions/
H A Dksh-compat-test10 -lt|-gt|-eq|-ne|-le|-ge) n1=$(( $1 ))
25 -lt|-gt|-eq|-ne|-le|-ge) n1=$(( $1 ))
/macosx-10.10/BerkeleyDB-21/db/rep/
H A Drep_lease.c125 REP_LEASE_ENTRY *le, *table; local
144 le = &table[i];
145 le->eid = DB_EID_INVALID;
146 timespecclear(&le->start_time);
147 timespecclear(&le->end_time);
148 ZERO_LSN(le->lease_lsn);
169 REP_LEASE_ENTRY *le; local
179 le = NULL;
186 __rep_find_entry(env, rep, eid, &le);
191 DB_ASSERT(env, le !
233 REP_LEASE_ENTRY *le, *table; local
273 REP_LEASE_ENTRY *le, *table; local
425 REP_LEASE_ENTRY *le, *table; local
[all...]
/macosx-10.10/rsync-45/rsync/popt/
H A Dpopthelp.c123 char * le = malloc(4*lineLength + 1); local
124 char * l = le;
126 if (le == NULL) return NULL; /* XXX can't happen */
127 *le = '\0';
128 *le++ = '(';
129 strcpy(le, defstr); le += strlen(le);
130 *le++ = ':';
131 *le
222 char * le = left + strlen(left); local
[all...]
/macosx-10.10/CPANInternal-159.1/Log-Log4perl-1.40/eg/benchmarks/
H A DMakefile3 perl -I../../blib/lib -MLog::Log4perl -le 'print $$Log::Log4perl::VERSION'
/macosx-10.10/shell_cmds-179/test/
H A DTEST.csh130 echo 't 200 -le 200'
131 t 200 -le 200
132 echo 't 340 -le 222'
133 t 340 -le 222
135 echo 't 700 -le 1000 -a -n "1" -a "20" = "20"'
136 t 700 -le 1000 -a -n "1" -a "20" = "20"
137 echo 't ! \( 700 -le 1000 -a -n "1" -a "20" = "20" \)'
138 t ! \( 700 -le 1000 -a -n "1" -a "20" = "20" \)
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/contrib/ldapc++/src/
H A DLdifWriter.h18 void writeRecord(const LDAPEntry& le);
H A DLDAPEntry.cpp101 ostream& operator << (ostream& s, const LDAPEntry& le){ argument
102 s << "DN: " << le.m_dn << ": " << *(le.m_attrs);
H A DLdifWriter.cpp32 void LdifWriter::writeRecord(const LDAPEntry& le) argument
43 line << "dn: " << le.getDN();
46 const LDAPAttributeList *al = le.getAttributes();
/macosx-10.10/bash-94.1.2/bash-3.2/examples/scripts.v2/
H A Dshprof32 while read -r && [ $i -le $NLINE ]; do
48 while [ $i -le $NLINE ]; do
/macosx-10.10/dtrace-147/test/tst/common/aggs/
H A Dtst.aggpackbanner.ksh57 while [[ $i -le $line ]]; do
/macosx-10.10/Heimdal-398.1.2/lib/roken/
H A Dinet_pton.c94 int le = WSAGetLastError(); local
96 if (le == WSAEINVAL)
99 _set_errno(le);
/macosx-10.10/Heimdal-398.1.2/lib/otp/
H A Dotp_md.c87 int le,
111 if (le)
122 int le,
136 if (le)
147 int le,
160 if (le)
83 otp_md_init(OtpKey key, const char *pwd, const char *seed, const EVP_MD *md, int le, unsigned char *res, size_t ressz) argument
120 otp_md_next(OtpKey key, const EVP_MD *md, int le, unsigned char *res, size_t ressz) argument
144 otp_md_hash(const char *data, size_t len, const EVP_MD *md, int le, unsigned char *res, size_t ressz) argument
/macosx-10.10/ruby-106/ruby/lib/rubygems/core_ext/
H A Dkernel_require.rb116 le = Gem::LoadError.new "unable to find a version of '#{names.first}' to activate"
117 le.name = names.first
118 raise le
/macosx-10.10/bash-94.1.2/bash-3.2/examples/scripts.noah/
H A Dstring.bash98 if [ -z "${3}" ] || [ "${3}" -le "0" ]; then
/macosx-10.10/emacs-93/emacs/etc/
H A Dfr-survival.tex178 une zone tampon contenant le texte \'edit\'e,
179 une ligne de mode d\'ecrivant le tampon de la fen�tre au-dessus d'elle,
183 \key{C-x C-f} \'edite une fichier~; cette commande utilise le
184 mini-tampon pour lire le nom du fichier~; utilisez-la pour cr\'eer de
185 nouveaux fichiers en entrant le nom du fichier \`a cr\'eer
186 \key{C-x C-s} sauve le fichier
204 \key{C-x 2} divise la fen\^etre dans le sens de la hauteur
205 \key{C-x 3} divise la fen\^etre dans le sens de la largeur
211 le {\it point}. On positionne une marque avec \kbd{C-{\it espace}}.
214 \key{M-h} marque le paragraph
[all...]

Completed in 204 milliseconds

1234567891011