HomeSort by relevance Sort by last modified time
    Searched refs:lc (Results 26 - 50 of 195) sorted by null

12 3 4 5 6 7 8

  /external/qemu/distrib/sdl-1.2.15/src/loadso/macosx/
SDL_dlcompat.c 593 struct load_command *lc = 0; local
598 lc = (struct load_command *)((char *)mh + sizeof(struct mach_header));
599 for (n = 0; n < mh->ncmds; n++, lc = (struct load_command *)((char *)lc + lc->cmdsize))
601 if ((LC_LOAD_DYLIB == lc->cmd) || (LC_LOAD_WEAK_DYLIB == lc->cmd))
604 my_find_image((char *)(((struct dylib_command *)lc)->dylib.name.offset +
605 (char *)lc))))
1195 struct load_command *lc = 0 local
    [all...]
  /external/stlport/src/c_locale_win32/
c_wlocale_win32.c 26 _Locale_lcid_t lc; member in struct:_Locale_codecvt
49 LCMapStringW(ltype->lc.id, LCMAP_LOWERCASE, &in_c, 1, &res, 1);
57 LCMapStringW(ltype->lc.id, LCMAP_UPPERCASE, &in_c, 1, &res, 1);
72 if (__GetLCIDFromName(name, &lcodecvt->lc.id, cp_name, lc_hint) == -1)
95 return __GetLocaleName(lcodecvt->lc.id, cp_buf, buf);
204 result = CompareStringW(lcol->lc.id, 0, s1, size1, s2, size2);
236 result = LCMapStringW(lcol->lc.id, LCMAP_SORTKEY, src, (int)src_size, dst, (int)dst_size);
248 GetLocaleInfoW(lnum->lc.id, LOCALE_SDECIMAL, buf, 4);
254 GetLocaleInfoW(lnum->lc.id, LOCALE_STHOUSAND, buf, 4);
274 { GetLocaleInfoW(lmon->lc.id, LOCALE_SINTLSYMBOL, buf, (int)bufSize); return buf; }
    [all...]
  /ndk/sources/cxx-stl/stlport/src/c_locale_win32/
c_wlocale_win32.c 26 _Locale_lcid_t lc; member in struct:_Locale_codecvt
49 LCMapStringW(ltype->lc.id, LCMAP_LOWERCASE, &in_c, 1, &res, 1);
57 LCMapStringW(ltype->lc.id, LCMAP_UPPERCASE, &in_c, 1, &res, 1);
72 if (__GetLCIDFromName(name, &lcodecvt->lc.id, cp_name, lc_hint) == -1)
95 return __GetLocaleName(lcodecvt->lc.id, cp_buf, buf);
204 result = CompareStringW(lcol->lc.id, 0, s1, size1, s2, size2);
236 result = LCMapStringW(lcol->lc.id, LCMAP_SORTKEY, src, (int)src_size, dst, (int)dst_size);
248 GetLocaleInfoW(lnum->lc.id, LOCALE_SDECIMAL, buf, 4);
254 GetLocaleInfoW(lnum->lc.id, LOCALE_STHOUSAND, buf, 4);
274 { GetLocaleInfoW(lmon->lc.id, LOCALE_SINTLSYMBOL, buf, (int)bufSize); return buf; }
    [all...]
  /external/v8/test/mjsunit/
