/external/google-breakpad/src/third_party/libdisasm/ |
H A D | ia32_operand.h | 9 unsigned int raw_flags, unsigned int prefixes,
|
H A D | ia32_insn.c | 216 static void ia32_handle_prefix( x86_insn_t *insn, unsigned int prefixes ) { 218 insn->prefix = (enum x86_insn_prefix) prefixes & PREFIX_MASK; // >> 20; 220 /* no printable prefixes */ 263 unsigned int prefixes ) { 273 insn->op_size = ( prefixes & PREFIX_OP_SIZE ) ? 4 : 2; 274 insn->addr_size = ( prefixes & PREFIX_ADDR_SIZE ) ? 4 : 2; 276 insn->op_size = ( prefixes & PREFIX_OP_SIZE ) ? 2 : 4; 277 insn->addr_size = ( prefixes & PREFIX_ADDR_SIZE ) ? 2 : 4; 288 ia32_handle_prefix( insn, prefixes ); 307 raw_insn->dest_flag, prefixes, modr 543 unsigned int prefixes = 0; local 576 unsigned int prefixes = 0; local [all...] |
H A D | ia32_invariant.c | 13 unsigned int *prefixes ); 142 unsigned int prefixes, x86_invariant_t *inv) { 150 op_size = ( prefixes & PREFIX_OP_SIZE ) ? 4 : 2; 151 addr_size = ( prefixes & PREFIX_ADDR_SIZE ) ? 4 : 2; 152 mode_16 = ( prefixes & PREFIX_ADDR_SIZE ) ? 0 : 1; 154 op_size = ( prefixes & PREFIX_OP_SIZE ) ? 2 : 4; 155 addr_size = ( prefixes & PREFIX_ADDR_SIZE ) ? 2 : 4; 156 mode_16 = ( prefixes & PREFIX_ADDR_SIZE ) ? 1 : 0; 282 unsigned int prefixes; local 287 size = ia32_table_lookup( buf, buf_len, 0, &raw_insn, &prefixes ); 140 ia32_decode_invariant( unsigned char *buf, size_t buf_len, ia32_insn_t *t, unsigned char *out, unsigned int prefixes, x86_invariant_t *inv) argument [all...] |
H A D | ia32_operand.c | 16 static void apply_seg( x86_op_t *op, unsigned int prefixes ) { 17 if (! prefixes ) return; 20 switch ( prefixes & PREFIX_REG_MASK ) { 381 unsigned int raw_flags, unsigned int prefixes, 419 /* if operand is an address, apply any segment override prefixes */ 421 apply_seg(op, prefixes); 379 ia32_decode_operand( unsigned char *buf, size_t buf_len, x86_insn_t *insn, unsigned int raw_op, unsigned int raw_flags, unsigned int prefixes, unsigned char modrm ) argument
|
/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/ |
H A D | packet_receiver.cc | 43 std::vector<std::string> prefixes; local 47 prefixes.push_back("Throughput_kbps#1"); 48 prefixes.push_back("Sending_Estimate_kbps#1"); 49 prefixes.push_back("Delay_ms_#1"); 50 prefixes.push_back("Packet_Loss_#1"); 51 prefixes.push_back("Objective_function_#1"); 54 prefixes.push_back("Throughput_kbps#1"); // Total Available. 55 prefixes.push_back("Throughput_kbps#1"); // Available per flow. 58 metric_recorder_->SetPlotInformation(prefixes, plot_delay, plot_loss);
|
/external/v8/test/mjsunit/ |
H A D | debug-stepout-scope-part2.js | 54 var prefixes = [ "debugger; ", variable 72 for (var i = 0; i < prefixes.length; ++i) { 73 var pre = prefixes[i];
|
H A D | debug-stepout-scope-part3.js | 54 var prefixes = [ variable 70 for (var i = 0; i < prefixes.length; ++i) { 71 var pre = prefixes[i];
|
H A D | debug-stepout-scope-part4.js | 54 var prefixes = [ variable 72 for (var i = 0; i < prefixes.length; ++i) { 73 var pre = prefixes[i];
|
H A D | debug-stepout-scope-part5.js | 54 var prefixes = [ "debugger; ", variable 68 for (var i = 0; i < prefixes.length; ++i) { 69 var pre = prefixes[i];
|
H A D | debug-stepout-scope-part6.js | 54 var prefixes = [ "debugger; ", variable 71 for (var i = 0; i < prefixes.length; ++i) { 72 var pre = prefixes[i];
|
H A D | debug-stepout-scope-part7.js | 54 var prefixes = [ "debugger; ", variable 71 for (var i = 0; i < prefixes.length; ++i) { 72 var pre = prefixes[i];
|
H A D | debug-stepout-scope-part1.js | 154 var prefixes = [ variable 161 for (var i = 0; i < prefixes.length; ++i) { 162 var pre = prefixes[i];
|
/external/elfutils/libcpu/ |
H A D | i386_data.h | 41 /* The rep/repe prefixes. */ 91 if (*d->prefixes & has_cs) 94 *d->prefixes &= ~has_cs; 96 else if (*d->prefixes & has_ds) 99 *d->prefixes &= ~has_ds; 101 else if (*d->prefixes & has_es) 104 *d->prefixes &= ~has_es; 106 else if (*d->prefixes & has_fs) 109 *d->prefixes &= ~has_fs; 111 else if (*d->prefixes 163 int prefixes = *d->prefixes; local 939 int prefixes = *d->prefixes; local 1019 int prefixes = *d->prefixes; local [all...] |
H A D | i386_disasm.c | 260 int *prefixes; member in struct:output_data 324 int prefixes; local 332 .prefixes = &prefixes, 343 prefixes = 0; 348 /* Recognize all prefixes. */ 359 prefixes |= last_prefix_bit = 1 << i; 366 prefixes |= ((*data++) & 0xf) | has_rex; 378 if (prefixes != 0) 449 || (prefixes [all...] |
/external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/ |
H A D | NamespaceSupport.java | 156 // ignore "xml" and "xmlns" prefixes
252 String[] prefixes = new String[fNamespaceSize];
253 fPrefixes = prefixes;
274 private String[] prefixes;
field in class:NamespaceSupport.Prefixes 281 public Prefixes(String [] prefixes, int size) {
argument 282 this.prefixes = prefixes;
300 throw new NoSuchElementException("Illegal access to Namespace prefixes enumeration.");
306 buf.append(prefixes[i]);
|
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/kdom/ |
H A D | Element.java | 39 protected Vector prefixes; field in class:Element 155 return (prefixes == null ? 0 : prefixes.size()); 159 return ((String[]) prefixes.elementAt(i))[0]; 163 return ((String[]) prefixes.elementAt(i))[1]; 260 if (prefixes == null) 261 prefixes = new Vector(); 262 prefixes.addElement(new String[] { 302 if (prefixes != null) { 303 for (int i = 0; i < prefixes [all...] |
/external/llvm/utils/ |
H A D | update_llc_test_checks.py | 111 # FIXME: We should use multiple check prefixes to common check lines. For 116 for prefixes, _ in checks: 117 for prefix in prefixes: 119 for prefixes, llc_args in checks: 122 print >>sys.stderr, 'Extracted FileCheck prefixes: ' + str(prefixes) 137 for prefix in prefixes: 139 if prefix == prefixes[-1]: 150 prefix_set = set([prefix for prefixes, _ in checks for prefix in prefixes]) [all...] |
/external/chromium-trace/catapult/third_party/html5lib-python/html5lib/treewalkers/ |
H A D | __init__.py | 88 if token["namespace"] in constants.prefixes: 89 ns = constants.prefixes[token["namespace"]] 101 if namespace in constants.prefixes: 102 ns = constants.prefixes[namespace]
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
H A D | NamespaceMappings.java | 56 * processed. At any given moment of processing the currently visible prefixes 67 * This member is continually incremented when new prefixes need to be 91 * All prefixes pushed at the current depth can be 168 Enumeration prefixes = m_namespaces.keys(); 169 while (prefixes.hasMoreElements()) 171 String prefix = (String) prefixes.nextElement(); 185 Enumeration prefixes = m_namespaces.keys(); 186 while (prefixes.hasMoreElements()) 188 String prefix = (String) prefixes.nextElement(); 475 * Given a namespace uri, get all prefixes boun [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/ |
H A D | ConfigResults.java | 169 * Returns a list of build results which names starts with one of the given prefixes. 171 * @param prefixes List of expected prefixes 174 public List getBuildsMatchingPrefixes(List prefixes) { argument 177 int length = prefixes.size(); 182 if (buildName.startsWith((String)prefixes.get(j))) { 392 * prefixes. 394 * @param prefixes List of prefixes to filter builds. If <code>null</code> 404 public double[] getStatistics(List prefixes) { argument 423 getStatistics(List prefixes, int dim_id) argument [all...] |
/external/icu/icu4c/source/i18n/ |
H A D | collationsets.cpp | 216 // Parallel iteration over prefixes of both tables. 217 UCharsTrie::Iterator prefixes(p, 0, errorCode); 222 // U+FFFF is untailorable and will not occur in prefixes. 226 if(prefixes.next(errorCode)) { 227 tp = &prefixes.getString(); 243 addPrefix(data, *tp, c, (uint32_t)prefixes.getValue()); 251 compare(c, (uint32_t)prefixes.getValue(), (uint32_t)basePrefixes.getValue()); 308 UCharsTrie::Iterator prefixes(p, 0, errorCode); 309 while(prefixes.next(errorCode)) { 310 addPrefix(d, prefixes [all...] |
/external/mesa3d/scons/ |
H A D | crossmingw.py | 68 prefixes = prefixes64 70 prefixes = prefixes32 71 for prefix in prefixes:
|
/external/gptfdisk/ |
H A D | support.cc | 229 string units, prefixes = " KMGTPEZ"; local 233 while ((sizeInIeee > 1024) && (index < (prefixes.length() - 1))) { 238 if (prefixes[index] == ' ') { 242 units[1] = prefixes[index];
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/ |
H A D | ContractionsAndExpansions.java | 44 public ContractionsAndExpansions(UnicodeSet con, UnicodeSet exp, CESink s, boolean prefixes) { argument 48 addPrefixes = prefixes; 236 CharsTrie.Iterator prefixes = new CharsTrie(data.contexts, index + 2).iterator(); 237 while (prefixes.hasNext()) { 238 Entry e = prefixes.next();
|
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/ |
H A D | ContractionsAndExpansions.java | 40 public ContractionsAndExpansions(UnicodeSet con, UnicodeSet exp, CESink s, boolean prefixes) { argument 44 addPrefixes = prefixes; 232 CharsTrie.Iterator prefixes = new CharsTrie(data.contexts, index + 2).iterator(); 233 while (prefixes.hasNext()) { 234 Entry e = prefixes.next();
|