/external/svox/pico/lib/ |
D | picobase.c | 101 picoos_uint32 lc; in base_utf32_lowercase() local 103 lc = utf32; in base_utf32_lowercase() 105 lc = (utf32 + 32); in base_utf32_lowercase() 107 lc = (utf32 + 40); in base_utf32_lowercase() 132 lc = (utf32 + 1); in base_utf32_lowercase() 142 lc = (utf32 - 8); in base_utf32_lowercase() 146 lc = (utf32 - 8); in base_utf32_lowercase() 151 lc = (utf32 + 16); in base_utf32_lowercase() 156 lc = (utf32 + 26); in base_utf32_lowercase() 159 lc = 8112; in base_utf32_lowercase() [all …]
|
/external/ImageMagick/coders/ |
D | djvu.c | 148 pump_data(Image *image, LoadContext* lc) 156 ddjvu_stream_write(lc->document, lc->streamid, data, size); 159 ddjvu_stream_write(lc->document, lc->streamid, data, size); 160 ddjvu_stream_close(lc->document, lc->streamid, 0); 166 pump_data_until_message(LoadContext *lc,Image *image) /* ddjvu_context_t *context, type ddjvu_docum… in pump_data_until_message() argument 175 while (!(message = ddjvu_message_peek(lc->context)) in pump_data_until_message() 177 ddjvu_stream_write(lc->document, lc->streamid, (char *) data, size); in pump_data_until_message() 182 ddjvu_stream_write(lc->document, lc->streamid, (char *) data, size); in pump_data_until_message() 183 ddjvu_stream_close(lc->document, lc->streamid, 0); in pump_data_until_message() 238 LoadContext *lc = (LoadContext *) ddjvu_document_get_user_data(document); in process_message() local [all …]
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_svc_layercontext.c | 69 LAYER_CONTEXT *const lc = &svc->layer_context[layer]; in vp9_init_layer_context() local 70 RATE_CONTROL *const lrc = &lc->rc; in vp9_init_layer_context() 72 lc->current_video_frame_in_layer = 0; in vp9_init_layer_context() 73 lc->layer_size = 0; in vp9_init_layer_context() 74 lc->frames_from_key_frame = 0; in vp9_init_layer_context() 75 lc->last_frame_type = FRAME_TYPES; in vp9_init_layer_context() 91 lc->target_bandwidth = oxcf->layer_target_bitrate[layer]; in vp9_init_layer_context() 96 lc->target_bandwidth = oxcf->layer_target_bitrate[layer]; in vp9_init_layer_context() 104 lc->alt_ref_idx = alt_ref_idx++; in vp9_init_layer_context() 106 lc->alt_ref_idx = INVALID_IDX; in vp9_init_layer_context() [all …]
|
/external/v8/tools/ |
D | draw_instruction_graph.sh | 99 set style line 2 lc rgb '#800000' 100 set style line 3 lc rgb '#d00000' 101 set style line 4 lc rgb '#ff6000' 102 set style line 5 lc rgb '#ffc000' 103 set style line 6 lc rgb '#ffff00' 105 set style line 7 lc rgb '#ff00ff' 106 set style line 8 lc rgb '#ffc0ff' 108 set style line 9 lc rgb '#004040' 109 set style line 10 lc rgb '#008080' 110 set style line 11 lc rgb '#40c0c0' [all …]
|
D | gc-nvp-trace-processor.py | 208 Plot(Item('Scavenge', scavenge_scope, lc = 'green'), 209 Item('Marking', 'mark', lc = 'purple'), 210 Item('Sweep', 'sweep', lc = 'blue'), 211 Item('External', 'external', lc = '#489D43'), 212 Item('Other', other_scope, lc = 'grey'), 213 Item('IGC Steps', 'steps_took', lc = '#FF6347')) 219 Plot(Item('Scavenge', scavenge_scope, lc = 'green'), 220 Item('Marking', 'mark', lc = 'purple'), 221 Item('Sweep', 'sweep', lc = 'blue'), 222 Item('External', 'external', lc = '#489D43'), [all …]
|
/external/eigen/bench/btl/data/ |
D | perlib_plot_settings.txt | 1 eigen3 ; with lines lw 4 lt 1 lc rgbcolor "black" 2 eigen2 ; with lines lw 3 lt 1 lc rgbcolor "#999999" 3 EigenBLAS ; with lines lw 3 lt 3 lc rgbcolor "#999999" 4 eigen3_novec ; with lines lw 2 lt 1 lc rgbcolor "#999999" 5 eigen3_nogccvec ; with lines lw 2 lt 2 lc rgbcolor "#991010" 6 INTEL_MKL ; with lines lw 3 lt 1 lc rgbcolor "#ff0000" 7 ATLAS ; with lines lw 3 lt 1 lc rgbcolor "#008000" 8 gmm ; with lines lw 3 lt 1 lc rgbcolor "#0000ff" 9 ublas ; with lines lw 3 lt 1 lc rgbcolor "#00b7ff" 10 mtl4 ; with lines lw 3 lt 1 lc rgbcolor "#d18847" [all …]
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_jit.c | 48 LLVMContextRef lc = gallivm->context; in lp_jit_create_types() local 56 elem_types[LP_JIT_VIEWPORT_MAX_DEPTH] = LLVMFloatTypeInContext(lc); in lp_jit_create_types() 58 viewport_type = LLVMStructTypeInContext(lc, elem_types, in lp_jit_create_types() 79 elem_types[LP_JIT_TEXTURE_LAST_LEVEL] = LLVMInt32TypeInContext(lc); in lp_jit_create_types() 80 elem_types[LP_JIT_TEXTURE_BASE] = LLVMPointerType(LLVMInt8TypeInContext(lc), 0); in lp_jit_create_types() 84 LLVMArrayType(LLVMInt32TypeInContext(lc), LP_MAX_TEXTURE_LEVELS); in lp_jit_create_types() 86 texture_type = LLVMStructTypeInContext(lc, elem_types, in lp_jit_create_types() 125 elem_types[LP_JIT_SAMPLER_LOD_BIAS] = LLVMFloatTypeInContext(lc); in lp_jit_create_types() 127 LLVMArrayType(LLVMFloatTypeInContext(lc), 4); in lp_jit_create_types() 129 sampler_type = LLVMStructTypeInContext(lc, elem_types, in lp_jit_create_types() [all …]
|
/external/lzma/Java/Tukaani/src/org/tukaani/xz/ |
D | LZMA2Options.java | 134 private int lc; field in LZMA2Options 171 public LZMA2Options(int dictSize, int lc, int lp, int pb, int mode, in LZMA2Options() argument 175 setLcLp(lc, lp); in LZMA2Options() 204 lc = LC_DEFAULT; in setPreset() 294 public void setLcLp(int lc, int lp) throws UnsupportedOptionsException { in setLcLp() argument 295 if (lc < 0 || lp < 0 || lc > LC_LP_MAX || lp > LC_LP_MAX in setLcLp() 296 || lc + lp > LC_LP_MAX) in setLcLp() 299 + lc + " + " + lp); in setLcLp() 301 this.lc = lc; in setLcLp() 331 public void setLc(int lc) throws UnsupportedOptionsException { in setLc() argument [all …]
|
D | LZMAInputStream.java | 99 int lc = props - lp * 9; in getMemoryUsage() local 101 return getMemoryUsage(dictSize, lc, lp); in getMemoryUsage() 120 public static int getMemoryUsage(int dictSize, int lc, int lp) { in getMemoryUsage() argument 121 if (lc < 0 || lc > 8 || lp < 0 || lp > 4) in getMemoryUsage() 132 + ((2 * 0x300) << (lc + lp)) / 1024; in getMemoryUsage() 365 int lc, int lp, int pb, in LZMAInputStream() argument 368 initialize(in, uncompSize, lc, lp, pb, dictSize, presetDict); in LZMAInputStream() 389 int lc = props - lp * 9; in initialize() local 397 initialize(in, uncompSize, lc, lp, pb, dictSize, presetDict); in initialize() 401 int lc, int lp, int pb, in initialize() argument [all …]
|
/external/ltp/testcases/kernel/syscalls/fork/ |
D | fork13.c | 84 long lc; in check() local 89 for (lc = 0; TEST_LOOPING(lc); lc++) { in check() 91 child_exit_code = lc % RETURN; in check() 98 if (lc > 0) { in check() 106 pid, lc); in check() 117 lc); in check() 122 lc); in check() 127 tst_resm(TPASS, "%ld pids forked, all passed", lc); in check()
|
/external/ltp/testcases/kernel/syscalls/chdir/ |
D | chdir02.c | 127 int lc; in main() local 133 for (lc = 0; TEST_LOOPING(lc); lc++) { in main() 137 TEST(chdir(dirs[lc % 2])); in main() 141 dirs[lc % 2]); in main() 144 dirs[lc % 2], TEST_RETURN); in main()
|
/external/ltp/testcases/kernel/syscalls/mlock/ |
D | mlock03.c | 51 int lc; in main() local 61 for (lc = 0; TEST_LOOPING(lc); lc++) { in main() 72 if (lc == 0 && strstr(b, "[stack]") != NULL) in main() 75 switch (lc & 1) { in main() 90 (lc & 1) ? "munlock" : "mlock", from, to); in main()
|
/external/libese/libapdu/ |
D | apdu.cpp | 24 const size_t lc, const size_t le) { in CommandApdu() argument 31 const bool extended = lc > shortLcMax || le > shortLeMax; in CommandApdu() 32 const bool hasLc = lc > 0; in CommandApdu() 36 const size_t commandSize = headerSize + lcSize + lc + leSize; in CommandApdu() 50 *it++ = 0xff & (lc >> 8); in CommandApdu() 52 *it++ = 0xff & lc; in CommandApdu() 54 it += lc; in CommandApdu()
|
/external/ltp/testcases/kernel/syscalls/select/ |
D | select02.c | 62 int lc; in main() local 70 for (lc = 0; TEST_LOOPING(lc); lc++) { in main() 73 test_time = ((lc % 2000) * 100000); /* 100 milli-seconds */ in main() 89 lc, errno); in main()
|
D | select01.c | 64 int lc; in main() local 72 for (lc = 0; TEST_LOOPING(lc); lc++) { in main() 75 test_time = ((lc % 2000) * 100000); /* 100 milli-seconds */ in main() 88 lc, test_time, errno); in main()
|
D | select03.c | 66 int lc; in main() local 74 for (lc = 0; TEST_LOOPING(lc); lc++) { in main() 78 test_time = ((lc % 2000) * 100000); /* 100 milli-seconds */ in main() 94 lc, errno); in main()
|
/external/e2fsprogs/po/ |
D | Makefile.in.in | 175 for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ 176 if test -n "$$lc"; then \ 177 …if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/nu… 178 link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ 179 mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ 180 mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ 181 (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ 184 ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ 187 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ 189 if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ [all …]
|
/external/libexif/po/ |
D | Makefile.in.in | 169 for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ 170 if test -n "$$lc"; then \ 171 …if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/nu… 172 link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ 173 mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ 174 mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ 175 (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ 178 ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ 181 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ 183 if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ [all …]
|
/external/skia/src/core/ |
D | SkTSearch.cpp | 70 return SkStrSearch(base, count, tolc.lc(), len, elemSize); in SkStrLCSearch() 91 char* lc; in SkAutoAsciiToLC() local 93 lc = fStorage; in SkAutoAsciiToLC() 95 lc = (char*)sk_malloc_throw(len + 1); in SkAutoAsciiToLC() 97 fLC = lc; in SkAutoAsciiToLC() 106 lc[i] = c; in SkAutoAsciiToLC() 108 lc[len] = 0; in SkAutoAsciiToLC()
|
/external/ltp/testcases/kernel/syscalls/sendfile/ |
D | sendfile05.c | 122 int lc; in do_child() local 126 for (lc = 0; TEST_LOOPING(lc); lc++) { in do_child() 232 int lc; in main() local 245 for (lc = 0; TEST_LOOPING(lc); lc++) { in main()
|
D | sendfile02.c | 160 int lc; in do_child() local 164 for (lc = 0; TEST_LOOPING(lc); lc++) { in do_child() 271 int lc; in main() local 284 for (lc = 0; TEST_LOOPING(lc); lc++) { in main()
|
D | sendfile04.c | 158 int lc; in do_child() local 162 for (lc = 0; TEST_LOOPING(lc); lc++) { in do_child() 269 int lc; in main() local 282 for (lc = 0; TEST_LOOPING(lc); lc++) { in main()
|
/external/valgrind/memcheck/tests/ |
D | cond_ld_st.c | 269 static void do_test_case ( int caseNo, Bool isLoad, const TestCase* lc ) in do_test_case() argument 275 assert(Cond_D1 <= lc->inp_Cond && lc->inp_Cond <= Cond_U0); in do_test_case() 276 assert(Addr_DV <= lc->inp_Addr && lc->inp_Addr <= Addr_UI); in do_test_case() 277 assert(lc->inp_Alt == Alt_Da || lc->inp_Alt == Alt_Ub); in do_test_case() 278 assert(lc->inp_Data == Data_Dc || lc->inp_Data == Data_Ud); in do_test_case() 279 assert('A' <= lc->res && lc->res <= 'D'); in do_test_case() 280 assert(lc->defErr_Cond == 'Y' || lc->defErr_Cond == 'N'); in do_test_case() 281 assert(lc->defErr_Addr == 'Y' || lc->defErr_Addr == 'N'); in do_test_case() 282 assert(lc->addrErr == 'Y' || lc->addrErr == 'N'); in do_test_case() 284 setup_test_data(lc->inp_Data); in do_test_case() [all …]
|
/external/ltp/testcases/kernel/mem/cpuset/ |
D | cpuset01.c | 90 int lc; in testcpuset() local 114 for (lc = 0; TEST_LOOPING(lc); lc++) { in testcpuset() 174 int i, lc, status, ret = 0; in mem_hog_cpuset() local 203 for (lc = 0; TEST_LOOPING(lc); lc++) ; in mem_hog_cpuset()
|
/external/python/cpython2/Lib/test/ |
D | test__locale.py | 86 for li, lc in ((RADIXCHAR, "decimal_point"), 88 if self.numeric_tester('nl_langinfo', nl_langinfo(li), lc, loc): 102 for lc in ("decimal_point", "thousands_sep"): 103 if self.numeric_tester('localeconv', formatting[lc], lc, loc): 117 for li, lc in ((RADIXCHAR, "decimal_point"), 120 li_radixchar = localeconv()[lc]
|