Home
last modified time | relevance | path

Searched refs:bvals (Results 1 – 3 of 3) sorted by relevance

/external/curl/lib/
Dopenldap.c475 struct berval bv, *bvals; in ldap_recv() local
535 for(rc = ldap_get_attribute_ber(li->ld, ent, ber, &bv, &bvals); in ldap_recv()
537 rc = ldap_get_attribute_ber(li->ld, ent, ber, &bv, &bvals)) { in ldap_recv()
548 if(bvals == NULL) { in ldap_recv()
569 for(i = 0; bvals[i].bv_val != NULL; i++) { in ldap_recv()
593 if(ISSPACE(bvals[i].bv_val[0]) || in ldap_recv()
594 ISSPACE(bvals[i].bv_val[bvals[i].bv_len-1])) in ldap_recv()
599 for(j = 0; j<bvals[i].bv_len; j++) in ldap_recv()
600 if(!ISPRINT(bvals[i].bv_val[j])) { in ldap_recv()
611 bvals[i].bv_val, in ldap_recv()
[all …]
/external/tensorflow/tensorflow/compiler/xla/tests/
Dtriangular_solve_test.cc419 Array3D<float> bvals(7, 5, 5); in XLA_TEST_F() local
420 bvals.FillIota(1.); in XLA_TEST_F()
423 Array3D<float> avals = bvals; in XLA_TEST_F()
432 auto b_data = CreateR3Parameter<float>(bvals, 1, "b", &builder, &b); in XLA_TEST_F()
440 ComputeAndCompareR3<float>(&builder, bvals, {a_data.get(), b_data.get()}, in XLA_TEST_F()
475 Array<float> bvals(b_dims); in XLA_TEST_P() local
476 bvals.FillRandom(1.0); in XLA_TEST_P()
480 auto b_data = CreateParameter<float>(bvals, 1, "b", &builder, &b); in XLA_TEST_P()
492 ComputeAndCompare<float>(&builder, bvals, {a_data.get(), b_data.get()}, in XLA_TEST_P()
/external/tensorflow/tensorflow/python/kernel_tests/
Dfunctional_ops_test.py965 bvals = [Poly(b), Grad(b)]
967 self.assertAllEqual(self.evaluate(bvals), [17., 16.])