Home
last modified time | relevance | path

Searched refs:thiz (Results 1 – 25 of 51) sorted by relevance

123

/third_party/gstreamer/gstplugins_bad/sys/opensles/
Dopenslesringbuffer.c114 GstOpenSLESRingBuffer *thiz = GST_OPENSLES_RING_BUFFER_CAST (rb); in _opensles_recorder_acquire() local
142 result = (*thiz->engineEngine)->CreateAudioRecorder (thiz->engineEngine, in _opensles_recorder_acquire()
143 &thiz->recorderObject, &audioSrc, &audioSink, 2, ids, req); in _opensles_recorder_acquire()
145 GST_ERROR_OBJECT (thiz, "engine.CreateAudioRecorder failed(0x%08x)", in _opensles_recorder_acquire()
151 if (thiz->preset != GST_OPENSLES_RECORDING_PRESET_NONE) { in _opensles_recorder_acquire()
152 SLint32 preset = gst_to_opensles_recording_preset (thiz->preset); in _opensles_recorder_acquire()
154 result = (*thiz->recorderObject)->GetInterface (thiz->recorderObject, in _opensles_recorder_acquire()
162 GST_WARNING_OBJECT (thiz, "Failed to set playback stream type (0x%08x)", in _opensles_recorder_acquire()
166 GST_WARNING_OBJECT (thiz, in _opensles_recorder_acquire()
173 (*thiz->recorderObject)->Realize (thiz->recorderObject, SL_BOOLEAN_FALSE); in _opensles_recorder_acquire()
[all …]
/third_party/gstreamer/gstplugins_bad/sys/msdk/
Dgstmsdkenc.c75 static void gst_msdkenc_close_encoder (GstMsdkEnc * thiz);
123 gst_msdkenc_add_extra_param (GstMsdkEnc * thiz, mfxExtBuffer * param) in gst_msdkenc_add_extra_param() argument
125 if (thiz->num_extra_params < MAX_EXTRA_PARAMS) { in gst_msdkenc_add_extra_param()
126 thiz->extra_params[thiz->num_extra_params] = param; in gst_msdkenc_add_extra_param()
127 thiz->num_extra_params++; in gst_msdkenc_add_extra_param()
135 GstMsdkEnc *thiz = GST_MSDKENC (element); in gst_msdkenc_set_context() local
138 gst_object_replace ((GstObject **) & thiz->context, in gst_msdkenc_set_context()
147 ensure_bitrate_control (GstMsdkEnc * thiz) in ensure_bitrate_control() argument
149 mfxInfoMFX *mfx = &thiz->param.mfx; in ensure_bitrate_control()
150 mfxExtCodingOption2 *option2 = &thiz->option2; in ensure_bitrate_control()
[all …]
Dgstmsdkvpp.c213 release_msdk_surface (GstMsdkVPP * thiz, MsdkSurface * surface, GList ** list) in release_msdk_surface() argument
225 release_in_surface (GstMsdkVPP * thiz, MsdkSurface * surface, in release_in_surface() argument
233 release_msdk_surface (thiz, surface, &thiz->locked_in_surfaces); in release_in_surface()
238 release_out_surface (GstMsdkVPP * thiz, MsdkSurface * surface) in release_out_surface() argument
240 release_msdk_surface (thiz, surface, &thiz->locked_out_surfaces); in release_out_surface()
244 free_unlocked_msdk_surfaces_from_list (GstMsdkVPP * thiz, GList ** list) in free_unlocked_msdk_surfaces_from_list() argument
261 free_unlocked_msdk_surfaces (GstMsdkVPP * thiz) in free_unlocked_msdk_surfaces() argument
263 free_unlocked_msdk_surfaces_from_list (thiz, &thiz->locked_in_surfaces); in free_unlocked_msdk_surfaces()
264 free_unlocked_msdk_surfaces_from_list (thiz, &thiz->locked_out_surfaces); in free_unlocked_msdk_surfaces()
268 free_all_msdk_surfaces (GstMsdkVPP * thiz) in free_all_msdk_surfaces() argument
[all …]
Dgstmsdkdec.c84 static gboolean gst_msdkdec_negotiate (GstMsdkDec * thiz, gboolean hard_reset);
87 gst_msdkdec_add_bs_extra_param (GstMsdkDec * thiz, mfxExtBuffer * param) in gst_msdkdec_add_bs_extra_param() argument
89 if (thiz->num_bs_extra_params < MAX_BS_EXTRA_PARAMS) { in gst_msdkdec_add_bs_extra_param()
90 thiz->bs_extra_params[thiz->num_bs_extra_params] = param; in gst_msdkdec_add_bs_extra_param()
91 thiz->num_bs_extra_params++; in gst_msdkdec_add_bs_extra_param()
147 unmap_frame (GstMsdkDec * thiz, MsdkSurface * s) in unmap_frame() argument
163 gst_msdkdec_free_unlocked_msdk_surfaces (GstMsdkDec * thiz) in gst_msdkdec_free_unlocked_msdk_surfaces() argument
168 for (l = thiz->locked_msdk_surfaces; l;) { in gst_msdkdec_free_unlocked_msdk_surfaces()
172 unmap_frame (thiz, surface); in gst_msdkdec_free_unlocked_msdk_surfaces()
174 thiz->locked_msdk_surfaces = in gst_msdkdec_free_unlocked_msdk_surfaces()
[all …]
Dgstmsdkh264enc.c134 gst_msdkh264enc_insert_sei (GstMsdkH264Enc * thiz, GstVideoCodecFrame * frame, in gst_msdkh264enc_insert_sei() argument
139 if (!thiz->parser) in gst_msdkh264enc_insert_sei()
140 thiz->parser = gst_h264_nal_parser_new (); in gst_msdkh264enc_insert_sei()
142 new_buffer = gst_h264_parser_insert_sei (thiz->parser, in gst_msdkh264enc_insert_sei()
146 GST_WARNING_OBJECT (thiz, "Cannot insert SEI nal into AU buffer"); in gst_msdkh264enc_insert_sei()
155 gst_msdkh264enc_add_cc (GstMsdkH264Enc * thiz, GstVideoCodecFrame * frame) in gst_msdkh264enc_add_cc() argument
162 if (thiz->cc_sei_array) in gst_msdkh264enc_add_cc()
163 g_array_set_size (thiz->cc_sei_array, 0); in gst_msdkh264enc_add_cc()
204 if (!thiz->cc_sei_array) { in gst_msdkh264enc_add_cc()
205 thiz->cc_sei_array = in gst_msdkh264enc_add_cc()
[all …]
Dgstmsdkh265enc.c153 gst_msdkh265enc_insert_sei (GstMsdkH265Enc * thiz, GstVideoCodecFrame * frame, in gst_msdkh265enc_insert_sei() argument
158 if (!thiz->parser) in gst_msdkh265enc_insert_sei()
159 thiz->parser = gst_h265_parser_new (); in gst_msdkh265enc_insert_sei()
161 new_buffer = gst_h265_parser_insert_sei (thiz->parser, in gst_msdkh265enc_insert_sei()
165 GST_WARNING_OBJECT (thiz, "Cannot insert SEI nal into AU buffer"); in gst_msdkh265enc_insert_sei()
174 gst_msdkh265enc_add_cc (GstMsdkH265Enc * thiz, GstVideoCodecFrame * frame) in gst_msdkh265enc_add_cc() argument
181 if (thiz->cc_sei_array) in gst_msdkh265enc_add_cc()
182 g_array_set_size (thiz->cc_sei_array, 0); in gst_msdkh265enc_add_cc()
223 if (!thiz->cc_sei_array) { in gst_msdkh265enc_add_cc()
224 thiz->cc_sei_array = in gst_msdkh265enc_add_cc()
[all …]
Dgstmsdkmpeg2dec.c88 GstMsdkMPEG2Dec *thiz = GST_MSDKMPEG2DEC (object); in gst_msdkdec_mpeg2_set_property() local
91 GST_OBJECT_LOCK (thiz); in gst_msdkdec_mpeg2_set_property()
92 state = GST_STATE (thiz); in gst_msdkdec_mpeg2_set_property()
95 GST_WARNING_OBJECT (thiz, "setting property in wrong state"); in gst_msdkdec_mpeg2_set_property()
96 GST_OBJECT_UNLOCK (thiz); in gst_msdkdec_mpeg2_set_property()
101 thiz->output_order = g_value_get_enum (value); in gst_msdkdec_mpeg2_set_property()
107 GST_OBJECT_UNLOCK (thiz); in gst_msdkdec_mpeg2_set_property()
115 GstMsdkMPEG2Dec *thiz = GST_MSDKMPEG2DEC (object); in gst_msdkdec_mpeg2_get_property() local
117 GST_OBJECT_LOCK (thiz); in gst_msdkdec_mpeg2_get_property()
120 g_value_set_enum (value, thiz->output_order); in gst_msdkdec_mpeg2_get_property()
[all …]
Dgstmsdkvpputil.c55 fixate_output_frame_size (GstMsdkVPP * thiz, GstVideoInfo * vinfo, in fixate_output_frame_size() argument
83 if ((thiz->crop_left + thiz->crop_right >= from_w - 1) in fixate_output_frame_size()
84 || (thiz->crop_top + thiz->crop_bottom >= from_h - 1)) { in fixate_output_frame_size()
85 GST_WARNING_OBJECT (thiz, "ignoring crop... cropping too much!"); in fixate_output_frame_size()
87 from_w -= thiz->crop_left + thiz->crop_right; in fixate_output_frame_size()
88 from_h -= thiz->crop_top + thiz->crop_bottom; in fixate_output_frame_size()
92 if (thiz->rotation == 90 || thiz->rotation == 270) { in fixate_output_frame_size()
105 GST_DEBUG_OBJECT (thiz, in fixate_output_frame_size()
111 GST_DEBUG_OBJECT (thiz, "fixating to_par to %dx%d", n, d); in fixate_output_frame_size()
129 GST_DEBUG_OBJECT (thiz, "Input DAR is %d/%d", from_dar_n, from_dar_d); in fixate_output_frame_size()
[all …]
Dgstmsdkh264dec.c98 GstMsdkH264Dec *thiz = GST_MSDKH264DEC (object); in gst_msdkdec_h264_set_property() local
104 GST_OBJECT_LOCK (thiz); in gst_msdkdec_h264_set_property()
105 state = GST_STATE (thiz); in gst_msdkdec_h264_set_property()
108 GST_WARNING_OBJECT (thiz, "setting property in wrong state"); in gst_msdkdec_h264_set_property()
109 GST_OBJECT_UNLOCK (thiz); in gst_msdkdec_h264_set_property()
114 thiz->output_order = g_value_get_enum (value); in gst_msdkdec_h264_set_property()
125 GST_OBJECT_UNLOCK (thiz); in gst_msdkdec_h264_set_property()
133 GstMsdkH264Dec *thiz = GST_MSDKH264DEC (object); in gst_msdkdec_h264_get_property() local
138 GST_OBJECT_LOCK (thiz); in gst_msdkdec_h264_get_property()
141 g_value_set_enum (value, thiz->output_order); in gst_msdkdec_h264_get_property()
[all …]
Dgstmsdkh265dec.c120 GstMsdkH265Dec *thiz = GST_MSDKH265DEC (object); in gst_msdkdec_h265_set_property() local
126 GST_OBJECT_LOCK (thiz); in gst_msdkdec_h265_set_property()
127 state = GST_STATE (thiz); in gst_msdkdec_h265_set_property()
130 GST_WARNING_OBJECT (thiz, "setting property in wrong state"); in gst_msdkdec_h265_set_property()
131 GST_OBJECT_UNLOCK (thiz); in gst_msdkdec_h265_set_property()
136 thiz->output_order = g_value_get_enum (value); in gst_msdkdec_h265_set_property()
147 GST_OBJECT_UNLOCK (thiz); in gst_msdkdec_h265_set_property()
155 GstMsdkH265Dec *thiz = GST_MSDKH265DEC (object); in gst_msdkdec_h265_get_property() local
160 GST_OBJECT_LOCK (thiz); in gst_msdkdec_h265_get_property()
163 g_value_set_enum (value, thiz->output_order); in gst_msdkdec_h265_get_property()
[all …]
Dgstmsdkvp9dec.c111 GstMsdkVP9Dec *thiz = GST_MSDKVP9DEC (object); in gst_msdkdec_vp9_set_property() local
114 GST_OBJECT_LOCK (thiz); in gst_msdkdec_vp9_set_property()
115 state = GST_STATE (thiz); in gst_msdkdec_vp9_set_property()
118 GST_WARNING_OBJECT (thiz, "setting property in wrong state"); in gst_msdkdec_vp9_set_property()
119 GST_OBJECT_UNLOCK (thiz); in gst_msdkdec_vp9_set_property()
124 thiz->output_order = g_value_get_enum (value); in gst_msdkdec_vp9_set_property()
130 GST_OBJECT_UNLOCK (thiz); in gst_msdkdec_vp9_set_property()
138 GstMsdkVP9Dec *thiz = GST_MSDKVP9DEC (object); in gst_msdkdec_vp9_get_property() local
140 GST_OBJECT_LOCK (thiz); in gst_msdkdec_vp9_get_property()
143 g_value_set_enum (value, thiz->output_order); in gst_msdkdec_vp9_get_property()
[all …]
Dgstmsdkvc1dec.c133 GstMsdkVC1Dec *thiz = GST_MSDKVC1DEC (object); in gst_msdkdec_vc1_set_property() local
136 GST_OBJECT_LOCK (thiz); in gst_msdkdec_vc1_set_property()
137 state = GST_STATE (thiz); in gst_msdkdec_vc1_set_property()
140 GST_WARNING_OBJECT (thiz, "setting property in wrong state"); in gst_msdkdec_vc1_set_property()
141 GST_OBJECT_UNLOCK (thiz); in gst_msdkdec_vc1_set_property()
146 thiz->output_order = g_value_get_enum (value); in gst_msdkdec_vc1_set_property()
152 GST_OBJECT_UNLOCK (thiz); in gst_msdkdec_vc1_set_property()
160 GstMsdkVC1Dec *thiz = GST_MSDKVC1DEC (object); in gst_msdkdec_vc1_get_property() local
162 GST_OBJECT_LOCK (thiz); in gst_msdkdec_vc1_get_property()
165 g_value_set_enum (value, thiz->output_order); in gst_msdkdec_vc1_get_property()
[all …]
Dgstmsdkmpeg2enc.c73 GstMsdkMPEG2Enc *thiz = GST_MSDKMPEG2ENC (encoder); in gst_msdkmpeg2enc_set_format() local
77 thiz->profile = 0; in gst_msdkmpeg2enc_set_format()
84 GST_INFO_OBJECT (thiz, in gst_msdkmpeg2enc_set_format()
103 thiz->profile = MFX_PROFILE_MPEG2_HIGH; in gst_msdkmpeg2enc_set_format()
105 thiz->profile = MFX_PROFILE_MPEG2_MAIN; in gst_msdkmpeg2enc_set_format()
107 thiz->profile = MFX_PROFILE_MPEG2_SIMPLE; in gst_msdkmpeg2enc_set_format()
124 GstMsdkMPEG2Enc *thiz = GST_MSDKMPEG2ENC (encoder); in gst_msdkmpeg2enc_configure() local
127 encoder->param.mfx.CodecProfile = thiz->profile; in gst_msdkmpeg2enc_configure()
174 GstMsdkMPEG2Enc *thiz = GST_MSDKMPEG2ENC (object); in gst_msdkmpeg2enc_set_property() local
177 GST_WARNING_OBJECT (thiz, "Failed to set common encode property"); in gst_msdkmpeg2enc_set_property()
[all …]
Dgstmsdkvp8dec.c101 GstMsdkVP8Dec *thiz = GST_MSDKVP8DEC (object); in gst_msdkdec_vp8_set_property() local
104 GST_OBJECT_LOCK (thiz); in gst_msdkdec_vp8_set_property()
105 state = GST_STATE (thiz); in gst_msdkdec_vp8_set_property()
108 GST_WARNING_OBJECT (thiz, "setting property in wrong state"); in gst_msdkdec_vp8_set_property()
109 GST_OBJECT_UNLOCK (thiz); in gst_msdkdec_vp8_set_property()
114 thiz->output_order = g_value_get_enum (value); in gst_msdkdec_vp8_set_property()
120 GST_OBJECT_UNLOCK (thiz); in gst_msdkdec_vp8_set_property()
128 GstMsdkVP8Dec *thiz = GST_MSDKVP8DEC (object); in gst_msdkdec_vp8_get_property() local
130 GST_OBJECT_LOCK (thiz); in gst_msdkdec_vp8_get_property()
133 g_value_set_enum (value, thiz->output_order); in gst_msdkdec_vp8_get_property()
[all …]
Dgstmsdkmjpegenc.c118 GstMsdkMJPEGEnc *thiz = GST_MSDKMJPEGENC (object); in gst_msdkmjpegenc_get_property() local
120 GST_OBJECT_LOCK (thiz); in gst_msdkmjpegenc_get_property()
123 g_value_set_uint (value, thiz->quality); in gst_msdkmjpegenc_get_property()
129 GST_OBJECT_UNLOCK (thiz); in gst_msdkmjpegenc_get_property()
136 GstMsdkMJPEGEnc *thiz = GST_MSDKMJPEGENC (object); in gst_msdkmjpegenc_set_property() local
138 GST_OBJECT_LOCK (thiz); in gst_msdkmjpegenc_set_property()
141 thiz->quality = g_value_get_uint (value); in gst_msdkmjpegenc_set_property()
147 GST_OBJECT_UNLOCK (thiz); in gst_msdkmjpegenc_set_property()
203 gst_msdkmjpegenc_init (GstMsdkMJPEGEnc * thiz) in gst_msdkmjpegenc_init() argument
205 thiz->quality = DEFAULT_QUALITY; in gst_msdkmjpegenc_init()
Dgstmsdkvp9enc.c91 GstMsdkVP9Enc *thiz = GST_MSDKVP9ENC (encoder); in gst_msdkvp9enc_set_format() local
95 thiz->profile = MFX_PROFILE_VP9_0; in gst_msdkvp9enc_set_format()
101 GST_INFO_OBJECT (thiz, in gst_msdkvp9enc_set_format()
120 thiz->profile = MFX_PROFILE_VP9_3; in gst_msdkvp9enc_set_format()
122 thiz->profile = MFX_PROFILE_VP9_2; in gst_msdkvp9enc_set_format()
124 thiz->profile = MFX_PROFILE_VP9_1; in gst_msdkvp9enc_set_format()
126 thiz->profile = MFX_PROFILE_VP9_0; in gst_msdkvp9enc_set_format()
242 GstMsdkVP9Enc *thiz = GST_MSDKVP9ENC (object); in gst_msdkvp9enc_set_property() local
245 GST_WARNING_OBJECT (thiz, "Failed to set common encode property"); in gst_msdkvp9enc_set_property()
252 GstMsdkVP9Enc *thiz = GST_MSDKVP9ENC (object); in gst_msdkvp9enc_get_property() local
[all …]
/third_party/flutter/skia/third_party/externals/harfbuzz/src/
Dhb-iter.hh74 const iter_t* thiz () const { return static_cast<const iter_t *> (this); } in thiz() function
75 iter_t* thiz () { return static_cast< iter_t *> (this); } in thiz() function
83 iter_t iter () const { return *thiz(); } in iter()
84 iter_t operator + () const { return *thiz(); } in operator +()
85 iter_t begin () const { return *thiz(); } in begin()
86 iter_t end () const { return thiz()->__end__ (); } in end()
87 explicit operator bool () const { return thiz()->__more__ (); } in operator bool()
88 unsigned len () const { return thiz()->__len__ (); } in len()
94 hb_remove_reference<item_t>* operator -> () const { return hb_addressof (**thiz()); } in operator ->()
95 item_t operator * () const { return thiz()->__item__ (); } in operator *()
[all …]
Dhb-dispatch.hh43 const Context* thiz () const { return static_cast<const Context *> (this); } in thiz() function
44 Context* thiz () { return static_cast< Context *> (this); } in thiz() function
52 { return obj.dispatch (thiz (), hb_forward<Ts> (ds)...); } in dispatch()
/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-iter.hh74 const iter_t* thiz () const { return static_cast<const iter_t *> (this); } in thiz() function
75 iter_t* thiz () { return static_cast< iter_t *> (this); } in thiz() function
83 iter_t iter () const { return *thiz(); } in iter()
84 iter_t operator + () const { return *thiz(); } in operator +()
85 iter_t begin () const { return *thiz(); } in begin()
86 iter_t end () const { return thiz()->__end__ (); } in end()
87 explicit operator bool () const { return thiz()->__more__ (); } in operator bool()
88 unsigned len () const { return thiz()->__len__ (); } in len()
94 hb_remove_reference<item_t>* operator -> () const { return hb_addressof (**thiz()); } in operator ->()
95 item_t operator * () const { return thiz()->__item__ (); } in operator *()
[all …]
/third_party/harfbuzz/src/
Dhb-iter.hh74 const iter_t* thiz () const { return static_cast<const iter_t *> (this); } in thiz() function
75 iter_t* thiz () { return static_cast< iter_t *> (this); } in thiz() function
83 iter_t iter () const { return *thiz(); } in iter()
84 iter_t operator + () const { return *thiz(); } in operator +()
85 iter_t begin () const { return *thiz(); } in begin()
86 iter_t end () const { return thiz()->__end__ (); } in end()
87 explicit operator bool () const { return thiz()->__more__ (); } in operator bool()
88 unsigned len () const { return thiz()->__len__ (); } in len()
94 hb_remove_reference<item_t>* operator -> () const { return hb_addressof (**thiz()); } in operator ->()
95 item_t operator * () const { return thiz()->__item__ (); } in operator *()
[all …]
/third_party/skia/third_party/externals/spirv-cross/include/spirv_cross/
Dexternal_interface.h32 void (*destruct)(spirv_cross_shader_t *thiz);
33 void (*invoke)(spirv_cross_shader_t *thiz);
36 void spirv_cross_set_stage_input(spirv_cross_shader_t *thiz, unsigned location, void *data, size_t …
38 void spirv_cross_set_stage_output(spirv_cross_shader_t *thiz, unsigned location, void *data, size_t…
40 void spirv_cross_set_push_constant(spirv_cross_shader_t *thiz, void *data, size_t size);
42 void spirv_cross_set_uniform_constant(spirv_cross_shader_t *thiz, unsigned location, void *data, si…
44 void spirv_cross_set_resource(spirv_cross_shader_t *thiz, unsigned set, unsigned binding, void **da…
56 void spirv_cross_set_builtin(spirv_cross_shader_t *thiz, spirv_cross_builtin builtin, void *data, s…
/third_party/skia/third_party/externals/harfbuzz/util/
Dmain-font-text.hh78 main_font_text_t *thiz = (main_font_text_t *) data; in collect_rest() local
80 if (!thiz->font_file) in collect_rest()
82 thiz->font_file = g_strdup (arg); in collect_rest()
86 if (!thiz->text && !thiz->text_file) in collect_rest()
88 thiz->text = g_strdup (arg); in collect_rest()
/third_party/mindspore/mindspore/lite/java/native/runtime/
Dlite_session.cpp22 …jlong JNICALL Java_com_mindspore_lite_LiteSession_createSessionWithModel(JNIEnv *env, jobject thiz, in Java_com_mindspore_lite_LiteSession_createSessionWithModel() argument
48 …NIEXPORT jlong JNICALL Java_com_mindspore_lite_LiteSession_createSession(JNIEnv *env, jobject thiz, in Java_com_mindspore_lite_LiteSession_createSession() argument
64 …EXPORT jboolean JNICALL Java_com_mindspore_lite_LiteSession_compileGraph(JNIEnv *env, jobject thiz, in Java_com_mindspore_lite_LiteSession_compileGraph() argument
84 …C" JNIEXPORT void JNICALL Java_com_mindspore_lite_LiteSession_bindThread(JNIEnv *env, jobject thiz, in Java_com_mindspore_lite_LiteSession_bindThread() argument
95 … JNIEXPORT jboolean JNICALL Java_com_mindspore_lite_LiteSession_runGraph(JNIEnv *env, jobject thiz, in Java_com_mindspore_lite_LiteSession_runGraph() argument
107 … JNIEXPORT jobject JNICALL Java_com_mindspore_lite_LiteSession_getInputs(JNIEnv *env, jobject thiz, in Java_com_mindspore_lite_LiteSession_getInputs() argument
130 … jlong JNICALL Java_com_mindspore_lite_LiteSession_getInputsByTensorName(JNIEnv *env, jobject thiz, in Java_com_mindspore_lite_LiteSession_getInputsByTensorName() argument
143 …jobject JNICALL Java_com_mindspore_lite_LiteSession_getOutputsByNodeName(JNIEnv *env, jobject thiz, in Java_com_mindspore_lite_LiteSession_getOutputsByNodeName() argument
168 …jobject JNICALL Java_com_mindspore_lite_LiteSession_getOutputMapByTensor(JNIEnv *env, jobject thiz, in Java_com_mindspore_lite_LiteSession_getOutputMapByTensor() argument
194 …jobject JNICALL Java_com_mindspore_lite_LiteSession_getOutputTensorNames(JNIEnv *env, jobject thiz, in Java_com_mindspore_lite_LiteSession_getOutputTensorNames() argument
[all …]
Dms_tensor.cpp23 …C" JNIEXPORT jintArray JNICALL Java_com_mindspore_lite_MSTensor_getShape(JNIEnv *env, jobject thiz, in Java_com_mindspore_lite_MSTensor_getShape() argument
43 … "C" JNIEXPORT jint JNICALL Java_com_mindspore_lite_MSTensor_getDataType(JNIEnv *env, jobject thiz, in Java_com_mindspore_lite_MSTensor_getDataType() argument
54 …NIEXPORT jbyteArray JNICALL Java_com_mindspore_lite_MSTensor_getByteData(JNIEnv *env, jobject thiz, in Java_com_mindspore_lite_MSTensor_getByteData() argument
78 …NIEXPORT jlongArray JNICALL Java_com_mindspore_lite_MSTensor_getLongData(JNIEnv *env, jobject thiz, in Java_com_mindspore_lite_MSTensor_getLongData() argument
108 … JNIEXPORT jintArray JNICALL Java_com_mindspore_lite_MSTensor_getIntData(JNIEnv *env, jobject thiz, in Java_com_mindspore_lite_MSTensor_getIntData() argument
138 …EXPORT jfloatArray JNICALL Java_com_mindspore_lite_MSTensor_getFloatData(JNIEnv *env, jobject thiz, in Java_com_mindspore_lite_MSTensor_getFloatData() argument
168 … "C" JNIEXPORT jboolean JNICALL Java_com_mindspore_lite_MSTensor_setData(JNIEnv *env, jobject thiz, in Java_com_mindspore_lite_MSTensor_setData() argument
193 …PORT jboolean JNICALL Java_com_mindspore_lite_MSTensor_setByteBufferData(JNIEnv *env, jobject thiz, in Java_com_mindspore_lite_MSTensor_setByteBufferData() argument
223 extern "C" JNIEXPORT jlong JNICALL Java_com_mindspore_lite_MSTensor_size(JNIEnv *env, jobject thiz,… in Java_com_mindspore_lite_MSTensor_size() argument
233 … "C" JNIEXPORT jint JNICALL Java_com_mindspore_lite_MSTensor_elementsNum(JNIEnv *env, jobject thiz, in Java_com_mindspore_lite_MSTensor_elementsNum() argument
[all …]
/third_party/skia/third_party/externals/oboe/samples/drumthumper/src/main/cpp/
DDrumPlayerJNI.cpp57 JNIEnv *env, jobject thiz) { in Java_com_plausiblesoftware_drumthumper_DrumPlayer_startAudioStreamNative() argument
143 JNIEnv *env, jobject thiz, jint index, jfloat pan) { in Java_com_plausiblesoftware_drumthumper_DrumPlayer_setPan() argument
148 JNIEnv *env, jobject thiz, jint index) { in Java_com_plausiblesoftware_drumthumper_DrumPlayer_getPan() argument
153 JNIEnv *env, jobject thiz, jint index, jfloat gain) { in Java_com_plausiblesoftware_drumthumper_DrumPlayer_setGain() argument
158 JNIEnv *env, jobject thiz, jint index) { in Java_com_plausiblesoftware_drumthumper_DrumPlayer_getGain() argument

123