Home
last modified time | relevance | path

Searched refs:flattened (Results 1 - 13 of 13) sorted by relevance

/third_party/skia/src/sksl/ir/
H A DSkSLConstructorCompound.cpp51 // See how many fields we would have if composite constructors were flattened out. in Make()
60 // be flattened out. in Make()
62 ExpressionArray flattened; in Make() local
63 flattened.reserve_back(fields); in Make()
67 flattened.push_back(std::move(arg)); in Make()
73 flattened.push_back(std::move(innerArg)); in Make()
76 args = std::move(flattened); in Make()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/
H A DRewriteArrayOfArrayOfOpaqueUniforms.cpp24 // Corresponding to an array of array of opaque uniform variable, this is the flattened variable
26 const TVariable *flattened; member
53 // uniforms are replaced with their flattened ones. In particular, this is run on the right node of
225 // Create an index into the flattened uniform. in RewriteArrayOfArraySubscriptExpression()
227 return new TIntermBinary(op, new TIntermSymbol(data.flattened), index); in RewriteArrayOfArraySubscriptExpression()
290 // Create a replacement variable with the array flattened.
295 data.flattened = new TVariable(mSymbolTable, uniformVariable->name(), newType,
299 decl->appendDeclarator(new TIntermSymbol(data.flattened));
/third_party/libwebsockets/lib/jose/jws/
H A Djws.c29 * Currently only support flattened or compact (implicitly single signature)
54 /* parse a JWS complete or flattened JSON object */
892 lws_jws_write_flattened_json(struct lws_jws *jws, char *flattened, size_t len) in lws_jws_write_flattened_json() argument
899 n += (unsigned int)lws_snprintf(flattened + n, len - n , "{\"payload\": \""); in lws_jws_write_flattened_json()
900 lws_strnncpy(flattened + n, jws->map_b64.buf[LJWS_PYLD], in lws_jws_write_flattened_json()
902 n = n + strlen(flattened + n); in lws_jws_write_flattened_json()
904 n += (unsigned int)lws_snprintf(flattened + n, len - n , "\",\n \"protected\": \""); in lws_jws_write_flattened_json()
905 lws_strnncpy(flattened + n, jws->map_b64.buf[LJWS_JOSE], in lws_jws_write_flattened_json()
907 n = n + strlen(flattened + n); in lws_jws_write_flattened_json()
910 n += (unsigned int)lws_snprintf(flattened in lws_jws_write_flattened_json()
[all...]
/third_party/skia/third_party/externals/angle2/scripts/
H A Dexport_targets.py135 flattened = dict(descs[target_name])
156 existing = flattened.get(k, [])
159 flattened[k] = sortedi(set(existing + v))
161 #flattened.setdefault(k, v)
166 return flattened
/third_party/node/deps/v8/src/codegen/
H A Dstring-constants.h33 void Memoize(Handle<String> flattened) const { flattened_ = flattened; } in Memoize()
/third_party/rust/crates/clap/tests/derive/
H A Dflatten.rs231 flattened: Flattened, in docstrings_ordering_with_multiple_command()
251 flattened: Flattened, in docstrings_ordering_with_multiple_clap_partial()
/third_party/python/Tools/c-analyzer/c_common/
H A Dscriptutil.py179 def _add_procs(flattened, procs):
184 flattened.append(procs)
188 _add_procs(flattened, proc)
/third_party/libwebsockets/include/libwebsockets/
H A Dlws-jws.h231 * lws_jws_write_flattened_json() - create flattened JSON sig
234 * \param flattened: output buffer for JSON
235 * \param len: size of \p flattened output buffer
239 lws_jws_write_flattened_json(struct lws_jws *jws, char *flattened, size_t len);
242 * lws_jws_write_compact() - create flattened JSON sig
246 * \param len: size of \p flattened output buffer
/third_party/node/deps/v8/src/numbers/
H A Dconversions.cc1429 Handle<String> flattened = String::Flatten(isolate, string); in StringToDouble() local
1432 String::FlatContent flat = flattened->GetFlatContent(no_gc); in StringToDouble()
/third_party/glslang/glslang/HLSL/
H A DhlslParseHelper.cpp805 bool flattened = false; in handleBracketDereference()
832 error(loc, "Invalid variable index to flattened array", base->getAsSymbolNode()->getName().c_str(), ""); in handleBracketDereference()
835 flattened = (result != base); in handleBracketDereference()
852 // If the array reference was flattened, it has the correct type. E.g, if it was in handleBracketDereference()
853 // a uniform array, it was flattened INTO a set of scalar uniforms, not scalar temps. in handleBracketDereference()
855 if (!flattened) { in handleBracketDereference()
1153 // Is this an aggregate that should be flattened?
1211 // The leaves are the indexes into the flattened member array.
1216 // This will produce the following flattened tree:
1223 // so the 4th flattened membe
1377 TIntermTyped* flattened = flattenAccess(symbolNode.getId(), member, base->getQualifier().storage, flattenAccess() local
[all...]
/third_party/python/Lib/test/
H A Dtest_buffer.py828 # Also test tobytes() against the flattened 'lst', with all items
859 flattened = flatten(lst)
870 # flattened logical representation to Fortran order.
871 trans = transpose(flattened, shape)
877 # The flattened list is already in C-order.
878 expected = ndarray(flattened, shape=shape, format=ff)
887 nmemb = len(flattened)
/third_party/glslang/glslang/MachineIndependent/
H A DParseHelper.cpp4317 int flattened = EsdNumDims * (EbtNumTypes * (2 * (2 * (2 * (2 * arrayIndex + msIndex) + imageIndex) + shadowIndex) + in computeSamplerTypeIndex() local
4319 assert(flattened < maxSamplerIndex); in computeSamplerTypeIndex()
4321 return flattened; in computeSamplerTypeIndex()
/third_party/skia/third_party/externals/spirv-cross/
H A Dspirv_glsl.cpp2323 SPIRV_CROSS_THROW("Basic types in a flattened UBO must be float, int or uint.");
2330 SPIRV_CROSS_THROW("All basic types in a flattened block must be the same.");
2454 SPIRV_CROSS_THROW("Array of varying structs cannot be flattened to legacy-compatible varyings.");
2456 // Emit flattened types based on the type alias. Normally, we are never supposed to emit
2486 // Treat this variable as fully flattened from now on.
9059 SPIRV_CROSS_THROW("Access chains that result in an array can not be flattened");
9241 "This cannot be flattened. Try using std140 layout instead.");
9268 "This cannot be flattened. Try using std140 layout instead.");
9327 "This cannot be flattened. Try using std140 layout instead.");
9356 "This cannot be flattened i
[all...]

Completed in 41 milliseconds