regexp-multiline.js 82 function check_case(lc, uc) {
83 var a = new RegExp("^" + lc + "$");
85 a = new RegExp("^" + lc + "$", "i");
89 assertFalse(A.test(lc));
91 assertTrue(A.test(lc));
93 a = new RegExp("^[" + lc + "]$");
95 a = new RegExp("^[" + lc + "]$", "i");
99 assertFalse(A.test(lc));
101 assertTrue(A.test(lc));
regexp-multiline-stack-trace.js 86 function check_case(lc, uc) {
87 var a = new RegExp("^" + lc + "$");
89 a = new RegExp("^" + lc + "$", "i");
93 assertFalse(A.test(lc));
95 assertTrue(A.test(lc));
97 a = new RegExp("^[" + lc + "]$");
99 a = new RegExp("^[" + lc + "]$", "i");
103 assertFalse(A.test(lc));
105 assertTrue(A.test(lc));
  /ndk/sources/cxx-stl/llvm-libc++/test/depr/depr.c.headers/
locale_h.pass.cpp 45 lconv lc; local
  /ndk/sources/cxx-stl/llvm-libc++/test/localization/c.locales/
clocale.pass.cpp 45 std::lconv lc; local
  /external/dnsmasq/contrib/dynamic-dnsmasq/
dynamic-dnsmasq.pl 52 } elsif ( lc $ARGV[0] eq "add" ) {
55 } elsif ( lc $ARGV[0] eq "del" ) {
60 if ( lc substr($resp,0,1) eq "y" ) {
63 } elsif ( lc $ARGV[0] eq "listusers" or lc $ARGV[0] eq "writehostsfile" ) {
66 if ( lc $ARGV[0] eq "writehostsfile" ) {
74 if ( lc $ARGV[0] eq "listusers" ) {
82 if ( lc $ARGV[0] eq "writehostsfile" ) {
89 } elsif ( lc $ARGV[0] eq "listen" ) {
  /external/tinyxml/
Android.mk 25 LOCAL_LDFLAGS:= $(TOOL_LDFLAGS) -lstdc++ -lc
  /external/valgrind/main/coregrind/m_ume/
macho.c 489 struct load_command *lc; local
549 for (lc = (struct load_command *)(headers + sizeof(mh));
550 lc < lcend;
551 lc = (struct load_command *)(lc->cmdsize + (vki_uint8_t *)lc))
553 if ((vki_uint8_t *)lc < headers ||
554 lc->cmdsize+(vki_uint8_t *)lc > headers_end) {
559 switch (lc->cmd)
    [all...]
  /external/llvm/utils/lit/lit/
discovery.py 123 lc = getLocalConfig(ts, path_in_suite[:-1], litConfig, localConfigCache)
124 yield Test.Test(ts, path_in_suite, lc)
129 lc = getLocalConfig(ts, path_in_suite, litConfig, localConfigCache)
132 if lc.test_format is not None:
133 for res in lc.test_format.getTestsInDirectory(ts, path_in_suite,
134 litConfig, lc):
140 if filename in ('Output', '.svn') or filename in lc.excludes:
  /external/webkit/Tools/Scripts/
sort-Xcode-project-file 163 return lc($aFileName) cmp lc($bFileName);
171 return lc($aFileName) cmp lc($bFileName);
  /external/libvpx/libvpx/vp8/encoder/
onyx_if.c 217 LAYER_CONTEXT *lc = &cpi->layer_context[cpi->current_layer]; local
220 lc->target_bandwidth = cpi->target_bandwidth;
221 lc->starting_buffer_level = cpi->oxcf.starting_buffer_level;
222 lc->optimal_buffer_level = cpi->oxcf.optimal_buffer_level;
223 lc->maximum_buffer_size = cpi->oxcf.maximum_buffer_size;
224 lc->starting_buffer_level_in_ms = cpi->oxcf.starting_buffer_level_in_ms;
225 lc->optimal_buffer_level_in_ms = cpi->oxcf.optimal_buffer_level_in_ms;
226 lc->maximum_buffer_size_in_ms = cpi->oxcf.maximum_buffer_size_in_ms;
227 lc->buffer_level = cpi->buffer_level;
228 lc->bits_off_target = cpi->bits_off_target
255 LAYER_CONTEXT *lc = &cpi->layer_context[layer]; local
1272 LAYER_CONTEXT *lc = &cpi->layer_context[i]; local
1352 LAYER_CONTEXT *lc = &cpi->layer_context[i]; local
3496 LAYER_CONTEXT *lc = &cpi->layer_context[i]; local
4468 LAYER_CONTEXT *lc = &cpi->layer_context[i]; local
5042 LAYER_CONTEXT *lc = &cpi->layer_context[i]; local
    [all...]
  /external/openssl/crypto/bn/
bn_mul.c 763 BN_ULONG ll,lc,*lp,*mp; local
901 lc=c1;
903 ll=(r[i]+lc)&BN_MASK2;
905 lc=(lc > ll);
906 } while (lc);
910 lc= -c1;
913 r[i++]=(ll-lc)&BN_MASK2;
914 lc=(lc > ll)
    [all...]
  /external/openssh/
auth-passwd.c 61 extern login_cap_t *lc;
144 pwwarntime = login_getcaptime(lc, "password-warn", TWO_WEEKS,
146 acwarntime = login_getcaptime(lc, "expire-warn", TWO_WEEKS,
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
regress-103087.js 37 var lc = ''; variable
138 re.exec(lc);
153 lc = RegExp.leftContext;
  /external/webkit/Source/WebCore/platform/text/mac/
make-charset-table.pl 105 my $canonicalName = lc $name;
175 $new_canonical_name = lc $new_canonical_name;
186 $new_alias = lc $new_alias;
  /external/bison/build-aux/
cross-options.pl 36 $arg = lc ($arg);
  /external/openssl/crypto/bn/asm/
ia64-mont.pl 96 num=r18; len=r19; lc=r20;
111 .save ar.lc,prevlc
112 mov prevlc=ar.lc }
139 add lc=-5,num
159 mov ar.lc=lc }
230 mov ar.lc=lc }
303 { .mbb; add lc=4,lc
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_mac.cc 222 const char* lc = current_load_cmd_addr_; local
223 current_load_cmd_addr_ += ((const load_command *)lc)->cmdsize;
224 if (((const load_command *)lc)->cmd == kLCSegment) {
226 const SegmentCommand* sc = (const SegmentCommand *)lc;
  /external/openssl/crypto/
ia64cpuid.S 54 .save ar.lc,r3
56 mov r3=ar.lc
61 mov ar.lc=96 };;
126 mov ar.lc=r3
  /external/srec/tools/cmd/
pht_to_long.pl 36 my $language = lc($1);
  /ndk/sources/cxx-stl/llvm-libc++/src/
locale.cpp 4140 lconv* lc = localeconv_l(loc.get()); local
4142 lconv* lc = __localeconv_l(loc.get()); local
4183 lconv* lc = localeconv_l(loc.get()); local
4185 lconv* lc = __localeconv_l(loc.get()); local
5710 lconv* lc = localeconv_l(loc.get()); local
5712 lconv* lc = __localeconv_l(loc.get()); local
5758 lconv* lc = localeconv_l(loc.get()); local
5760 lconv* lc = __localeconv_l(loc.get()); local
5823 lconv* lc = localeconv_l(loc.get()); local
5825 lconv* lc = __localeconv_l(loc.get()); local
5906 lconv* lc = localeconv_l(loc.get()); local
5908 lconv* lc = __localeconv_l(loc.get()); local
    [all...]
  /external/icu4c/test/intltest/
alphaindextst.cpp 83 int32_t lc = 0; local
87 lc = index->getBucketCount(status);
89 TEST_ASSERT(28 == lc); // 26 letters plus two under/overflow labels.
90 //printf("getBucketCount() == %d\n", lc);
117 lc = index->getBucketCount(status);
121 // std::cout << lc << std::endl;
133 lc = index->getBucketCount(status);
135 TEST_ASSERT(35 < lc); // Japanese should add a bunch. Don't rely on the exact value.
346 int32_t lc = 0; local
358 lc = index.getBucketCount(status)
    [all...]
  /external/qemu/distrib/zlib-1.2.3/
trees.c 1078 int lc; \/* match length or unmatched char (if dist == 0) *\/ local
1088 Tracecv(isgraph(lc), (stderr," '%c' ", lc)); local
    [all...]

Completed in 1901 milliseconds

12 3 4 5 6 7 8