Home
last modified time | relevance | path

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

12

/external/tensorflow/tensorflow/examples/android/jni/object_tracking/
Dobject_tracker_jni.cc38 ObjectTracker* get_object_tracker(JNIEnv* env, jobject thiz) { in get_object_tracker() argument
40 reinterpret_cast<ObjectTracker*>(object_tracker_field.get(env, thiz)); in get_object_tracker()
45 void set_object_tracker(JNIEnv* env, jobject thiz, in set_object_tracker() argument
47 object_tracker_field.set(env, thiz, in set_object_tracker()
55 void JNICALL OBJECT_TRACKER_METHOD(initNative)(JNIEnv* env, jobject thiz,
61 jobject thiz);
65 JNIEnv* env, jobject thiz, jstring object_id, jfloat x1, jfloat y1,
70 JNIEnv* env, jobject thiz, jstring object_id, jfloat x1, jfloat y1,
75 JNIEnv* env, jobject thiz, jstring object_id, jfloat x1, jfloat y1,
79 jboolean JNICALL OBJECT_TRACKER_METHOD(haveObject)(JNIEnv* env, jobject thiz,
[all …]
Djni_utils.h33 int64_t get(JNIEnv* env, jobject thiz) { in get() argument
35 jclass cls = env->GetObjectClass(thiz); in get()
42 return env->GetLongField(thiz, field_ID_); in get()
45 void set(JNIEnv* env, jobject thiz, int64_t value) { in set() argument
47 jclass cls = env->GetObjectClass(thiz); in set()
54 env->SetLongField(thiz, field_ID_, value); in set()
/external/libtextclassifier/native/annotator/
Dannotator_jni.h32 (JNIEnv* env, jobject thiz, jint fd);
35 (JNIEnv* env, jobject thiz, jstring path);
38 (JNIEnv* env, jobject thiz, jint fd, jlong offset, jlong size);
42 (JNIEnv* env, jobject thiz, jlong ptr, jbyteArray serialized_config);
46 (JNIEnv* env, jobject thiz, jlong ptr, jbyteArray serialized_config);
50 (JNIEnv* env, jobject thiz, jlong ptr, jbyteArray serialized_config);
54 (JNIEnv* env, jobject thiz, jlong ptr, jint fd, jlong offset, jlong size);
57 (JNIEnv* env, jobject thiz, jlong annotator_ptr, jlong lang_id_ptr);
60 (JNIEnv* env, jobject thiz, jlong ptr);
63 (JNIEnv* env, jobject thiz, jlong ptr, jstring context, jint selection_begin,
[all …]
Dannotator_jni.cc462 (JNIEnv* env, jobject thiz, jint fd) { in TC3_JNI_METHOD()
478 (JNIEnv* env, jobject thiz, jstring path) { in TC3_JNI_METHOD()
495 (JNIEnv* env, jobject thiz, jint fd, jlong offset, jlong size) { in TC3_JNI_METHOD()
512 (JNIEnv* env, jobject thiz, jlong ptr, jbyteArray serialized_config) { in TC3_JNI_METHOD()
532 (JNIEnv* env, jobject thiz, jlong ptr, jbyteArray serialized_config) { in TC3_JNI_METHOD()
552 (JNIEnv* env, jobject thiz, jlong ptr, jbyteArray serialized_config) { in TC3_JNI_METHOD()
572 (JNIEnv* env, jobject thiz, jlong ptr, jint fd, jlong offset, jlong size) { in TC3_JNI_METHOD()
583 (JNIEnv* env, jobject thiz, jlong annotator_ptr, jlong lang_id_ptr) { in TC3_JNI_METHOD()
595 (JNIEnv* env, jobject thiz, jlong ptr) { in TC3_JNI_METHOD()
604 (JNIEnv* env, jobject thiz, jlong ptr, jstring context, jint selection_begin, in TC3_JNI_METHOD()
[all …]
/external/harfbuzz_ng/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()
Dhb-aat-layout-kerx-table.hh822 const T* thiz () const { return static_cast<const T *> (this); } in thiz() function
828 const SubTable *st = &thiz()->firstSubTable; in has_state_machine()
829 unsigned int count = thiz()->tableCount; in has_state_machine()
843 const SubTable *st = &thiz()->firstSubTable; in has_cross_stream()
844 unsigned int count = thiz()->tableCount; in has_cross_stream()
859 const SubTable *st = &thiz()->firstSubTable; in get_h_kerning()
860 unsigned int count = thiz()->tableCount; in get_h_kerning()
879 const SubTable *st = &thiz()->firstSubTable; in apply()
880 unsigned int count = thiz()->tableCount; in apply()
894 …if (!c->buffer->message (c->font, "start %c%c%c%c subtable %d", HB_UNTAG (thiz()->tableTag), c->lo… in apply()
[all …]
Dhb-ot-post-table.hh198 const accelerator_t *thiz = (const accelerator_t *) arg; in cmp_gids() local
201 return thiz->find_glyph_name (b).cmp (thiz->find_glyph_name (a)); in cmp_gids()
206 const accelerator_t *thiz = (const accelerator_t *) arg; in cmp_key() local
209 return thiz->find_glyph_name (o).cmp (*key); in cmp_key()
/external/mockito/src/main/java/org/mockito/internal/creation/bytebuddy/
DMockMethodInterceptor.java77 public static int doIdentityHashCode(@This Object thiz) { in doIdentityHashCode() argument
78 return System.identityHashCode(thiz); in doIdentityHashCode()
85 public static boolean doIdentityEquals(@This Object thiz, @Argument(0) Object other) { in doIdentityEquals() argument
86 return thiz == other; in doIdentityEquals()
92 public static Object doWriteReplace(@This MockAccess thiz) throws ObjectStreamException { in doWriteReplace() argument
93 return thiz.getMockitoInterceptor().getSerializationSupport().writeReplace(thiz); in doWriteReplace()
DMockMethodAdvice.java323 @This MockAccess thiz, in doReadObject() argument
326 … MockMethodAdvice mockMethodAdvice = (MockMethodAdvice) MockMethodDispatcher.get(identifier, thiz); in doReadObject()
328 mockMethodAdvice.interceptors.put(thiz, thiz.getMockitoInterceptor()); in doReadObject()
/external/v4l2_codec2/tests/c2_e2e_test/jni/
De2e_test_jni.cpp24 JniConfigureCallback(JNIEnv* env, jobject thiz) : env_(env), thiz_(thiz) {} in JniConfigureCallback() argument
50 JNIEnv* env, jobject thiz, jboolean encode, jobjectArray test_args, int test_args_count, in Java_org_chromium_c2_test_E2eTestActivity_c2VideoTest() argument
84 JniConfigureCallback cb(env, thiz); in Java_org_chromium_c2_test_E2eTestActivity_c2VideoTest()
102 jobject thiz, in Java_org_chromium_c2_test_E2eTestActivity_stopDecoderLoop() argument
105 UNUSED(thiz); in Java_org_chromium_c2_test_E2eTestActivity_stopDecoderLoop()
/external/libtextclassifier/native/actions/
Dactions_jni.h35 (JNIEnv* env, jobject thiz, jint fd, jbyteArray serialized_preconditions);
38 (JNIEnv* env, jobject thiz, jstring path, jbyteArray serialized_preconditions);
41 (JNIEnv* env, jobject thiz, jint fd, jlong offset, jlong size,
45 (JNIEnv* env, jobject thiz, jlong ptr, jobject jconversation, jobject joptions,
50 (JNIEnv* env, jobject thiz, jlong ptr);
/external/arm-trusted-firmware/drivers/st/fmc/
Dstm32_fmc2_nand.c131 uint8_t thiz; member
159 unsigned long timing, tar, tclr, thiz, twait; in stm32_fmc2_nand_setup_timing() local
171 tims.thiz = FMC2_THIZ; in stm32_fmc2_nand_setup_timing()
172 thiz = (tims.thiz + 1U) * hclkp; in stm32_fmc2_nand_setup_timing()
198 if ((twait > thiz) && ((twait - thiz) < NAND_TDS_MIN) && in stm32_fmc2_nand_setup_timing()
199 (tset_mem < (NAND_TDS_MIN - (twait - thiz)))) { in stm32_fmc2_nand_setup_timing()
200 tset_mem = NAND_TDS_MIN - (twait - thiz); in stm32_fmc2_nand_setup_timing()
249 if ((twait > thiz) && ((twait - thiz) < NAND_TDS_MIN) && in stm32_fmc2_nand_setup_timing()
250 (tset_att < (NAND_TDS_MIN - (twait - thiz)))) { in stm32_fmc2_nand_setup_timing()
251 tset_att = NAND_TDS_MIN - (twait - thiz); in stm32_fmc2_nand_setup_timing()
[all …]
/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
DReferenceType.java234 final ObjectType thiz = (ObjectType) this; in getFirstCommonSuperclass() local
236 final JavaClass[] thiz_sups = Repository.getSuperClasses(thiz.getClassName()); in getFirstCommonSuperclass()
246 this_sups[0] = Repository.lookupClass(thiz.getClassName()); in getFirstCommonSuperclass()
306 final ObjectType thiz = (ObjectType) this; in firstCommonSuperclass() local
308 final JavaClass[] thiz_sups = Repository.getSuperClasses(thiz.getClassName()); in firstCommonSuperclass()
318 this_sups[0] = Repository.lookupClass(thiz.getClassName()); in firstCommonSuperclass()
/external/perfetto/src/traced/probes/ps/
Dprocess_stats_data_source.cc384 ProcessStatsDataSource& thiz = *weak_this; in Tick() local
385 uint32_t period_ms = thiz.poll_period_ms_; in Tick()
387 thiz.task_runner_->PostDelayedTask( in Tick()
389 thiz.WriteAllProcessStats(); in Tick()
392 if (++thiz.cache_ticks_ == thiz.process_stats_cache_ttl_ticks_) { in Tick()
393 thiz.cache_ticks_ = 0; in Tick()
394 thiz.process_stats_cache_.clear(); in Tick()
395 thiz.thread_time_in_state_cache_.clear(); in Tick()
396 thiz.thread_time_in_state_cache_.resize( in Tick()
397 thiz.thread_time_in_state_cache_size_); in Tick()
/external/exoplayer/tree/extensions/opus/src/main/jni/
Dopus_jni.cc34 (JNIEnv* env, jobject thiz, ##__VA_ARGS__);\
38 (JNIEnv* env, jobject thiz, ##__VA_ARGS__)\
44 (JNIEnv* env, jobject thiz, ##__VA_ARGS__);\
48 (JNIEnv* env, jobject thiz, ##__VA_ARGS__)\
/external/dexmaker/dexmaker-mockito-inline/src/main/jni/dexmakerjvmtiagent/
Dagent.cc390 VReg* thiz = c.Alloc<VReg>(thisReg); in Java_com_android_dx_mockito_inline_ClassTransformer_nativeRedefine() local
393 addInstr(c, fi, OP_MOVE_OBJECT_FROM16, {v1, thiz}); in Java_com_android_dx_mockito_inline_ClassTransformer_nativeRedefine()
410 addInstr(c, fi, OP_MOVE_OBJECT_16, {c.Alloc<VReg>(thisReg - numAdditionalRegs), thiz}); in Java_com_android_dx_mockito_inline_ClassTransformer_nativeRedefine()
473 VReg* thiz = c.Alloc<VReg>(thisReg); in Java_com_android_dx_mockito_inline_ClassTransformer_nativeRedefine() local
476 addInstr(c, fi, OP_MOVE_OBJECT_FROM16, {v1, thiz}); in Java_com_android_dx_mockito_inline_ClassTransformer_nativeRedefine()
490 addInstr(c, fi, OP_MOVE_OBJECT_16, {c.Alloc<VReg>(thisReg - numAdditionalRegs), thiz}); in Java_com_android_dx_mockito_inline_ClassTransformer_nativeRedefine()
643 VReg* thiz = c.Alloc<VReg>(thisReg); in Java_com_android_dx_mockito_inline_ClassTransformer_nativeRedefine() local
646 addInstr(c, fi, OP_MOVE_OBJECT_FROM16, {v1, thiz}); in Java_com_android_dx_mockito_inline_ClassTransformer_nativeRedefine()
653 addInstr(c, fi, OP_MOVE_OBJECT_FROM16, {v2, thiz}); in Java_com_android_dx_mockito_inline_ClassTransformer_nativeRedefine()
704 addInstr(c, fi, OP_MOVE_OBJECT_FROM16, {v3, thiz}); in Java_com_android_dx_mockito_inline_ClassTransformer_nativeRedefine()
[all …]
/external/u-boot/drivers/mtd/nand/raw/
Dstm32_fmc2_nand.c139 u8 thiz; member
197 pmem |= FMC2_PMEM_MEMHIZ(timings->thiz); in stm32_fmc2_timings_init()
203 patt |= FMC2_PATT_ATTHIZ(timings->thiz); in stm32_fmc2_timings_init()
630 unsigned long timing, tar, tclr, thiz, twait; in stm32_fmc2_calc_timings() local
641 tims->thiz = FMC2_THIZ; in stm32_fmc2_calc_timings()
642 thiz = (tims->thiz + 1) * hclkp; in stm32_fmc2_calc_timings()
665 if (twait > thiz && (sdrt->tDS_min > twait - thiz) && in stm32_fmc2_calc_timings()
666 (tset_mem < sdrt->tDS_min - (twait - thiz))) in stm32_fmc2_calc_timings()
667 tset_mem = sdrt->tDS_min - (twait - thiz); in stm32_fmc2_calc_timings()
706 if (twait > thiz && (sdrt->tDS_min > twait - thiz) && in stm32_fmc2_calc_timings()
[all …]
/external/exoplayer/tree/extensions/flac/src/main/jni/
Dflac_jni.cc36 JNIEnv *env, jobject thiz, ##__VA_ARGS__); \
40 JNIEnv *env, jobject thiz, ##__VA_ARGS__)
95 context->source->setFlacDecoderJni(env, thiz); in DECODER_FUNC()
166 context->source->setFlacDecoderJni(env, thiz); in DECODER_FUNC()
174 context->source->setFlacDecoderJni(env, thiz); in DECODER_FUNC()
/external/exoplayer/tree/extensions/ffmpeg/src/main/jni/
Dffmpeg_jni.cc43 JNIEnv *env, jobject thiz, ##__VA_ARGS__); \
47 JNIEnv *env, jobject thiz, ##__VA_ARGS__)
53 JNIEnv *env, jobject thiz, ##__VA_ARGS__); \
57 JNIEnv *env, jobject thiz, ##__VA_ARGS__)
/external/perfetto/src/traced/probes/sys_stats/
Dsys_stats_data_source.cc179 SysStatsDataSource& thiz = *weak_this; in Tick() local
181 uint32_t period_ms = thiz.tick_period_ms_; in Tick()
183 thiz.task_runner_->PostDelayedTask( in Tick()
185 thiz.ReadSysStats(); in Tick()
/external/libtextclassifier/native/lang_id/
Dlang-id_jni.cc77 (JNIEnv* env, jobject thiz, jint fd) { in TC3_JNI_METHOD()
86 (JNIEnv* env, jobject thiz, jstring path) { in TC3_JNI_METHOD()
/external/walt/android/WALT/app/src/main/jni/
Dsync_clock_jni.c32 __attribute__((unused)) jobject thiz, in Java_org_chromium_latency_walt_WaltUsbConnection_syncClock__III() argument
/external/exoplayer/tree/extensions/vp9/src/main/jni/
Dvpx_jni.cc45 JNIEnv* env, jobject thiz, ##__VA_ARGS__); \
49 JNIEnv* env, jobject thiz, ##__VA_ARGS__)
55 JNIEnv* env, jobject thiz, ##__VA_ARGS__); \
59 JNIEnv* env, jobject thiz, ##__VA_ARGS__)
/external/dexmaker/dexmaker-mockito-inline-extended/src/main/jni/staticjvmtiagent/
Dagent.cc645 jobject thiz) { in Java_com_android_dx_mockito_inline_StaticJvmtiAgent_nativeRegisterTransformerHook() argument
646 sTransformer = env->NewGlobalRef(thiz); in Java_com_android_dx_mockito_inline_StaticJvmtiAgent_nativeRegisterTransformerHook()
652 jobject thiz) { in Java_com_android_dx_mockito_inline_StaticJvmtiAgent_nativeUnregisterTransformerHook() argument
660 jobject thiz, in Java_com_android_dx_mockito_inline_StaticJvmtiAgent_nativeRetransformClasses() argument

12