Searched defs:prefixes (Results 26 - 50 of 54) sorted by relevance

123

/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/
H A Dx86bc.c275 unsigned int num_prefixes, uintptr_t *prefixes)
281 switch ((x86_parse_insn_prefix)(prefixes[i] & 0xff00)) {
285 N_("multiple LOCK or REP prefixes, using leftmost"));
286 common->lockrep_pre = (unsigned char)prefixes[i] & 0xff;
289 common->addrsize = (unsigned char)prefixes[i] & 0xff;
292 common->opersize = (unsigned char)prefixes[i] & 0xff;
309 common->lockrep_pre = (unsigned char)prefixes[i] & 0xff;
325 N_("multiple REX prefixes, using leftmost"));
331 *rex = (unsigned char)prefixes[i] & 0xff;
599 /* VEX and XOP prefixes neve
273 yasm_x86__bc_apply_prefixes(x86_common *common, unsigned char *rex, unsigned int def_opersize_64, unsigned int num_prefixes, uintptr_t *prefixes) argument
[all...]
/external/skia/src/core/
H A DSkString.cpp58 int SkStrStartsWithOneOf(const char string[], const char prefixes[]) { argument
61 const char* limit = strchr(prefixes, '\0');
62 if (!strncmp(string, prefixes, limit - prefixes)) {
65 prefixes = limit + 1;
67 } while (prefixes[0]);
/external/chromium_org/chrome/browser/autocomplete/
H A Dhistory_url_provider.cc86 // the prefixes as well as after it). Consider the following scenario:
731 const URLPrefixes& prefixes = URLPrefix::GetURLPrefixes(); local
732 for (URLPrefixes::const_iterator i(prefixes.begin()); i != prefixes.end();
738 // need to promote lower-quality matches that are prefixes of higher-quality
1005 // first match in |params|, because they might have different prefixes. If
/external/chromium_org/chrome/browser/safe_browsing/
H A Ddatabase_manager.cc495 std::vector<SBPrefix> prefixes = check->prefix_hits; local
500 database_->CacheHashResults(prefixes, full_hashes, cache_lifetime);
742 // since that is the common case (multiple prefixes will issue the request
1009 std::vector<SBPrefix> prefixes; local
1012 prefixes.push_back((*it).prefix);
1014 database_->ContainsExtensionPrefixes(prefixes, &check->prefix_hits);
1024 // Some prefixes matched, we need to ask Google whether they're legit.
H A Dsafe_browsing_database_unittest.cc97 // Generate an add chunk with two prefixes.
101 const SBPrefix prefixes[2] = { local
107 &prefixes[0], sizeof(prefixes),
111 // Generate an add chunk with four prefixes.
117 const SBPrefix prefixes[4] = { local
125 &prefixes[0], sizeof(prefixes),
168 // Generate a sub chunk with two prefixes.
174 const SBPrefix prefixes[ local
795 std::vector<SBPrefix> prefixes; local
[all...]
H A Dsafe_browsing_database.cc116 // |include_whitelist_hashes| is true we will generate additional path-prefixes
156 // Get the prefixes matching the download |urls|.
158 std::vector<SBPrefix>* prefixes) {
164 prefixes->push_back(full_hashes[i].prefix);
167 // Helper function to compare addprefixes in |store| with |prefixes|.
171 // the actual matching prefixes.
174 const std::vector<SBPrefix>& prefixes,
183 for (size_t j = 0; j < prefixes.size(); ++j) {
184 const SBPrefix& prefix = prefixes[j];
695 std::vector<SBPrefix> prefixes;
157 GetDownloadUrlPrefixes(const std::vector<GURL>& urls, std::vector<SBPrefix>* prefixes) argument
172 MatchAddPrefixes(SafeBrowsingStore* store, int list_bit, const std::vector<SBPrefix>& prefixes, std::vector<SBPrefix>* prefix_hits) argument
718 ContainsExtensionPrefixes( const std::vector<SBPrefix>& prefixes, std::vector<SBPrefix>* prefix_hits) argument
943 CacheHashResults( const std::vector<SBPrefix>& prefixes, const std::vector<SBFullHashResult>& full_hits, const base::TimeDelta& cache_lifetime) argument
[all...]
/external/chromium_org/chrome/installer/util/
H A Dgoogle_update_settings_unittest.cc90 // prefixes and suffixes, while asserting on the correct channel value.
106 const wchar_t* prefixes[] = { local
117 for (size_t i = 0; i < arraysize(prefixes); ++i) {
120 base::string16 ap = prefixes[i];
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLRenderingContextBase.h585 ExtensionTracker(ExtensionFlags flags, const char* const* prefixes) argument
587 , m_prefixes(prefixes)
602 const char* const* prefixes() const;
620 static PassOwnPtrWillBeRawPtr<TypedExtensionTracker<T> > create(RefPtrWillBeMember<T>& extensionField, ExtensionFlags flags, const char* const* prefixes) argument
622 return adoptPtrWillBeNoop(new TypedExtensionTracker<T>(extensionField, flags, prefixes));
671 TypedExtensionTracker(RefPtrWillBeMember<T>& extensionField, ExtensionFlags flags, const char* const* prefixes) argument
672 : ExtensionTracker(flags, prefixes)
687 void registerExtension(RefPtrWillBeMember<T>& extensionPtr, ExtensionFlags flags = ApprovedExtension, const char* const* prefixes = 0)
689 m_extensions.append(TypedExtensionTracker<T>::create(extensionPtr, flags, prefixes));
H A DWebGLRenderingContextBase.cpp2159 const char* const* WebGLRenderingContextBase::ExtensionTracker::prefixes() const function in class:blink::__anon11092::WebGLRenderingContextBase::ExtensionTracker
2167 const char* const* prefixSet = prefixes();
2654 const char* const* prefixes = tracker->prefixes(); local
2655 for (; *prefixes; ++prefixes) {
2656 String prefixedName = String(*prefixes) + tracker->extensionName();
/external/elfutils/0.153/libcpu/
H A Di386_data.h38 /* The rep/repe prefixes. */
88 if (*d->prefixes & has_cs)
91 *d->prefixes &= ~has_cs;
93 else if (*d->prefixes & has_ds)
96 *d->prefixes &= ~has_ds;
98 else if (*d->prefixes & has_es)
101 *d->prefixes &= ~has_es;
103 else if (*d->prefixes & has_fs)
106 *d->prefixes &= ~has_fs;
108 else if (*d->prefixes
160 int prefixes = *d->prefixes; local
936 int prefixes = *d->prefixes; local
1016 int prefixes = *d->prefixes; local
[all...]
H A Di386_disasm.c257 int *prefixes; member in struct:output_data
321 int prefixes; local
329 .prefixes = &prefixes,
340 prefixes = 0;
345 /* Recognize all prefixes. */
356 prefixes |= last_prefix_bit = 1 << i;
363 prefixes |= ((*data++) & 0xf) | has_rex;
375 if (prefixes != 0)
446 || (prefixes
[all...]
/external/chromium_org/third_party/libxslt/libxslt/
H A Dxslt.c1048 * from excluded output prefixes currently in scope. Initialize the
1535 * @template: the "extension-element-prefixes" prefix
1540 * an extension-element-prefixes attribute on:
1542 * 2) an xsl:extension-element-prefixes attribute on a
1549 xmlChar *prefixes; local
1557 prefixes = xmlGetNsProp(cur,
1558 (const xmlChar *)"extension-element-prefixes", NULL);
1561 prefixes = xmlGetNsProp(cur,
1562 (const xmlChar *)"extension-element-prefixes", XSLT_NAMESPACE);
1564 if (prefixes
1687 xmlChar *prefixes; local
[all...]
/external/qemu/target-i386/
H A Dtranslate.c2581 static inline int svm_is_rep(int prefixes) argument
2583 return ((prefixes & (PREFIX_REPZ | PREFIX_REPNZ)) ? 8 : 0);
4271 int b, prefixes, aflag, dflag; local
4284 prefixes = 0;
4298 /* check prefixes */
4303 prefixes |= PREFIX_REPZ;
4306 prefixes |= PREFIX_REPNZ;
4309 prefixes |= PREFIX_LOCK;
4330 prefixes |= PREFIX_DATA;
4333 prefixes |
[all...]
/external/qemu/disas/
H A Di386.c241 /* Flags for the prefixes for the current instruction. See below. */
242 static int prefixes; variable
263 /* Flags for prefixes which we somehow handled when printing the
467 #define v_mode 2 /* operand size depends on prefixes */
476 #define dq_mode 11 /* operand size depends on REX prefixes. */
481 #define z_mode 16 /* non-quad operand size depends on prefixes */
3390 prefixes = 0;
3399 /* REX prefixes family. */
3422 prefixes |= PREFIX_REPZ;
3425 prefixes |
[all...]
/external/chromium_org/third_party/expat/files/lib/
H A Dxmlparse.c266 HASH_TABLE prefixes; member in struct:__anon11782
1106 This would leave those prefixes with dangling pointers.
2774 namespace processing is turned on and different prefixes for the same
5414 prefix = (PREFIX *)lookup(parser, &dtd->prefixes, poolStart(&dtd->pool),
5461 id->prefix = (PREFIX *)lookup(parser, &dtd->prefixes, name + 6, sizeof(PREFIX));
5476 id->prefix = (PREFIX *)lookup(parser, &dtd->prefixes, poolStart(&dtd->pool),
5513 hashTableIterInit(&iter, &(dtd->prefixes));
5587 prefix = (PREFIX *)lookup(parser, &dtd->prefixes, poolStart(&tempPool),
5655 hashTableInit(&(p->prefixes), ms);
5696 hashTableClear(&(p->prefixes));
[all...]
/external/expat/lib/
H A Dxmlparse.c266 HASH_TABLE prefixes; member in struct:__anon21366
1106 This would leave those prefixes with dangling pointers.
2774 namespace processing is turned on and different prefixes for the same
5414 prefix = (PREFIX *)lookup(parser, &dtd->prefixes, poolStart(&dtd->pool),
5461 id->prefix = (PREFIX *)lookup(parser, &dtd->prefixes, name + 6, sizeof(PREFIX));
5476 id->prefix = (PREFIX *)lookup(parser, &dtd->prefixes, poolStart(&dtd->pool),
5513 hashTableIterInit(&iter, &(dtd->prefixes));
5587 prefix = (PREFIX *)lookup(parser, &dtd->prefixes, poolStart(&tempPool),
5655 hashTableInit(&(p->prefixes), ms);
5696 hashTableClear(&(p->prefixes));
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/
H A Dperformanceui.jarMETA-INF/MANIFEST.MF .project about.html plugin.xml build.properties images/FAIL ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.runtime.compatibility_3.2.100.v20100505.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jface.text_3.6.1.r361_v20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jface_3.6.1.M20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Ddom4j-1.6.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/dom4j/ org/dom4j/bean/ org/dom4j/datatype/ org/ ...
H A Djaxen-1.1.6.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/LICENSE.txt META-INF/maven/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/jdiff/
H A Dxerces.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ org/ org/apache/ org/apache/html/ ...

Completed in 529 milliseconds

123