/external/e2fsprogs/lib/ext2fs/ |
D | inode.c | 35 #define SCAN_BLOCK_STATUS(scan) ((scan)->temp_buffer + (scan)->inode_size) argument 53 ext2_inode_scan scan, 142 ext2_inode_scan scan; in ext2fs_open_inode_scan() local 167 retval = ext2fs_get_mem(sizeof(struct ext2_struct_inode_scan), &scan); in ext2fs_open_inode_scan() 170 memset(scan, 0, sizeof(struct ext2_struct_inode_scan)); in ext2fs_open_inode_scan() 172 scan->magic = EXT2_ET_MAGIC_INODE_SCAN; in ext2fs_open_inode_scan() 173 scan->fs = fs; in ext2fs_open_inode_scan() 174 scan->inode_size = EXT2_INODE_SIZE(fs->super); in ext2fs_open_inode_scan() 175 scan->bytes_left = 0; in ext2fs_open_inode_scan() 176 scan->current_group = 0; in ext2fs_open_inode_scan() [all …]
|
/external/autotest/server/site_tests/network_WiFi_RegDomain/ |
D | control | 35 # 'passive-scan'). Otherwise, we haven't ruled out the possibility 39 # - 'passive-scan' implies 'connect' 52 {'chnum': 13, 'expect': 'passive-scan'}, 53 {'chnum': 36, 'expect': 'passive-scan'}, 54 {'chnum': 149, 'expect': 'passive-scan'}]}, 55 # Many of the 'passive-scan' expectations for the remaining 62 {'chnum': 13, 'expect': 'passive-scan'}, 63 {'chnum': 36, 'expect': 'passive-scan'}, 64 {'chnum': 149, 'expect': 'passive-scan'}]}, 68 {'chnum': 13, 'expect': 'passive-scan'}, [all …]
|
/external/clang/test/Index/ |
D | TestClassDecl.m | 2 // RUN: c-index-test -test-file-scan %t.ast %s | FileCheck -check-prefix=CHECK-scan %s 18 // CHECK-scan: [1:1 - 8:1] Invalid Cursor => NoDeclFound 19 // CHECK-scan: [8:1 - 8:8] ObjCInterfaceDecl=Foo:8:8 20 // CHECK-scan: [8:8 - 8:11] ObjCClassRef=Foo:10:12 21 // CHECK-scan: [8:11 - 10:1] Invalid Cursor => NoDeclFound 22 // CHECK-scan: [10:1 - 11:5] ObjCInterfaceDecl=Foo:10:12 23 // CHECK-scan: [11:5 - 13:1] Invalid Cursor => NoDeclFound 24 // CHECK-scan: [13:1 - 13:15] FunctionDecl=function:13:6 (Definition) 25 // CHECK-scan: [13:15 - 13:18] ObjCClassRef=Foo:10:12 26 // CHECK-scan: [13:18 - 13:24] ParmDecl=arg:13:21 (Definition) [all …]
|
D | TestClassForwardDecl.m | 2 // RUN: c-index-test -test-file-scan %t.ast %s | FileCheck -check-prefix=CHECK-scan %s 15 // CHECK-scan: [1:1 - 8:1] Invalid Cursor => NoDeclFound 16 // CHECK-scan: [8:1 - 8:8] ObjCInterfaceDecl=Foo:8:8 17 // CHECK-scan: [8:8 - 8:11] ObjCClassRef=Foo:8:8 18 // CHECK-scan: [8:11 - 10:1] Invalid Cursor => NoDeclFound 19 // CHECK-scan: [10:1 - 10:15] FunctionDecl=function:10:6 (Definition) 20 // CHECK-scan: [10:15 - 10:18] ObjCClassRef=Foo:8:8 21 // CHECK-scan: [10:18 - 10:24] ParmDecl=arg:10:21 (Definition) 22 // CHECK-scan: [10:24 - 11:1] FunctionDecl=function:10:6 (Definition)
|
/external/clang/tools/scan-build/ |
D | CMakeLists.txt | 1 option(CLANG_INSTALL_SCANBUILD "Install the scan-build tool" ON) 7 scan-build.bat) 13 scan-build) 24 scan-build.1) 69 add_custom_command(OUTPUT ${CMAKE_BINARY_DIR}/share/scan-build/${ShareFile} 71 ${CMAKE_BINARY_DIR}/share/scan-build 73 ${CMAKE_CURRENT_SOURCE_DIR}/share/scan-build/${ShareFile} 74 ${CMAKE_BINARY_DIR}/share/scan-build/ 75 DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/share/scan-build/${ShareFile}) 76 list(APPEND Depends ${CMAKE_BINARY_DIR}/share/scan-build/${ShareFile}) [all …]
|
/external/zopfli/src/zopfli/ |
D | lz77.c | 119 static const unsigned char* GetMatch(const unsigned char* scan, in GetMatch() argument 126 while (scan < safe_end && *((size_t*)scan) == *((size_t*)match)) { in GetMatch() 127 scan += 8; in GetMatch() 132 while (scan < safe_end in GetMatch() 133 && *((unsigned int*)scan) == *((unsigned int*)match)) { in GetMatch() 134 scan += 4; in GetMatch() 139 while (scan < safe_end && *scan == *match && *++scan == *++match in GetMatch() 140 && *++scan == *++match && *++scan == *++match in GetMatch() 141 && *++scan == *++match && *++scan == *++match in GetMatch() 142 && *++scan == *++match && *++scan == *++match) { in GetMatch() [all …]
|
/external/bsdiff/ |
D | bsdiff.cc | 145 off_t scan,pos=0,len; in bsdiff() local 199 scan=0;len=0; in bsdiff() 201 while(scan<newsize) { in bsdiff() 210 for(scsc=scan+=len;scan<newsize;scan++) { in bsdiff() 215 len=search(I,old_buf,oldsize,new_buf+scan,newsize-scan, in bsdiff() 218 for(;scsc<scan+len;scsc++) in bsdiff() 226 if((scan+lastoffset<oldsize) && in bsdiff() 227 (old_buf[scan+lastoffset] == new_buf[scan])) in bsdiff() 242 if((len!=oldscore) || (scan==newsize)) { in bsdiff() 244 for(i=0;(lastscan+i<scan)&&(lastpos+i<oldsize);) { in bsdiff() [all …]
|
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/ |
D | TestInterpretedLexing.java | 86 Token result = engine.scan("A"); in testSimpleAltCharTest() 89 result = engine.scan("A"); in testSimpleAltCharTest() 100 Token result = engine.scan("A"); in testSingleRuleRef() 111 Token result = engine.scan("INT"); in testSimpleLoop() 114 result = engine.scan("INT"); in testSimpleLoop() 124 Token result = engine.scan("A"); in testMultAltLoop() 126 result = engine.scan("A"); in testMultAltLoop() 129 result = engine.scan("A"); in testMultAltLoop() 132 result = engine.scan("A"); in testMultAltLoop() 135 result = engine.scan("A"); in testMultAltLoop() [all …]
|
/external/bison/src/ |
D | Makefile.am | 61 scan-code.h scan-code-c.c \ 62 scan-gram.h scan-gram-c.c \ 63 scan-skel.h scan-skel-c.c \ 72 EXTRA_bison_SOURCES = scan-code.l scan-skel.l scan-gram.l 76 scan-code.c \ 77 scan-skel.c \ 78 scan-gram.c
|
/external/clang/tools/scan-view/ |
D | CMakeLists.txt | 1 option(CLANG_INSTALL_SCANVIEW "Install the scan-view tool" ON) 4 scan-view) 28 add_custom_command(OUTPUT ${CMAKE_BINARY_DIR}/share/scan-view/${ShareFile} 30 ${CMAKE_BINARY_DIR}/share/scan-view 33 ${CMAKE_BINARY_DIR}/share/scan-view/ 35 list(APPEND Depends ${CMAKE_BINARY_DIR}/share/scan-view/${ShareFile}) 36 install(FILES share/${ShareFile} DESTINATION share/scan-view) 39 add_custom_target(scan-view ALL DEPENDS ${Depends}) 40 set_target_properties(scan-view PROPERTIES FOLDER "Misc")
|
/external/syslinux/com32/lib/zlib/ |
D | deflate.c | 1068 register Bytef *scan = s->window + s->strstart; /* current string */ local 1086 register ush scan_start = *(ushf*)scan; 1087 register ush scan_end = *(ushf*)(scan+best_len-1); 1090 register Byte scan_end1 = scan[best_len-1]; 1091 register Byte scan_end = scan[best_len]; 1138 Assert(scan[2] == match[2], "scan[2]?"); 1139 scan++, match++; 1141 } while (*(ushf*)(scan+=2) == *(ushf*)(match+=2) && 1142 *(ushf*)(scan+=2) == *(ushf*)(match+=2) && 1143 *(ushf*)(scan+=2) == *(ushf*)(match+=2) && [all …]
|
/external/javassist/src/main/javassist/bytecode/analysis/ |
D | SubroutineScanner.java | 41 public Subroutine[] scan(MethodInfo method) throws BadBytecode { in scan() method in SubroutineScanner 49 scan(0, iter, null); in scan() 56 scan(handler, iter, subroutines[exceptions.startPc(i)]); in scan() 62 private void scan(int pos, CodeIterator iter, Subroutine sub) throws BadBytecode { in scan() method in SubroutineScanner 109 scan(target, iter, s); in scanOp() 114 scan(target, iter, sub); in scanOp() 128 scan(pos + iter.s32bitAt(index), iter, sub); in scanLookupSwitch() 135 scan(target, iter, sub); in scanLookupSwitch() 143 scan(pos + iter.s32bitAt(index), iter, sub); in scanTableSwitch() 151 scan(target, iter, sub); in scanTableSwitch()
|
/external/pdfium/third_party/zlib_v128/ |
D | deflate.c | 1152 register Bytef *scan = s->window + s->strstart; /* current string */ in longest_match() local 1170 register ush scan_start = *(ushf*)scan; in longest_match() 1171 register ush scan_end = *(ushf*)(scan+best_len-1); in longest_match() 1174 register Byte scan_end1 = scan[best_len-1]; in longest_match() 1175 register Byte scan_end = scan[best_len]; in longest_match() 1222 Assert(scan[2] == match[2], "scan[2]?"); in longest_match() 1223 scan++, match++; in longest_match() 1225 } while (*(ushf*)(scan+=2) == *(ushf*)(match+=2) && in longest_match() 1226 *(ushf*)(scan+=2) == *(ushf*)(match+=2) && in longest_match() 1227 *(ushf*)(scan+=2) == *(ushf*)(match+=2) && in longest_match() [all …]
|
/external/zlib/src/ |
D | deflate.c | 1153 register Bytef *scan = s->window + s->strstart; /* current string */ local 1171 register ush scan_start = *(ushf*)scan; 1172 register ush scan_end = *(ushf*)(scan+best_len-1); 1175 register Byte scan_end1 = scan[best_len-1]; 1176 register Byte scan_end = scan[best_len]; 1223 Assert(scan[2] == match[2], "scan[2]?"); 1224 scan++, match++; 1226 } while (*(ushf*)(scan+=2) == *(ushf*)(match+=2) && 1227 *(ushf*)(scan+=2) == *(ushf*)(match+=2) && 1228 *(ushf*)(scan+=2) == *(ushf*)(match+=2) && [all …]
|
/external/libjpeg-turbo/ |
D | wizard.txt | 116 By default, cjpeg emits a single-scan sequential JPEG file. The 118 of progression parameters. You can create multiple-scan sequential JPEG 122 -scans file Use the scan sequence given in the named file. 124 The specified file should be a text file containing a "scan script". 126 Each entry in the script defines one scan. A scan definition specifies 127 the components to be included in the scan, and for progressive JPEG it also 128 specifies the progression parameters Ss,Se,Ah,Al for the scan. Scan 130 scan definition is optional. 132 Each scan definition contains one to four component indexes, optionally 135 the scan. Components are numbered in the order in which they appear in the [all …]
|
/external/emma/core/java12/com/vladium/emma/instr/ |
D | InstrVisitor.java | 782 int scan = ip + 1; in visit() local 783 ov = (code [scan] << 8) | (0xFF & code [++ scan]); in visit() 798 int scan = ip + 1; in visit() local 799 ov = (code [scan] << 8) | (0xFF & code [++ scan]); in visit() 812 int scan = ip + 4 - (ip & 3); // eat padding in visit() local 814 …ov = (code [scan] << 24) | ((0xFF & code [++ scan]) << 16) | ((0xFF & code [++ scan]) << 8) | (0xF… in visit() 819 …irs = ((0xFF & code [++ scan]) << 24) | ((0xFF & code [++ scan]) << 16) | ((0xFF & code [++ scan])… in visit() 829 …iv = (code [++ scan] << 24) | ((0xFF & code [++ scan]) << 16) | ((0xFF & code [++ scan]) << 8) | (… in visit() 835 …ov = (code [++ scan] << 24) | ((0xFF & code [++ scan]) << 16) | ((0xFF & code [++ scan]) << 8) | (… in visit() 843 size = ip - scan - 1; // special case in visit() [all …]
|
/external/libvpx/libvpx/vp9/decoder/ |
D | vp9_detokenize.c | 76 int ctx, const int16_t *scan, const int16_t *nb, in decode_coefs() argument 130 token_cache[scan[c]] = 0; in decode_coefs() 148 token_cache[scan[c]] = 5; in decode_coefs() 165 token_cache[scan[c]] = 4; in decode_coefs() 182 token_cache[scan[c]] = 3; in decode_coefs() 186 token_cache[scan[c]] = 2; in decode_coefs() 192 token_cache[scan[c]] = 1; in decode_coefs() 197 dqcoeff[scan[c]] = highbd_check_range( in decode_coefs() 200 dqcoeff[scan[c]] = in decode_coefs() 205 dqcoeff[scan[c]] = -v; in decode_coefs() [all …]
|
/external/syslinux/gpxe/src/core/ |
D | pc_kbd.c | 42 int scan; in get_scancode() local 46 scan = inb(0x60); in get_scancode() 48 switch (scan) { in get_scancode() 68 if (scan & 0x80) in get_scancode() 70 return scan; in get_scancode()
|
/external/libvpx/libvpx/vp9/common/ |
D | vp9_rtcd_defs.pl | 137 …qcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const int16_t *isc… 140 …qcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const int16_t *isc… 143 …qcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const int16_t *isc… 152 …qcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const int16_t *isc… 155 …qcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const int16_t *isc… 158 …qcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const int16_t *isc… 208 …qcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const int16_t *isc… 210 …qcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const int16_t *isc…
|
/external/valgrind/coregrind/m_demangle/ |
D | cplus-dem.c | 2643 string *declp, const char *scan) in iterate_demangle_function() argument 2650 if (*(scan + 2) == '\0') in iterate_demangle_function() 2656 || strstr (scan + 2, "__") == NULL) in iterate_demangle_function() 2657 return demangle_function_name (work, mangled, declp, scan); in iterate_demangle_function() 2672 while (scan[2]) in iterate_demangle_function() 2674 if (demangle_function_name (work, mangled, declp, scan)) in iterate_demangle_function() 2688 scan += 2; in iterate_demangle_function() 2691 while (*scan && (scan[0] != '_' || scan[1] != '_')) in iterate_demangle_function() 2692 scan++; in iterate_demangle_function() 2695 while (*scan && *scan == '_') in iterate_demangle_function() [all …]
|
/external/syslinux/com32/cmenu/libmenu/ |
D | help.c | 100 int scan; in showhelp() local 132 scan = KEY_ESC + 1; // anything except ESCAPE in showhelp() 136 while (scan != KEY_ESC) { in showhelp() 154 scan = get_key(stdout, 0); // wait for user keypress in showhelp() 156 switch (scan) { in showhelp() 191 scan = get_key(stdin, 0); in showhelp() 192 if (scan == KEY_ESC) in showhelp()
|
/external/libvpx/libvpx/vpx_dsp/ |
D | quantize.c | 120 uint16_t *eob_ptr, const int16_t *scan, in vpx_quantize_b_c() argument 133 const int rc = scan[i]; in vpx_quantize_b_c() 145 const int rc = scan[i]; in vpx_quantize_b_c() 172 const int16_t *scan, const int16_t *iscan) { in vpx_highbd_quantize_b_c() argument 184 const int rc = scan[i]; in vpx_highbd_quantize_b_c() 196 const int rc = scan[i]; in vpx_highbd_quantize_b_c() 222 const int16_t *scan, const int16_t *iscan) { in vpx_quantize_b_32x32_c() argument 238 const int rc = scan[i]; in vpx_quantize_b_32x32_c() 250 const int rc = scan[idx_arr[i]]; in vpx_quantize_b_32x32_c() 276 const int16_t *scan, const int16_t *iscan) { in vpx_highbd_quantize_b_32x32_c() argument [all …]
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | ProgramState.cpp | 508 bool ScanReachableSymbols::scan(nonloc::LazyCompoundVal val) { in scan() function in ScanReachableSymbols 521 bool ScanReachableSymbols::scan(nonloc::CompoundVal val) { in scan() function in ScanReachableSymbols 523 if (!scan(*I)) in scan() 529 bool ScanReachableSymbols::scan(const SymExpr *sym) { in scan() function in ScanReachableSymbols 546 return scan(cast<SymbolCast>(sym)->getOperand()); in scan() 548 return scan(cast<SymIntExpr>(sym)->getLHS()); in scan() 550 return scan(cast<IntSymExpr>(sym)->getRHS()); in scan() 553 return scan(x->getLHS()) && scan(x->getRHS()); in scan() 559 bool ScanReachableSymbols::scan(SVal val) { in scan() function in ScanReachableSymbols 561 return scan(X->getRegion()); in scan() [all …]
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_encodemb.c | 74 static int trellis_get_coeff_context(const int16_t *scan, const int16_t *nb, in trellis_get_coeff_context() argument 76 int bak = token_cache[scan[idx]], pt; in trellis_get_coeff_context() 77 token_cache[scan[idx]] = vp9_pt_energy_class[token]; in trellis_get_coeff_context() 79 token_cache[scan[idx]] = bak; in trellis_get_coeff_context() 113 const int16_t *const scan = so->scan; in vp9_optimize_b() local 151 const int rc = scan[i]; in vp9_optimize_b() 157 const int rc = scan[i]; in vp9_optimize_b() 169 pt = trellis_get_coeff_context(scan, nb, i, t0, token_cache); in vp9_optimize_b() 226 pt = trellis_get_coeff_context(scan, nb, i, t0, token_cache); in vp9_optimize_b() 230 pt = trellis_get_coeff_context(scan, nb, i, t1, token_cache); in vp9_optimize_b() [all …]
|
/external/selinux/libsemanage/src/ |
D | Makefile | 57 OBJS= $(patsubst %.c,%.o,$(SRCS)) conf-scan.o conf-parse.o 58 LOBJS= $(patsubst %.c,%.lo,$(SRCS)) conf-scan.lo conf-parse.lo 103 conf-scan.c: conf-scan.l conf-parse.h 123 conf-scan.o: conf-scan.c 126 conf-scan.lo: conf-scan.c 161 …SO) $(SWIGLOBJ) $(SWIGSO) $(SWIGRUBYSO) $(TARGET) conf-parse.c conf-parse.h conf-scan.c *.o *.lo *~
|