Home
last modified time | relevance | path

Searched refs:curr_type (Results 1 – 4 of 4) sorted by relevance

/external/tensorflow/tensorflow/core/platform/
Dctstring_internal.h232 TF_TString_Type curr_type = TF_TString_GetType(str); in TF_TString_ResizeUninitialized() local
240 if (curr_type != TF_TSTR_SMALL && copy_size) { in TF_TString_ResizeUninitialized()
244 if (curr_type == TF_TSTR_LARGE) { in TF_TString_ResizeUninitialized()
273 } else if (curr_type == TF_TSTR_LARGE) { in TF_TString_ResizeUninitialized()
309 TF_TString_Type curr_type = TF_TString_GetType(str); in TF_TString_Reserve() local
320 if (curr_type == TF_TSTR_LARGE && new_cap <= str->u.large.cap) { in TF_TString_Reserve()
333 if (curr_type == TF_TSTR_LARGE) { in TF_TString_Reserve()
/external/libbrillo/brillo/dbus/
Ddata_serialization_fuzzer.cc116 DataType curr_type = data_provider.ConsumeEnum<DataType>(); in LLVMFuzzerTestOneInput() local
118 switch (curr_type) { in LLVMFuzzerTestOneInput()
233 DataType curr_type = data_provider.ConsumeEnum<DataType>(); in LLVMFuzzerTestOneInput() local
235 switch (curr_type) { in LLVMFuzzerTestOneInput()
/external/pcre/dist2/src/sljit/
DsljitLir.c1029 sljit_s32 types, arg_count, curr_type; in check_sljit_emit_enter() local
1048 curr_type = (types & SLJIT_DEF_MASK); in check_sljit_emit_enter()
1049 CHECK_ARGUMENT(curr_type == SLJIT_ARG_TYPE_SW || curr_type == SLJIT_ARG_TYPE_UW); in check_sljit_emit_enter()
1081 sljit_s32 types, arg_count, curr_type; in check_sljit_set_context() local
1099 curr_type = (types & SLJIT_DEF_MASK); in check_sljit_set_context()
1100 CHECK_ARGUMENT(curr_type == SLJIT_ARG_TYPE_SW || curr_type == SLJIT_ARG_TYPE_UW); in check_sljit_set_context()
1621 sljit_s32 i, types, curr_type, scratches, fscratches; in check_sljit_emit_call() local
1630 curr_type = (types & SLJIT_DEF_MASK); in check_sljit_emit_call()
1631 CHECK_ARGUMENT(curr_type <= SLJIT_ARG_TYPE_F64); in check_sljit_emit_call()
1633 if (curr_type == 0) { in check_sljit_emit_call()
[all …]
/external/python/oauth2client/oauth2client/
Dclient.py257 curr_type = self.__class__
269 to_serialize['_class'] = curr_type.__name__
270 to_serialize['_module'] = curr_type.__module__