/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 | 57 LAYER_CONTEXT *const lc = &svc->layer_context[layer]; in vp9_init_layer_context() local 58 RATE_CONTROL *const lrc = &lc->rc; in vp9_init_layer_context() 60 lc->current_video_frame_in_layer = 0; in vp9_init_layer_context() 61 lc->layer_size = 0; in vp9_init_layer_context() 62 lc->frames_from_key_frame = 0; in vp9_init_layer_context() 63 lc->last_frame_type = FRAME_TYPES; in vp9_init_layer_context() 79 lc->target_bandwidth = oxcf->layer_target_bitrate[layer]; in vp9_init_layer_context() 84 lc->target_bandwidth = oxcf->layer_target_bitrate[layer]; in vp9_init_layer_context() 92 lc->alt_ref_idx = alt_ref_idx++; in vp9_init_layer_context() 94 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/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/v8/test/mjsunit/ |
D | regexp-multiline.js | 82 function check_case(lc, uc) { argument 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));
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_jit.c | 47 LLVMContextRef lc = gallivm->context; in lp_jit_create_types() local 58 elem_types[LP_JIT_TEXTURE_LAST_LEVEL] = LLVMInt32TypeInContext(lc); in lp_jit_create_types() 61 LLVMArrayType(LLVMInt32TypeInContext(lc), LP_MAX_TEXTURE_LEVELS); in lp_jit_create_types() 63 LLVMArrayType(LLVMPointerType(LLVMInt8TypeInContext(lc), 0), in lp_jit_create_types() 67 elem_types[LP_JIT_TEXTURE_LOD_BIAS] = LLVMFloatTypeInContext(lc); in lp_jit_create_types() 69 LLVMArrayType(LLVMFloatTypeInContext(lc), 4); in lp_jit_create_types() 71 texture_type = LLVMStructTypeInContext(lc, elem_types, in lp_jit_create_types() 125 elem_types[LP_JIT_CTX_CONSTANTS] = LLVMPointerType(LLVMFloatTypeInContext(lc), 0); in lp_jit_create_types() 126 elem_types[LP_JIT_CTX_ALPHA_REF] = LLVMFloatTypeInContext(lc); in lp_jit_create_types() 128 elem_types[LP_JIT_CTX_STENCIL_REF_BACK] = LLVMInt32TypeInContext(lc); in lp_jit_create_types() [all …]
|
/external/jetty/src/java/org/eclipse/jetty/util/log/ |
D | LoggerLog.java | 45 Class<?> lc = logger.getClass(); in LoggerLog() local 46 _debugMT = lc.getMethod("debug", new Class[]{String.class, Throwable.class}); in LoggerLog() 47 _debugMAA = lc.getMethod("debug", new Class[]{String.class, Object[].class}); in LoggerLog() 48 _infoMT = lc.getMethod("info", new Class[]{String.class, Throwable.class}); in LoggerLog() 49 _infoMAA = lc.getMethod("info", new Class[]{String.class, Object[].class}); in LoggerLog() 50 _warnMT = lc.getMethod("warn", new Class[]{String.class, Throwable.class}); in LoggerLog() 51 _warnMAA = lc.getMethod("warn", new Class[]{String.class, Object[].class}); in LoggerLog() 52 Method _isDebugEnabled = lc.getMethod("isDebugEnabled"); in LoggerLog() 53 _setDebugEnabledE = lc.getMethod("setDebugEnabled", new Class[]{Boolean.TYPE}); in LoggerLog() 54 _getLoggerN = lc.getMethod("getLogger", new Class[]{String.class}); in LoggerLog() [all …]
|
/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 | 68 return SkStrSearch(base, count, tolc.lc(), len, elemSize); in SkStrLCSearch() 89 char* lc; in SkAutoAsciiToLC() local 91 lc = fStorage; in SkAutoAsciiToLC() 93 lc = (char*)sk_malloc_throw(len + 1); in SkAutoAsciiToLC() 95 fLC = lc; in SkAutoAsciiToLC() 104 lc[i] = c; in SkAutoAsciiToLC() 106 lc[len] = 0; in SkAutoAsciiToLC()
|
/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/libmtp/src/ |
D | util.c | 75 uint32_t ln, lc; in data_dump_ascii() local 79 lc = 0; in data_dump_ascii() 87 fprintf(f, "%02x", bp[16*lc+i]); in data_dump_ascii() 97 unsigned char ch= bp[16*lc+i]; in data_dump_ascii() 103 lc++; in data_dump_ascii()
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/ec2/autoscale/ |
D | test_connection.py | 102 lc = LaunchConfiguration(name=lc_name, image_id='ami-2272864b', 104 c.create_launch_configuration(lc) 107 for lc in lcs: 108 if lc.name == lc_name: 115 group = AutoScalingGroup(name=group_name, launch_config=lc, 154 lc.delete() 173 lc = LaunchConfiguration( 181 c.create_launch_configuration(lc)
|
/external/libvpx/libvpx/vp8/encoder/ |
D | onyx_if.c | 205 LAYER_CONTEXT *lc = &cpi->layer_context[cpi->current_layer]; in save_layer_context() local 208 lc->target_bandwidth = cpi->target_bandwidth; in save_layer_context() 209 lc->starting_buffer_level = cpi->oxcf.starting_buffer_level; in save_layer_context() 210 lc->optimal_buffer_level = cpi->oxcf.optimal_buffer_level; in save_layer_context() 211 lc->maximum_buffer_size = cpi->oxcf.maximum_buffer_size; in save_layer_context() 212 lc->starting_buffer_level_in_ms = cpi->oxcf.starting_buffer_level_in_ms; in save_layer_context() 213 lc->optimal_buffer_level_in_ms = cpi->oxcf.optimal_buffer_level_in_ms; in save_layer_context() 214 lc->maximum_buffer_size_in_ms = cpi->oxcf.maximum_buffer_size_in_ms; in save_layer_context() 215 lc->buffer_level = cpi->buffer_level; in save_layer_context() 216 lc->bits_off_target = cpi->bits_off_target; in save_layer_context() [all …]
|
/external/bison/po/ |
D | Makefile.in.in | 237 for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ 238 if test -n "$$lc"; then \ 239 …if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/nu… 240 link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ 241 mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ 242 mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ 243 (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ 246 ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ 249 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ 251 if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ [all …]
|
/external/elfutils/po/ |
D | Makefile.in.in | 245 for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ 246 if test -n "$$lc"; then \ 247 …if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/nu… 248 link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ 249 mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ 250 mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ 251 (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ 254 ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ 257 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ 259 if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ [all …]
|
/external/bison/runtime-po/ |
D | Makefile.in.in | 237 for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ 238 if test -n "$$lc"; then \ 239 …if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/nu… 240 link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ 241 mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ 242 mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ 243 (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ 246 ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ 249 rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ 251 if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ [all …]
|
/external/lzma/Java/Tukaani/src/org/tukaani/xz/lzma/ |
D | LZMACoder.java | 93 private final int lc; field in LZMACoder.LiteralCoder 96 LiteralCoder(int lc, int lp) { in LiteralCoder() argument 97 this.lc = lc; in LiteralCoder() 102 int low = prevByte >> (8 - lc); in getSubcoderIndex() 103 int high = (pos & literalPosMask) << lc; in getSubcoderIndex()
|
/external/valgrind/coregrind/m_ume/ |
D | macho.c | 503 struct load_command *lc; in load_thin_file() local 563 for (lc = (struct load_command *)(headers + sizeof(mh)); in load_thin_file() 564 lc < lcend; in load_thin_file() 565 lc = (struct load_command *)(lc->cmdsize + (vki_uint8_t *)lc)) in load_thin_file() 567 if ((vki_uint8_t *)lc < headers || in load_thin_file() 568 lc->cmdsize+(vki_uint8_t *)lc > headers_end) { in load_thin_file() 573 switch (lc->cmd) { in load_thin_file() 578 = (struct entry_point_command*)lc; in load_thin_file() 592 if (lc->cmdsize < sizeof(struct SEGMENT_COMMAND)) { in load_thin_file() 596 segcmd = (struct SEGMENT_COMMAND *)lc; in load_thin_file() [all …]
|
/external/libunwind/tests/ |
D | flush-cache.S | 20 .save ar.lc, r3 21 mov r3=ar.lc // save ar.lc 25 mov ar.lc=r8 35 mov ar.lc=r3 // restore ar.lc
|
/external/jetty/src/java/org/eclipse/jetty/util/component/ |
D | AbstractLifeCycle.java | 160 public static String getState(LifeCycle lc) in getState() argument 162 if (lc.isStarting()) return STARTING; in getState() 163 if (lc.isStarted()) return STARTED; in getState() 164 if (lc.isStopping()) return STOPPING; in getState() 165 if (lc.isStopped()) return STOPPED; in getState()
|