Home
last modified time | relevance | path

Searched refs:conds (Results 1 – 11 of 11) sorted by relevance

/external/syzkaller/vendor/cloud.google.com/go/storage/
Dstorage.go263 conds *Conditions member
291 func (o *ObjectHandle) If(conds Conditions) *ObjectHandle {
293 o2.conds = &conds
315 if err := applyConds("Attrs", o.gen, o.conds, call); err != nil {
392 if err := applyConds("Update", o.gen, o.conds, call); err != nil {
441 if err := applyConds("Delete", o.gen, o.conds, call); err != nil {
480 if o.conds != nil {
481 if err := o.conds.validate("NewRangeReader"); err != nil {
489 RawQuery: conditionsQuery(o.gen, o.conds),
969 func applyConds(method string, gen int64, conds *Conditions, call interface{}) error {
[all …]
Dbucket.go37 conds *BucketConditions member
96 if err := applyBucketConds("BucketHandle.Delete", b.conds, req); err != nil {
164 if err := applyBucketConds("BucketHandle.Attrs", b.conds, req); err != nil {
190 if err := applyBucketConds("BucketHandle.Update", b.conds, req); err != nil {
474 func (b *BucketHandle) If(conds BucketConditions) *BucketHandle {
476 b2.conds = &conds
518 func applyBucketConds(method string, conds *BucketConditions, call interface{}) error {
519 if conds == nil {
522 if err := conds.validate(method); err != nil {
527 case conds.MetagenerationMatch != 0:
[all …]
Dcopy.go99 if err := applyConds("Copy destination", c.dst.gen, c.dst.conds, call); err != nil {
107 if err := applySourceConds(c.src.gen, c.src.conds, call); err != nil {
177 …if err := applyConds("ComposeFrom source", src.gen, src.conds, composeSourceObj{srcObj}); err != n…
184 if err := applyConds("ComposeFrom destination", c.dst.gen, c.dst.conds, call); err != nil {
Dwriter.go122 err := applyConds("NewWriter", w.o.gen, w.o.conds, call)
/external/fonttools/Tests/varLib/
DfeatureVars_test.py8 conds = []
14 conds.append((region, subst))
15 overlaps = overlayFeatureVariations(conds)
17 return conds, overlaps
20 conds = []
25 conds.append((region, subst))
26 overlaps = overlayFeatureVariations(conds)
28 return conds, overlaps
46 conds = [
52 overlaps = overlayFeatureVariations(conds)
[all …]
/external/swiftshader/third_party/llvm-7.0/scripts/
Dupdate.py146 conds = {}
148 conds[arch] = ' || '.join('defined(' + v + ')' for v in defs)
160 print('#if ' + conds[arch], file=dst_file)
175 print(directive + conds[arch], file=dst_file)
/external/tensorflow/tensorflow/python/ops/linalg/
Dlinalg_impl.py290 conds = (4.258730016922831e-001, 1.880152677804762e+000)
291 u = _nest_where(conds, (u3, u5, u7))
292 v = _nest_where(conds, (v3, v5, v7))
308 conds = (1.495585217958292e-002,
312 u = _nest_where(conds, (u3, u5, u7, u9, u13))
313 v = _nest_where(conds, (v3, v5, v7, v9, v13))
/external/mesa3d/src/gallium/drivers/radeonsi/
Dsi_shader_tgsi_alu.c38 LLVMValueRef conds[TGSI_NUM_CHANNELS]; in kill_if_fetch_args() local
42 conds[i] = LLVMBuildFCmp(builder, LLVMRealOGE, value, in kill_if_fetch_args()
48 conds[i - 1] = LLVMBuildAnd(builder, conds[i], conds[i - 1], ""); in kill_if_fetch_args()
53 emit_data->args[0] = conds[0]; in kill_if_fetch_args()
/external/tensorflow/tensorflow/core/protobuf/
Dcontrol_flow.proto47 // Contexts contained inside this context (e.g. nested conds).
/external/libxml2/
Dgentest.py737 conds = node.xpathEval("cond")
738 for cond in conds:
/external/toybox/toys/pending/
Dbc.c447 BcVec conds; member
3017 bc_vec_npop(&p->conds, p->conds.len); in bc_parse_reset()
3026 bc_vec_free(&p->conds); in bc_parse_free()
3037 bc_vec_init(&p->conds, sizeof(size_t), NULL); in bc_parse_init()
3108 bc_vec_push(&p->conds, &idx); in bc_parse_createCondLabel()
3563 size_t *label = bc_vec_top(&p->conds); in bc_parse_endBody()
3568 bc_vec_pop(&p->conds); in bc_parse_endBody()
3790 else i = *((size_t*) bc_vec_top(&p->conds)); in bc_parse_loopExit()