Home
last modified time | relevance | path

Searched refs:sl (Results 1 – 25 of 272) sorted by relevance

1234567891011

/external/openssl/crypto/ripemd/asm/
Drmd-586.pl46 @sl=( 11,14,15,12, 5, 8, 7, 9,11,13,14,15, 6, 7, 9, 8,
349 &RIP1($A,$B,$C,$D,$E,$wl[ 0],$sl[ 0],-1);
350 &RIP1($E,$A,$B,$C,$D,$wl[ 1],$sl[ 1],0);
351 &RIP1($D,$E,$A,$B,$C,$wl[ 2],$sl[ 2],0);
352 &RIP1($C,$D,$E,$A,$B,$wl[ 3],$sl[ 3],0);
353 &RIP1($B,$C,$D,$E,$A,$wl[ 4],$sl[ 4],0);
354 &RIP1($A,$B,$C,$D,$E,$wl[ 5],$sl[ 5],0);
355 &RIP1($E,$A,$B,$C,$D,$wl[ 6],$sl[ 6],0);
356 &RIP1($D,$E,$A,$B,$C,$wl[ 7],$sl[ 7],0);
357 &RIP1($C,$D,$E,$A,$B,$wl[ 8],$sl[ 8],0);
[all …]
/external/e2fsprogs/intl/
Dos2compat.c59 size_t sl = strlen (root); in nlos2_initialize() local
60 _nlos2_libdir = (char *) malloc (sl + strlen (LIBDIR) + 1); in nlos2_initialize()
61 memcpy (_nlos2_libdir, root, sl); in nlos2_initialize()
62 memcpy (_nlos2_libdir + sl, LIBDIR, strlen (LIBDIR) + 1); in nlos2_initialize()
73 size_t sl = strlen (root); in nlos2_initialize() local
74 _nlos2_localealiaspath = (char *) malloc (sl + strlen (LOCALE_ALIAS_PATH) + 1); in nlos2_initialize()
75 memcpy (_nlos2_localealiaspath, root, sl); in nlos2_initialize()
76 memcpy (_nlos2_localealiaspath + sl, LOCALE_ALIAS_PATH, strlen (LOCALE_ALIAS_PATH) + 1); in nlos2_initialize()
87 size_t sl = strlen (root); in nlos2_initialize() local
88 _nlos2_localedir = (char *) malloc (sl + strlen (LOCALEDIR) + 1); in nlos2_initialize()
[all …]
/external/kernel-headers/original/linux/
Dseqlock.h57 static inline void write_seqlock(seqlock_t *sl) in write_seqlock() argument
59 spin_lock(&sl->lock); in write_seqlock()
60 ++sl->sequence; in write_seqlock()
64 static inline void write_sequnlock(seqlock_t *sl) in write_sequnlock() argument
67 sl->sequence++; in write_sequnlock()
68 spin_unlock(&sl->lock); in write_sequnlock()
71 static inline int write_tryseqlock(seqlock_t *sl) in write_tryseqlock() argument
73 int ret = spin_trylock(&sl->lock); in write_tryseqlock()
76 ++sl->sequence; in write_tryseqlock()
83 static __always_inline unsigned read_seqbegin(const seqlock_t *sl) in read_seqbegin() argument
[all …]
Ddccp.h408 static inline int dccp_list_has_service(const struct dccp_service_list *sl, in dccp_list_has_service() argument
411 if (likely(sl != NULL)) { in dccp_list_has_service()
412 u32 i = sl->dccpsl_nr; in dccp_list_has_service()
414 if (sl->dccpsl_list[i] == service) in dccp_list_has_service()
/external/stlport/test/unit/
Dslist_test.cpp127 slist<int> sl(array, array + 5); in erase() local
130 slit = sl.erase(sl.begin()); in erase()
134 slit = sl.erase(sl.begin(), slit); in erase()
137 sl.assign(array, array + 5); in erase()
139 slit = sl.erase_after(sl.begin()); in erase()
142 slit = sl.begin(); ++slit; ++slit; in erase()
143 slit = sl.erase_after(sl.begin(), slit); in erase()
146 sl.erase_after(sl.before_begin()); in erase()
147 CPPUNIT_ASSERT( sl.front() == 3 ); in erase()
158 slist<int> sl; in insert() local
[all …]
/external/nist-sip/java/gov/nist/javax/sip/header/
DStatusLine.java71 StatusLine sl = (StatusLine) matchObj; in match()
73 if (sl.matchExpression != null) in match()
74 return sl.matchExpression.match(this.encode()); in match()
76 if (sl.sipVersion != null && !sl.sipVersion.equals(sipVersion)) in match()
78 if (sl.statusCode != 0) { in match()
80 int hiscode = sl.statusCode; in match()
81 String codeString = Integer.toString(sl.statusCode); in match()
86 if (statusCode != sl.statusCode) in match()
90 if (sl.reasonPhrase == null || reasonPhrase == sl.reasonPhrase) in match()
92 return reasonPhrase.equals(sl.reasonPhrase); in match()
/external/libpng/scripts/
Dmakefile.hpux28 LIBSO=$(LIBNAME).sl
29 LIBSOMAJ=$(LIBNAME).sl.$(PNGMAJ)
30 LIBSOVER=$(LIBNAME).sl.$(PNGVER)
31 OLDSO=libpng.sl
32 OLDSOMAJ=libpng.sl.3
33 OLDSOVER=libpng.sl.3.$(PNGMIN)
Dmakefile.hp6428 LIBSO=$(LIBNAME).sl
29 LIBSOMAJ=$(LIBNAME).sl.$(PNGMAJ)
30 LIBSOVER=$(LIBNAME).sl.$(PNGVER)
31 OLDSO=libpng.sl
32 OLDSOMAJ=libpng.sl.3
33 OLDSOVER=libpng.sl.3.$(PNGMIN)
Dmakefile.hpgcc18 LIBSO=$(LIBNAME).sl
19 LIBSOMAJ=$(LIBNAME).sl.$(PNGMAJ)
20 LIBSOVER=$(LIBNAME).sl.$(PNGVER)
21 OLDSO=libpng.sl
22 OLDSOMAJ=libpng.sl.3
23 OLDSOVER=libpng.sl.3.$(PNGMIN)
/external/clearsilver/util/
Dneo_misc.c123 UINT8 sl; in ne_unstream_str() local
125 sl = src[0]; in ne_unstream_str()
126 if (sl > l) in ne_unstream_str()
127 sl = l; in ne_unstream_str()
128 memcpy (s, src+1, sl); in ne_unstream_str()
130 return src+sl+1; in ne_unstream_str()
Dneo_str.c219 int sl; in string_array_split() local
228 sl = strlen(sep); in string_array_split()
229 p = (sl == 1) ? strchr (s, sep[0]) : strstr (s, sep); in string_array_split()
241 f = p+sl; in string_array_split()
242 p = (sl == 1) ? strchr (f, sep[0]) : strstr (f, sep); in string_array_split()
/external/qemu/distrib/sdl-1.2.12/src/video/riscos/
DSDL_riscosASM.S44 STMFD sp!,{a2,v1-v6,sl,fp,lr}
83 LDR sl,[ip],#4
91 STR sl,[lr],#4
102 LDR sl,[ip],#4
110 STR sl,[lr],#4
115 03 LDMFD sp!,{a2,v1-v6,sl,fp,pc}
/external/icu4c/data/coll/
Dsl.txt6 // * Source File:<path>/common/collation/sl.xml
10 * ICU <specials> source: <path>/xml/collation/sl.xml
12 sl{
Dsl_SI.txt10 * validSubLocale of "sl"
/external/chromium/third_party/icu/source/data/coll/
Dsl.txt6 // * Source File:<path>/common/collation/sl.xml
10 * ICU <specials> source: <path>/xml/collation/sl.xml
12 sl{
/external/libgsm/src/
Dlpc.c96 register float sl = *sp; variable
98 # define STEP(k) L_ACF[k] += (longword)(sl * sp[ -(k) ]);
101 word sl = *sp;
103 # define STEP(k) L_ACF[k] += ((longword)sl * sp[ -(k) ]);
106 # define NEXTI sl = *++sp
/external/ipsec-tools/src/racoon/
Dsecurity.c215 within_range(security_context_t sl, security_context_t range) in within_range() argument
233 rtn = avc_context_to_sid(sl, &slsid); in within_range()
237 "sid for sl context (%s).\n", sl); in within_range()
263 "within_range: The sl (%s) is within range (%s)\n", sl, range); in within_range()
/external/quake/quake/src/QW/client/
Dgl_draw.c56 float sl, tl, sh, th; member
213 gl->sl = (x+0.01)/(float)BLOCK_WIDTH; in Draw_PicFromWad()
224 gl->sl = 0; in Draw_PicFromWad()
273 gl->sl = 0; in Draw_CachePic()
462 gl->sl = 0; in Draw_Init()
631 DrawQuad(x, y, pic->width, pic->height, gl->sl, gl->tl, gl->sh - gl->sl, gl->th - gl->tl); in Draw_Pic()
634 glTexCoord2f (gl->sl, gl->tl); in Draw_Pic()
640 glTexCoord2f (gl->sl, gl->th); in Draw_Pic()
665 DrawQuad(x, y, pic->width, pic->height, gl->sl, gl->tl, gl->sh - gl->sl, gl->th - gl->tl); in Draw_AlphaPic()
668 glTexCoord2f (gl->sl, gl->tl); in Draw_AlphaPic()
[all …]
/external/chromium/third_party/icu/source/data/rbnf/
Dsl.txt6 // * Source File:<path>/common/rbnf/sl.xml
10 * ICU <specials> source: <path>/xml/rbnf/sl.xml
12 sl{
/external/icu4c/data/rbnf/
Dsl.txt6 // * Source File:<path>/common/rbnf/sl.xml
10 * ICU <specials> source: <path>/xml/rbnf/sl.xml
12 sl{
/external/quake/quake/src/WinQuake/
Dgl_draw.cpp43 float sl, tl, sh, th; member
544 gl->sl = (x+0.01)/(float)BLOCK_WIDTH; in Draw_PicFromWad()
555 gl->sl = 0; in Draw_PicFromWad()
605 gl->sl = 0; in Draw_CachePic()
802 gl->sl = 0; in Draw_Init()
929 DrawQuad(x, y, ppic->g.width, ppic->g.height, gl->sl, gl->tl, gl->sh - gl->sl, gl->th - gl->tl); in Draw_AlphaPic()
932 glTexCoord2f (gl->sl, gl->tl); in Draw_AlphaPic()
938 glTexCoord2f (gl->sl, gl->th); in Draw_AlphaPic()
968 DrawQuad(x, y, pic->width, pic->height, gl->sl, gl->tl, gl->sh - gl->sl, gl->th - gl->tl); in Draw_Pic()
971 glTexCoord2f (gl->sl, gl->tl); in Draw_Pic()
[all …]
/external/icu4c/data/zone/
Dsl.txt6 // * Source File:<path>/common/main/sl.xml
10 * ICU <specials> source: <path>/xml/main/sl.xml
12 sl{
/external/srec/srec_jni/
Dandroid_speech_srec_Recognizer.cpp354 const char* sl = 0; in Java_android_speech_srec_Recognizer_SR_1GrammarAddWordToSlot() local
358 if ((sl = env->GetStringUTFChars(slot, 0)) && in Java_android_speech_srec_Recognizer_SR_1GrammarAddWordToSlot()
362 checkEsrError(env, SR_GrammarAddWordToSlot((SR_Grammar*)grammar, sl, wo, pr, weight, ta)); in Java_android_speech_srec_Recognizer_SR_1GrammarAddWordToSlot()
367 if (sl) env->ReleaseStringUTFChars(slot, sl); in Java_android_speech_srec_Recognizer_SR_1GrammarAddWordToSlot()
/external/libpng/
DMakefile.am138 for ext in a la so sl dylib; do\
152 for ext in a la so sl dylib; do\
/external/icu4c/data/locales/
Dsl.txt6 // * Source File:<path>/common/main/sl.xml
10 * ICU <specials> source: <path>/xml/main/sl.xml
12 sl{

1234567891011