/third_party/libwebsockets/lib/system/metrics/ |
H A D | metrics.c | 349 pub->u.agg.min = ~(u_mt_t)0; in lws_metric_create() 719 memset(&pub->u.agg, 0, sizeof(pub->u.agg)); in lws_metrics_dump_cb() 745 (unsigned int)pub->u.agg.count[gng]); in _lws_metrics_format() 748 (uint64_t)pub->u.agg.sum[gng], in _lws_metrics_format() 758 " (%d%%)", (int)((100 * pub->u.agg.sum[gng]) / in _lws_metrics_format() 763 (unsigned int)pub->u.agg.count[gng]); in _lws_metrics_format() 765 (uint64_t)pub->u.agg.sum[gng], in _lws_metrics_format() 770 buf += lws_snprintf(buf, lws_ptr_diff_size_t(end, buf), "%u, mean: ", (unsigned int)pub->u.agg.count[gng]); in _lws_metrics_format() 773 (uint64_t)(pub->u.agg in _lws_metrics_format() [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | parserRealSource9.js | 105 var agg = new SymbolAggregateScope(type.symbol); 108 agg.addParentScope(memberScope); 109 agg.addParentScope(scope); 115 this.bind(agg, type.members.allMembers); // REVIEW: Should only be getting exported types? 118 this.bind(agg, typeMembers.allMembers); 121 this.bind(agg, ambientMembers.allMembers); 124 this.bind(agg, ambientTypeMembers.allMembers); 307 var agg = new SymbolAggregateScope(type.symbol);
310 agg.addParentScope(memberScope);
311 agg [all...] |
/third_party/glslang/glslang/MachineIndependent/ |
H A D | attribute.cpp | 150 TIntermAggregate* agg = intermediate.makeAggregate(node); in makeAttributes() local 151 TAttributeArgs args = { attributeFromName(identifier), agg }; in makeAttributes() 230 TIntermAggregate* agg = node->getAsAggregate(); in handleLoopAttributes() local 231 if (agg == nullptr) in handleLoopAttributes() 233 for (auto it = agg->getSequence().begin(); it != agg->getSequence().end(); ++it) { in handleLoopAttributes()
|
H A D | ParseHelper.cpp | 1518 if (auto agg = result->getAsAggregate()) { in handleBuiltInFunctionCall() 1520 auto& sequence = agg->getSequence(); in handleBuiltInFunctionCall() 1529 agg->setSpirvInstruction(function.getSpirvInstruction()); in handleBuiltInFunctionCall() 1594 } else if (TIntermAggregate* agg = node.getAsAggregate()) { in computeBuiltinPrecisions() 1595 TIntermSequence& sequence = agg->getSequence(); in computeBuiltinPrecisions() 1597 switch (agg->getOp()) { in computeBuiltinPrecisions() 1621 if (agg->isSampling() || in computeBuiltinPrecisions() 1622 agg->getOp() == EOpImageLoad || agg->getOp() == EOpImageStore || in computeBuiltinPrecisions() 1623 agg in computeBuiltinPrecisions() [all...] |
/third_party/libwebsockets/plugins/ |
H A D | protocol_lws_openmetrics_export.c | 28 * 2) "lws-openmetrics-prox-agg" metrics proxy server that scraper can connect 91 * the same name given in a pvo for both "lws-openmetrics-prox-agg" 217 nm, (unsigned int)pub->u.agg.count[gng], in lws_metrics_om_format_agg() 218 nm, (unsigned long long)pub->u.agg.sum[gng], in lws_metrics_om_format_agg() 230 (unsigned int)pub->u.agg.count[gng], in lws_metrics_om_format_agg() 232 (unsigned long long)pub->u.agg.sum[gng]); in lws_metrics_om_format_agg() 239 (unsigned int)pub->u.agg.count[gng], in lws_metrics_om_format_agg() 241 (pub->u.agg.count[gng] ? in lws_metrics_om_format_agg() 242 pub->u.agg.sum[gng] / in lws_metrics_om_format_agg() 243 pub->u.agg in lws_metrics_om_format_agg() [all...] |
/third_party/libwebsockets/lib/misc/fts/ |
H A D | trie-fd.c | 55 int agg; member 384 s[n].agg -= (int)instances; in ac_record() 393 uint32_t children, instances, co, sl, agg, slt, chunk, in lws_fts_search() local 485 bp += rq32(&buf[bp], &agg); in lws_fts_search() 508 * deflate the parent agg using the in lws_fts_search() 512 agg_instances -= agg; in lws_fts_search() 873 uint32_t slen, cho, agg, inst; in lws_fts_search() local 880 bp += rq32(&buf[bp], &agg); in lws_fts_search() 897 ch->child_agg = (int)agg; in lws_fts_search() 927 * Compare parent remaining agg v in lws_fts_search() [all...] |
H A D | trie.c | 163 unsigned char agg[128]; member 651 if (t->agg_pos < sizeof(t->agg) - 1) in lws_fts_fill() 653 t->agg[t->agg_pos++] = c; in lws_fts_fill() 932 /* if nothing in agg[]: leave as single char match */ in lws_fts_fill() 946 /* and then add the agg buffer stuff */ in lws_fts_fill() 947 memcpy(t->parser->suffix + 1, t->agg, t->agg_pos); in lws_fts_fill()
|
/third_party/libwebsockets/lib/roles/http/server/ |
H A D | ranges.c | 184 rp->agg = 0; in lws_ranges_init() 202 rp->agg += rp->end - rp->start + 1; in lws_ranges_init()
|
H A D | server.c | 2864 * - the actual payloads (aggregated in rp->agg) in lws_serve_http_file() 2869 total_content_length = (lws_filepos_t)rp->agg + in lws_serve_http_file() 2893 total_content_length = (lws_filepos_t)rp->agg; in lws_serve_http_file()
|
/third_party/libwebsockets/include/libwebsockets/ |
H A D | lws-metrics.h | 182 } agg; member
|
/third_party/libwebsockets/lib/roles/http/ |
H A D | private-lib-roles-http.h | 81 unsigned long long start, end, extent, agg, budget; member
|
/third_party/mesa3d/src/microsoft/compiler/ |
H A D | nir_to_dxil.c | 3105 const struct dxil_value *agg = load_ubo(ctx, handle, offset, DXIL_F32); in emit_load_ubo() local 3107 if (!agg) in emit_load_ubo() 3111 const struct dxil_value *retval = dxil_emit_extractval(&ctx->mod, agg, i); in emit_load_ubo() 3131 const struct dxil_value *agg = load_ubo(ctx, handle, offset, DXIL_I32); in emit_load_ubo_dxil() local 3132 if (!agg) in emit_load_ubo_dxil() 3137 dxil_emit_extractval(&ctx->mod, agg, i)); in emit_load_ubo_dxil()
|