Home
last modified time | relevance | path

Searched refs:result_array (Results 1 – 15 of 15) sorted by relevance

/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/_securetransport/
Dlow_level.py256 result_array = None
265 result_array = CoreFoundation.CFArrayRef()
274 ctypes.byref(result_array), # Results
282 result_count = CoreFoundation.CFArrayGetCount(result_array)
284 item = CoreFoundation.CFArrayGetValueAtIndex(result_array, index)
294 if result_array:
295 CoreFoundation.CFRelease(result_array)
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/_securetransport/
Dlow_level.py256 result_array = None
265 result_array = CoreFoundation.CFArrayRef()
274 ctypes.byref(result_array), # Results
282 result_count = CoreFoundation.CFArrayGetCount(result_array)
284 item = CoreFoundation.CFArrayGetValueAtIndex(result_array, index)
294 if result_array:
295 CoreFoundation.CFRelease(result_array)
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/_securetransport/
Dlow_level.py256 result_array = None
265 result_array = CoreFoundation.CFArrayRef()
274 ctypes.byref(result_array), # Results
282 result_count = CoreFoundation.CFArrayGetCount(result_array)
284 item = CoreFoundation.CFArrayGetValueAtIndex(result_array, index)
294 if result_array:
295 CoreFoundation.CFRelease(result_array)
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/_securetransport/
Dlow_level.py256 result_array = None
265 result_array = CoreFoundation.CFArrayRef()
274 ctypes.byref(result_array), # Results
282 result_count = CoreFoundation.CFArrayGetCount(result_array)
284 item = CoreFoundation.CFArrayGetValueAtIndex(result_array, index)
294 if result_array:
295 CoreFoundation.CFRelease(result_array)
/aosp_15_r20/external/protobuf/src/google/protobuf/stubs/
H A Dcommon.cc306 uint8_t result_array[4]; in ghtonl() member
308 result_array[0] = static_cast<uint8_t>(x >> 24); in ghtonl()
309 result_array[1] = static_cast<uint8_t>((x >> 16) & 0xFF); in ghtonl()
310 result_array[2] = static_cast<uint8_t>((x >> 8) & 0xFF); in ghtonl()
311 result_array[3] = static_cast<uint8_t>(x & 0xFF); in ghtonl()
/aosp_15_r20/external/cronet/third_party/protobuf/src/google/protobuf/stubs/
H A Dcommon.cc304 uint8_t result_array[4]; in ghtonl() member
306 result_array[0] = static_cast<uint8_t>(x >> 24); in ghtonl()
307 result_array[1] = static_cast<uint8_t>((x >> 16) & 0xFF); in ghtonl()
308 result_array[2] = static_cast<uint8_t>((x >> 8) & 0xFF); in ghtonl()
309 result_array[3] = static_cast<uint8_t>(x & 0xFF); in ghtonl()
/aosp_15_r20/external/python/bumble/bumble/
Ddecoder.py171 result_array = bytearray(len(encoded_data) * 4)
172 self.g722_decode(result_array, encoded_data)
173 return result_array
175 def g722_decode(self, result_array, encoded_data: Union[bytes, bytearray]) -> int: argument
195 xout1, result_length, result_array
198 xout2, result_length, result_array
/aosp_15_r20/art/runtime/native/
H A Djava_lang_reflect_Method.cc67 ObjPtr<mirror::ObjectArray<mirror::Class>> result_array = in Method_getExceptionTypes() local
69 if (result_array == nullptr) { in Method_getExceptionTypes()
77 return soa.AddLocalReference<jobjectArray>(result_array); in Method_getExceptionTypes()
H A Djava_lang_reflect_Constructor.cc43 ObjPtr<mirror::ObjectArray<mirror::Class>> result_array = in Constructor_getExceptionTypes() local
45 if (result_array == nullptr) { in Constructor_getExceptionTypes()
53 return soa.AddLocalReference<jobjectArray>(result_array); in Constructor_getExceptionTypes()
/aosp_15_r20/external/tensorflow/tensorflow/compiler/mlir/tfrt/jit/python_binding/
H A Dtf_jitrt_executor.cc251 py::array& result_array = result->get<py::array>(); in Execute() local
252 TF_ANNOTATE_MEMORY_IS_INITIALIZED(result_array.data(), in Execute()
253 result_array.nbytes()); in Execute()
254 ret_values.emplace_back(result_array); in Execute()
/aosp_15_r20/external/grpc-grpc/src/php/tests/generated_code/
H A Dmath_client.php57 $result_array = iterator_to_array($call->responses()); variable
59 foreach ($result_array as $num) {
H A DAbstractGeneratedCodeTest.php257 $result_array = iterator_to_array($call->responses());
304 $result_array = iterator_to_array($call->responses());
308 $values = array_map($extract_num, $result_array);
/aosp_15_r20/external/pdfium/core/fpdfapi/render/
H A Dcpdf_rendershading.cpp71 std::vector<float> result_array(results_count); in GetShadingSteps() local
75 pdfium::span<float> result_span = pdfium::make_span(result_array); in GetShadingSteps()
87 pCS->GetRGB(result_array, &R, &G, &B); in GetShadingSteps()
288 std::vector<float> result_array(total_results); in DrawFuncShading() local
299 pdfium::span<float> result_span = pdfium::make_span(result_array); in DrawFuncShading()
310 pCS->GetRGB(result_array, &R, &G, &B); in DrawFuncShading()
/aosp_15_r20/external/tensorflow/tensorflow/compiler/mlir/xla/transforms/
H A Doutline_with_xla_framework.cc91 SmallVector<Type> result_array(func.getFunctionType().getNumResults(), in matchAndRewrite() local
93 auto func_type = FunctionType::get(ctx, operands, result_array); in matchAndRewrite()
/aosp_15_r20/external/tensorflow/tensorflow/compiler/xla/service/
H A Dhlo_evaluator_typed_visitor.h1209 std::unique_ptr<Array2D<NativeT>> result_array =
1212 result.PopulateR2FromArray2D(*result_array);