Searched refs:comp (Results 51 - 75 of 363) sorted by relevance

1234567891011>>

/external/stlport/stlport/stl/
H A D_queue.h168 _Compare comp; member in class:priority_queue
171 explicit priority_queue(const _Compare& __x) : c(), comp(__x) {}
173 : c(__s), comp(__x)
174 { make_heap(c.begin(), c.end(), comp); }
179 comp(_STLP_PRIV _AsMoveSource(src.get().comp)) {}
185 : c(__first, __last) { make_heap(c.begin(), c.end(), comp); }
190 : c(__first, __last), comp(__x)
191 { make_heap(c.begin(), c.end(), comp); }
196 : c(__s), comp(__
262 #undef comp macro
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dradeon_code.c147 unsigned comp; local
148 for(comp = 0; comp < c->Constants[index].Size; ++comp) {
149 if (c->Constants[index].u.Immediate[comp] == data) {
150 *swizzle = RC_MAKE_SWIZZLE_SMEAR(comp);
161 unsigned comp = c->Constants[free_index].Size++; local
162 c->Constants[free_index].u.Immediate[comp] = data;
163 *swizzle = RC_MAKE_SWIZZLE_SMEAR(comp);
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_code.c147 unsigned comp; local
148 for(comp = 0; comp < c->Constants[index].Size; ++comp) {
149 if (c->Constants[index].u.Immediate[comp] == data) {
150 *swizzle = RC_MAKE_SWIZZLE_SMEAR(comp);
161 unsigned comp = c->Constants[free_index].Size++; local
162 c->Constants[free_index].u.Immediate[comp] = data;
163 *swizzle = RC_MAKE_SWIZZLE_SMEAR(comp);
/external/llvm/test/Object/
H A Dcoff-archive-short.test19 CHECKIDX: 00aa9d1b a @comp.id
26 CHECKIDX: 00aa9d1b a @comp.id
/external/chromium_org/third_party/libxslt/libxslt/
H A Dtemplates.h25 xmlXPathCompExprPtr comp,
47 xmlXPathCompExprPtr comp);
50 xmlXPathCompExprPtr comp,
H A Dextra.h67 xsltStylePreCompPtr comp);
H A Dxsltutils.c957 xsltStyleItemSortPtr comp; local
959 xsltStylePreCompPtr comp;
972 comp = sort->psvi;
973 if (comp == NULL) {
979 if ((comp->select == NULL) || (comp->comp == NULL))
1012 if (comp->inScopeNs != NULL) {
1013 ctxt->xpathCtxt->namespaces = comp->inScopeNs->list;
1014 ctxt->xpathCtxt->nsNr = comp
1085 xsltStyleItemSortPtr comp; local
[all...]
H A Dpattern.h42 xsltFreeCompMatchList (xsltCompMatchPtr comp);
46 xsltCompMatchPtr comp);
/external/chromium_org/third_party/skia/src/xml/
H A DSkJS.cpp108 char *path, *comp, *full; local
123 for (comp = strtok(path, ":"); comp; comp = strtok(NULL, ":")) {
124 if (*comp != '\0') {
125 full = JS_smprintf("%s/%s", comp, name);
135 if (*comp != '\0')
/external/lldb/test/
H A Dredo.py94 if not all([comp in name for comp in filename_components]):
104 comp = comp_pattern.search(line)
105 if comp:
106 comp_specs.add(comp.group(1))
180 for comp in comp_specs:
181 compilers += " -C %s" % (comp)
/external/skia/src/xml/
H A DSkJS.cpp108 char *path, *comp, *full; local
123 for (comp = strtok(path, ":"); comp; comp = strtok(NULL, ":")) {
124 if (*comp != '\0') {
125 full = JS_smprintf("%s/%s", comp, name);
135 if (*comp != '\0')
/external/openssl/crypto/stack/
H A Dstack.c83 int (*old)(const void *,const void *)=sk->comp;
85 if (sk->comp != c)
87 sk->comp=c;
97 if ((ret=sk_new(sk->comp)) == NULL) goto err;
107 ret->comp=sk->comp;
131 ret->comp=c;
220 if (st->comp == NULL)
229 r=OBJ_bsearch_ex_(&data,st->data,st->num,sizeof(void *),st->comp,
318 /* same comment as in sk_find ... previously st->comp wa
[all...]
/external/chromium_org/third_party/libxml/src/
H A DtestXPath.c95 xmlXPathCompExprPtr comp; local
97 comp = xmlXPathCompile(BAD_CAST str);
98 if (comp != NULL) {
100 xmlXPathDebugDumpCompExpr(stdout, comp, 0);
102 res = xmlXPathCompiledEval(comp, ctxt);
103 xmlXPathFreeCompExpr(comp);
/external/chromium_org/chrome/browser/history/
H A Durl_utils.cc81 url::Component comp;
82 comp.len = new_scheme.length();
84 replacement.SetScheme(new_scheme.c_str(), comp);
/external/chromium_org/third_party/boringssl/src/include/openssl/
H A Dlhash_macros.h20 #define lh_ASN1_OBJECT_new(hash, comp) \
25 comp)))
59 #define lh_CONF_VALUE_new(hash, comp) \
63 int (*)(const CONF_VALUE *a, const CONF_VALUE *b), comp)))
96 #define lh_ERR_STATE_new(hash, comp) \
100 int (*)(const ERR_STATE *a, const ERR_STATE *b), comp)))
132 #define lh_ERR_STRING_DATA_new(hash, comp) \
138 int (*)(const ERR_STRING_DATA *a, const ERR_STRING_DATA *b), comp)))
172 #define lh_EX_CLASS_ITEM_new(hash, comp) \
178 comp)))
[all...]
H A Dstack.h102 * order, based on |comp|. */
107 /* comp is an optional comparision function. */
108 stack_cmp_func comp; member in struct:stack_st
208 OPENSSL_EXPORT _STACK *sk_new(stack_cmp_func comp);
287 OPENSSL_EXPORT stack_cmp_func sk_set_cmp_func(_STACK *sk, stack_cmp_func comp);
H A Dstack_macros.h20 #define sk_ACCESS_DESCRIPTION_new(comp) \
24 comp)))
91 #define sk_ACCESS_DESCRIPTION_set_cmp_func(sk, comp) \
97 comp)))
101 #define sk_ASN1_ADB_TABLE_new(comp) \
104 int (*)(const ASN1_ADB_TABLE **a, const ASN1_ADB_TABLE **b), comp)))
170 #define sk_ASN1_ADB_TABLE_set_cmp_func(sk, comp) \
176 comp)))
180 #define sk_ASN1_GENERALSTRING_new(comp) \
184 comp)))
[all...]
H A Dlhash.h144 lhash_cmp_func comp; member in struct:lhash_st
148 /* lh_new returns a new, empty hash table or NULL on error. If |comp| is NULL,
151 OPENSSL_EXPORT _LHASH *lh_new(lhash_hash_func hash, lhash_cmp_func comp);
/external/chromium_org/components/policy/core/common/
H A Dschema_map.cc118 for (ComponentMap::const_iterator comp = components.begin();
119 comp != components.end(); ++comp) {
120 PolicyNamespace ns(domain->first, comp->first);
/external/openssl/crypto/comp/
H A Dcomp_err.c1 /* crypto/comp/comp_err.c */
63 #include <openssl/comp.h>
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
H A Dvp9_entropymv.c206 nmv_component *comp = &fc->comps[i]; local
210 comp->sign = adapt_prob(pre_comp->sign, c->sign);
212 comp->classes);
213 adapt_probs(vp9_mv_class0_tree, pre_comp->class0, c->class0, comp->class0);
216 comp->bits[j] = adapt_prob(pre_comp->bits[j], c->bits[j]);
220 comp->class0_fp[j]);
222 adapt_probs(vp9_mv_fp_tree, pre_comp->fp, c->fp, comp->fp);
225 comp->class0_hp = adapt_prob(pre_comp->class0_hp, c->class0_hp);
226 comp->hp = adapt_prob(pre_comp->hp, c->hp);
/external/libvpx/libvpx/vp9/common/
H A Dvp9_entropymv.c206 nmv_component *comp = &fc->comps[i]; local
210 comp->sign = adapt_prob(pre_comp->sign, c->sign);
212 comp->classes);
213 adapt_probs(vp9_mv_class0_tree, pre_comp->class0, c->class0, comp->class0);
216 comp->bits[j] = adapt_prob(pre_comp->bits[j], c->bits[j]);
220 comp->class0_fp[j]);
222 adapt_probs(vp9_mv_fp_tree, pre_comp->fp, c->fp, comp->fp);
225 comp->class0_hp = adapt_prob(pre_comp->class0_hp, c->class0_hp);
226 comp->hp = adapt_prob(pre_comp->hp, c->hp);
/external/chromium_org/cc/base/
H A Dscoped_ptr_vector.h163 inline void sort(Compare comp) {
164 std::sort(data_.begin(), data_.end(), comp);
168 inline void make_heap(Compare comp) {
169 std::make_heap(data_.begin(), data_.end(), comp);
173 inline void push_heap(Compare comp) {
174 std::push_heap(data_.begin(), data_.end(), comp);
178 inline void pop_heap(Compare comp) {
179 std::pop_heap(data_.begin(), data_.end(), comp);
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xa/
H A Dxa_composite.h128 xa_composite_check_accelerated(const struct xa_composite *comp);
131 xa_composite_prepare(struct xa_context *ctx, const struct xa_composite *comp);
/external/libpng/contrib/gregbook/
H A Dmakevms.com37 $ comp = "__decc__=1"
45 $ comp = "__gcc__=1"
48 $ comp = "__vaxc__=1"
53 $ comp = "__decc__=1"

Completed in 1260 milliseconds

1234567891011>>