Home
last modified time | relevance | path

Searched refs:zero_index (Results 1 – 5 of 5) sorted by relevance

/external/tensorflow/tensorflow/compiler/tf2xla/lib/
Dscatter.cc121 auto zero_index = body_builder->ConstantLiteral( in XlaScatter() local
128 indices_offset = body_builder->Pad(indices_offset, zero_index, in XlaScatter()
140 body_builder->ReduceAll(body_builder->Le(zero_index, index), in XlaScatter()
145 index = body_builder->Max(index, zero_index); in XlaScatter()
147 index, zero_index, in XlaScatter()
153 updates_offset, zero_index, in XlaScatter()
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
Dmatrix_band_part_op.cc72 auto zero_index = XlaHelpers::Zero(builder, index_type); in Compile() local
74 builder->Lt(num_lower, zero_index), in Compile()
77 builder->Lt(num_upper, zero_index), in Compile()
Dgather_op.cc118 auto zero_index = XlaHelpers::Zero(bodyb, index_type); in XlaGather() local
125 indices_offset = bodyb->Pad(indices_offset, zero_index, in XlaGather()
135 index, zero_index, in XlaGather()
144 loop_out_shape.dims(), bodyb->Reshape(zero_index, {1})); in XlaGather()
/external/autotest/server/site_tests/firmware_Cr50BID/
Dfirmware_Cr50BID.py184 zero_index = mask_str.find('0')
191 if zero_index != -1:
192 test_bid = bid_int ^ (1 << zero_index)
218 zero_index = flag_str_pad_rev.find('0')
227 if zero_index != -1:
228 test_flags = self.test_flags | (1 << zero_index)
/external/boringssl/src/crypto/fipsmodule/rsa/
Dpadding.c210 crypto_word_t zero_index = 0, looking_for_index = CONSTTIME_TRUE_W; in RSA_padding_check_PKCS1_type_2() local
213 zero_index = in RSA_padding_check_PKCS1_type_2()
214 constant_time_select_w(looking_for_index & equals0, i, zero_index); in RSA_padding_check_PKCS1_type_2()
226 valid_index &= constant_time_ge_w(zero_index, 2 + 8); in RSA_padding_check_PKCS1_type_2()
229 zero_index++; in RSA_padding_check_PKCS1_type_2()
241 const size_t msg_len = from_len - zero_index; in RSA_padding_check_PKCS1_type_2()
249 OPENSSL_memcpy(out, &from[zero_index], msg_len); in RSA_padding_check_PKCS1_type_2()