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

1234567891011>>

/external/curl/lib/
H A Dhash.c113 struct curl_llist_element *le; local
116 for(le = l->head; le; le = le->next) {
117 he = (struct curl_hash_element *) le->ptr;
119 Curl_llist_remove(l, le, (void *)h);
142 struct curl_llist_element *le; local
146 for(le = l->head; le; l
164 struct curl_llist_element *le; local
186 struct curl_llist_element *le; local
236 struct curl_llist_element *le; local
[all...]
/external/libcxx/src/
H A Dstdexcept.cpp36 logic_error::logic_error(const logic_error& le) _NOEXCEPT : __imp_(le.__imp_)
41 logic_error::operator=(const logic_error& le) _NOEXCEPT
43 __imp_ = le.__imp_;
69 runtime_error::runtime_error(const runtime_error& le) _NOEXCEPT
70 : __imp_(le.__imp_)
75 runtime_error::operator=(const runtime_error& le) _NOEXCEPT
77 __imp_ = le.__imp_;
/external/libese/libapdu/
H A Dapdu.cpp24 const size_t lc, const size_t le) {
31 const bool extended = lc > shortLcMax || le > shortLeMax;
33 const bool hasLe = le > 0;
66 const bool isLeMax = le == extendedLeMax;
67 *it++ = (isLeMax ? 0 : 0xff & (le >> 8));
68 *it++ = (isLeMax ? 0 : 0xff & le);
70 *it++ = (le == shortLeMax ? 0 : 0xff & le);
23 CommandApdu(const uint8_t cla, const uint8_t ins, const uint8_t p1, const uint8_t p2, const size_t lc, const size_t le) argument
/external/vixl/test/aarch32/
H A Dtest-assembler-cond-rdlow-operand-imm8-in-it-block-t32.cc100 {{le, r2, 209}, true, le, "le r2 209", "le_r2_209"},
135 {{le, r2, 69}, true, le, "le r2 69", "le_r2_69"},
153 {{le, r2, 216}, true, le, "le r2 216", "le_r2_216"},
154 {{le, r
[all...]
H A Dtest-assembler-cond-rdlow-rnlow-operand-immediate-imm3-in-it-block-t32.cc108 {{le, r4, r1, 0}, true, le, "le r4 r1 0", "le_r4_r1_0"},
124 {{le, r5, r3, 2}, true, le, "le r5 r3 2", "le_r5_r3_2"},
132 {{le, r5, r5, 7}, true, le, "le r5 r5 7", "le_r5_r5_7"},
135 {{le, r
[all...]
H A Dtest-assembler-cond-rd-operand-rn-in-it-block-t32.cc3021 {{le, r0, r0}, true, le, "le r0 r0", "le_r0_r0"},
3022 {{le, r0, r1}, true, le, "le r0 r1", "le_r0_r1"},
3023 {{le, r0, r2}, true, le, "le r0 r2", "le_r0_r2"},
3024 {{le, r
[all...]
H A Dtest-assembler-cond-rd-operand-rn-low-registers-in-it-block-t32.cc927 {{le, r0, r0}, true, le, "le r0 r0", "le_r0_r0"},
928 {{le, r0, r1}, true, le, "le r0 r1", "le_r0_r1"},
929 {{le, r0, r2}, true, le, "le r0 r2", "le_r0_r2"},
930 {{le, r
[all...]
H A Dtest-assembler-cond-rdlow-rnlow-operand-immediate-zero-in-it-block-t32.cc927 {{le, r0, r0, 0}, true, le, "le r0 r0 0", "le_r0_r0_0"},
928 {{le, r0, r1, 0}, true, le, "le r0 r1 0", "le_r0_r1_0"},
929 {{le, r0, r2, 0}, true, le, "le r0 r2 0", "le_r0_r2_0"},
930 {{le, r
[all...]
H A Dtest-assembler-cond-rdlow-rnlow-rmlow-in-it-block-t32.cc927 {{le, r0, r0, r0}, true, le, "le r0 r0 r0", "le_r0_r0_r0"},
928 {{le, r0, r1, r0}, true, le, "le r0 r1 r0", "le_r0_r1_r0"},
929 {{le, r0, r2, r0}, true, le, "le r0 r2 r0", "le_r0_r2_r0"},
930 {{le, r
[all...]
/external/slf4j/jul-to-slf4j/src/test/java/org/slf4j/bridge/
H A DSLF4JBridgeHandlerTest.java67 LoggingEvent le = (LoggingEvent) listAppender.list.get(0);
68 assertEquals(LOGGER_NAME, le.getLoggerName());
69 assertEquals(msg, le.getMessage());
75 LocationInfo li = le.getLocationInformation();
116 LoggingEvent le = (LoggingEvent) listAppender.list.get(0);
117 assertEquals(LOGGER_NAME, le.getLoggerName());
118 assertEquals(expectedMsg, le.getMessage());
147 LoggingEvent le = null;
149 le = (LoggingEvent) listAppender.list.get(0);
150 assertEquals("foo", le
[all...]
/external/libcxx/test/std/utilities/function.objects/comparisons/
H A Dconstexpr_init.pass.cpp33 std::less_equal<T> le; local
34 ((void)le);
/external/python/cpython3/Include/
H A Dfloatobject.h77 /* The pack routines write 2, 4 or 8 bytes, starting at p. le is a bool
87 PyAPI_FUNC(int) _PyFloat_Pack2(double x, unsigned char *p, int le);
88 PyAPI_FUNC(int) _PyFloat_Pack4(double x, unsigned char *p, int le);
89 PyAPI_FUNC(int) _PyFloat_Pack8(double x, unsigned char *p, int le);
100 /* The unpack routines read 2, 4 or 8 bytes, starting at p. le is a bool
108 PyAPI_FUNC(double) _PyFloat_Unpack2(const unsigned char *p, int le);
109 PyAPI_FUNC(double) _PyFloat_Unpack4(const unsigned char *p, int le);
110 PyAPI_FUNC(double) _PyFloat_Unpack8(const unsigned char *p, int le);
/external/libcxx/test/std/utilities/template.bitset/
H A Dincludes.pass.cpp27 std::logic_error le("blah"); ((void)le);
/external/ltp/testcases/kernel/io/stress_floppy/datafiles/dumpdir/
H A Dgenerate.sh15 while [ $COUNT -le 10 ]; do
/external/ltp/testcases/network/stress/ns-tools/
H A Dcreate_file57 if [ $filesize -le 0 ]; then
/external/ltp/testcases/network/tcp_cmds/netstat/
H A Dnetstat0158 while [ $TST_COUNT -le $NUMLOOPS ]; do
/external/python/cpython2/Include/
H A Dfloatobject.h93 /* The pack routines write 4 or 8 bytes, starting at p. le is a bool
103 PyAPI_FUNC(int) _PyFloat_Pack4(double x, unsigned char *p, int le);
104 PyAPI_FUNC(int) _PyFloat_Pack8(double x, unsigned char *p, int le);
110 /* The unpack routines read 4 or 8 bytes, starting at p. le is a bool
118 PyAPI_FUNC(double) _PyFloat_Unpack4(const unsigned char *p, int le);
119 PyAPI_FUNC(double) _PyFloat_Unpack8(const unsigned char *p, int le);
/external/slf4j/slf4j-ext/src/test/java/org/slf4j/dummyExt/
H A DXLoggerTest.java61 void verify(LoggingEvent le, String expectedMsg) { argument
62 assertEquals(expectedMsg, le.getMessage());
63 assertEquals(EXPECTED_FILE_NAME, le.getLocationInformation().getFileName());
66 void verifyWithException(LoggingEvent le, String expectedMsg, Throwable t) { argument
67 verify(le, expectedMsg);
68 assertEquals(t.toString(), le.getThrowableStrRep()[0]);
71 void verifyWithLevelAndException(LoggingEvent le, XLogger.Level level, String expectedMsg, Throwable t) { argument
72 verify(le, expectedMsg);
73 assertEquals(t.toString(), le.getThrowableStrRep()[0]);
74 assertEquals(le
[all...]
/external/autotest/client/site_tests/platform_DaemonsRespawn/
H A Dtest_respawn.sh60 if [ $PID -le 0 ] ; then
77 if [ $PID -le 0 ] ; then
/external/ltp/testcases/kernel/tracing/ftrace_test/ftrace_stress/
H A Dftrace_set_ftrace_pid.sh22 while [ $k -le $NR_PIDS ]; do
/external/strace/tests/
H A Dthreads-execve.test44 while [ $i -le 19 ]; do
/external/strace/tests-m32/
H A Dthreads-execve.test44 while [ $i -le 19 ]; do
/external/strace/tests-mx32/
H A Dthreads-execve.test44 while [ $i -le 19 ]; do
/external/ltp/testcases/network/nfs/nfsstat01/
H A Dnfsstat0173 if [ "$new_server_calls" -le "$server_calls" ]; then
79 if [ "$new_client_calls" -le "$client_calls" ]; then
105 if [ "$new_server_calls" -le "$server_calls" ]; then
111 if [ "$new_client_calls" -le "$client_calls" ]; then
/external/slf4j/slf4j-ext/src/test/java/org/slf4j/cal10n_dummy/
H A DLocLoggerTest.java65 void verify(LoggingEvent le, String expectedMsg) { argument
66 assertEquals(expectedMsg, le.getMessage());
67 assertEquals(EXPECTED_FILE_NAME, le.getLocationInformation().getFileName());

Completed in 1646 milliseconds

1234567891011>>