HomeSort by relevance Sort by last modified time
    Searched refs:trans (Results 1 - 25 of 314) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/oprofile/daemon/
opd_ibs_trans.h 27 extern void trans_ibs_fetch (struct transient * trans, unsigned int selected_flag);
28 extern void trans_ibs_op (struct transient * trans, unsigned int selected_flag);
29 extern void trans_ibs_op_ls (struct transient * trans, unsigned int selected_flag);
30 extern void trans_ibs_op_nb (struct transient * trans, unsigned int selected_flag);
31 extern int trans_ibs_op_rip_invalid (struct transient * trans);
32 extern void trans_ibs_op_mask_reserved (unsigned int family, struct transient * trans);
33 extern void trans_ibs_op_ls_memaccess(struct transient * trans);
34 extern void trans_ibs_op_bta (struct transient * trans);
opd_trans.c 37 void clear_trans_last(struct transient * trans)
39 trans->last = NULL;
40 trans->last_anon = NULL;
44 void clear_trans_current(struct transient * trans)
46 trans->current = NULL;
47 trans->anon = NULL;
51 uint64_t pop_buffer_value(struct transient * trans)
55 if (!trans->remaining) {
61 uint32_t const * lbuf = (void const *)trans->buffer;
64 uint64_t const * lbuf = (void const *)trans->buffer
292 struct transient trans = { local
    [all...]
opd_spu.c 33 static void process_spu_samples(struct transient * trans);
42 * trans.buffer is empty.
44 void code_spu_profiling(struct transient * trans)
47 unsigned long long num_spus = pop_buffer_value(trans);
52 process_spu_samples(trans);
55 void code_spu_ctx_switch(struct transient * trans)
57 clear_trans_current(trans);
59 if (!enough_remaining(trans, 6)) {
60 trans->remaining = 0;
67 trans->cpu = pop_buffer_value(trans)
    [all...]
opd_trans.h 63 uint64_t pop_buffer_value(struct transient * trans);
64 int enough_remaining(struct transient * trans, size_t size);
65 static inline void update_trans_last(struct transient * trans)
67 trans->last = trans->current;
68 trans->last_anon = trans->anon;
69 trans->last_pc = trans->pc;
81 void clear_trans_last(struct transient * trans);
    [all...]
opd_ibs.c 84 static void opd_log_ibs_fetch(struct transient * trans)
86 struct ibs_fetch_sample * trans_fetch = ((struct ibs_sample*)(trans->ext))->fetch;
90 trans_ibs_fetch(trans, ibs_fetch_selected_flag);
98 static void opd_log_ibs_op(struct transient * trans)
100 struct ibs_op_sample * trans_op = ((struct ibs_sample*)(trans->ext))->op;
104 trans_ibs_op_mask_reserved(ibs_family, trans);
106 if (trans_ibs_op_rip_invalid(trans) != 0)
109 trans_ibs_op(trans, ibs_op_selected_flag);
110 trans_ibs_op_ls(trans, ibs_op_ls_selected_flag);
111 trans_ibs_op_nb(trans, ibs_op_nb_selected_flag)
    [all...]
opd_anon.c 47 static void do_lru(struct transient * trans)
56 if (trans->anon == entry)
57 clear_trans_current(trans);
58 if (trans->last_anon == entry)
59 clear_trans_last(trans);
77 static void clear_anon_maps(struct transient * trans)
79 unsigned long hash = hash_anon(trans->tgid, trans->app_cookie);
80 pid_t tgid = trans->tgid;
81 cookie_t app = trans->app_cookie
    [all...]
opd_ibs.h 92 extern void code_ibs_fetch_sample(struct transient * trans);
124 extern void code_ibs_op_sample(struct transient * trans);
127 extern void opd_log_ibs_event(unsigned int event, struct transient * trans);
130 extern void opd_log_ibs_count(unsigned int event, struct transient * trans, unsigned int count);
opd_sfile.c 42 sfile_hash(struct transient const * trans, struct kernel_image * ki)
47 val ^= trans->tid << 2;
48 val ^= trans->tgid << 2;
51 if (separate_kernel || ((trans->anon || separate_lib) && !ki))
52 val ^= trans->app_cookie >> (DCOOKIE_SHIFT + 3);
55 val ^= trans->cpu;
58 if (trans->in_kernel) {
64 if (trans->cookie != NO_COOKIE) {
65 val ^= trans->cookie >> DCOOKIE_SHIFT;
70 val ^= trans->tgid << 2
    [all...]
opd_ibs_trans.c 29 void trans_ibs_fetch (struct transient * trans, unsigned int selected_flag)
31 struct ibs_fetch_sample * trans_fetch = ((struct ibs_sample*)(trans->ext))->fetch;
127 void trans_ibs_op (struct transient * trans, unsigned int selected_flag)
129 struct ibs_op_sample * trans_op = ((struct ibs_sample*)(trans->ext))->op;
209 void trans_ibs_op_ls (struct transient * trans, unsigned int selected_flag)
211 struct ibs_op_sample * trans_op = ((struct ibs_sample*)(trans->ext))->op;
414 void trans_ibs_op_nb (struct transient * trans, unsigned int selected_flag)
416 struct ibs_op_sample * trans_op = ((struct ibs_sample*)(trans->ext))->op;
513 int trans_ibs_op_rip_invalid (struct transient * trans)
515 struct ibs_op_sample * trans_op = ((struct ibs_sample*)(trans->ext))->op
    [all...]
  /external/icu4c/i18n/
ztrans.cpp 37 ztrans_close(ZTrans *trans) {
38 delete (TimeZoneTransition*)trans;
42 ztrans_clone(ZTrans *trans) {
43 return (ZTrans*) (((TimeZoneTransition*)trans)->TimeZoneTransition::clone());
52 ztrans_getTime(ZTrans* trans) {
53 return ((TimeZoneTransition*)trans)->TimeZoneTransition::getTime();
57 ztrans_setTime(ZTrans* trans, UDate time) {
58 return ((TimeZoneTransition*)trans)->TimeZoneTransition::setTime(time);
62 ztrans_getFrom(ZTrans* & trans) {
63 return (void*) (((TimeZoneTransition*)trans)->TimeZoneTransition::getFrom())
    [all...]
ztrans.h 50 * @param trans the object to dispose of
53 ztrans_close(ZTrans *trans);
61 ztrans_clone(ZTrans *trans);
75 * param trans, the transition to use
79 ztrans_getTime(ZTrans* trans);
83 * param trans, the transition to use
87 ztrans_setTime(ZTrans* trans, UDate time);
91 * param trans, the transition to use
95 ztrans_getFrom(ZTrans* & trans);
100 * param trans, the transition to us
    [all...]
cpdtrans.cpp 54 trans(0), count(0), numAnonymousRBTs(0) {
71 trans(0), numAnonymousRBTs(0) {
81 trans(0), numAnonymousRBTs(0) {
98 trans(0), numAnonymousRBTs(anonymousRBTs)
112 trans(0), numAnonymousRBTs(0)
125 trans(0), numAnonymousRBTs(anonymousRBTs)
132 * constructors. Before calling init(), set trans and filter to NULL.
150 // assert(trans == 0);
177 * constructors. Before calling init(), set trans and filter to NULL.
192 // assert(trans == 0)
    [all...]
  /external/chromium/chrome/browser/sync/syncable/
directory_change_listener.h 27 BaseTransaction* trans) = 0;
31 BaseTransaction* trans) = 0;
33 BaseTransaction* trans) = 0;
nigori_util.h 27 ModelTypeSet GetEncryptedDataTypes(BaseTransaction* const trans);
44 BaseTransaction* const trans,
50 WriteTransaction* const trans,
56 bool VerifyDataTypeEncryption(BaseTransaction* const trans,
  /external/clang/test/CodeGen/
2009-05-22-callingconv.c 7 int len, char * trans,
11 re_string_construct (pstr, str, len, trans, icase, dfa)
15 char * trans;
  /external/valgrind/main/VEX/unused/
dispatch.c 19 return transtab[i].trans;
30 char* trans; member in struct:__anon16587
39 /* Call here to add a translation to the trans cache.
44 void add_translation ( char* orig, int orig_size, char* trans, int trans_size )
52 transtab[n_transtab_used].trans = malloc(trans_size);
53 assert(transtab[n_transtab_used].trans != NULL);
55 transtab[n_transtab_used].trans[i] = trans[i];
58 arm_notify_new_code(transtab[n_transtab_used].trans, trans_size);
  /external/chromium/net/http/
http_network_layer_unittest.cc 47 scoped_ptr<HttpTransaction> trans; local
48 int rv = factory_->CreateTransaction(&trans);
50 EXPECT_TRUE(trans.get() != NULL);
54 scoped_ptr<HttpTransaction> trans; local
55 int rv = factory_->CreateTransaction(&trans);
58 trans.reset();
62 rv = factory_->CreateTransaction(&trans);
65 ASSERT_TRUE(trans == NULL);
69 rv = factory_->CreateTransaction(&trans);
98 scoped_ptr<HttpTransaction> trans; local
    [all...]
http_transaction_factory.h 24 // transaction to |*trans| and returns OK.
25 virtual int CreateTransaction(scoped_ptr<HttpTransaction>* trans) = 0;
  /external/chromium/chrome/browser/sync/engine/
build_and_process_conflict_sets_command.h 45 syncable::WriteTransaction* trans, ConflictResolver* resolver,
49 syncable::WriteTransaction* trans,
55 void BuildConflictSets(syncable::BaseTransaction* trans,
58 void MergeSetsForNameClash(syncable::BaseTransaction* trans,
61 void MergeSetsForIntroducedLoops(syncable::BaseTransaction* trans,
64 void MergeSetsForNonEmptyDirectories(syncable::BaseTransaction* trans,
67 void MergeSetsForPositionUpdate(syncable::BaseTransaction* trans,
build_and_process_conflict_sets_command.cc 46 syncable::WriteTransaction trans(dir, syncable::SYNCER, __FILE__, __LINE__);
47 BuildConflictSets(&trans,
49 had_single_direction_sets = ProcessSingleDirectionConflictSets(&trans,
51 session->context()->directory_manager()->GetCryptographer(&trans),
61 syncable::WriteTransaction* trans, ConflictResolver* resolver,
74 syncable::Entry entry(trans, syncable::GET_BY_ID, *i);
84 ApplyUpdatesTransactionally(trans, conflict_set, resolver,
105 bool RollbackEntry(syncable::WriteTransaction* trans,
107 syncable::MutableEntry entry(trans, syncable::GET_BY_HANDLE,
136 void PlaceEntriesAtRoot(syncable::WriteTransaction* trans,
    [all...]
conflict_resolver.cc 51 void ConflictResolver::OverwriteServerChanges(WriteTransaction* trans,
64 ConflictResolver::ProcessSimpleConflict(WriteTransaction* trans,
66 MutableEntry entry(trans, syncable::GET_BY_ID, id);
117 OverwriteServerChanges(trans, &entry);
124 trans->directory()->GetChildHandles(trans,
141 OverwriteServerChanges(trans, &entry);
148 SyncerUtil::SplitServerInformationIntoNewEntry(trans, &entry);
150 MutableEntry server_update(trans, syncable::GET_BY_ID, id);
175 bool AttemptToFixCircularConflict(WriteTransaction* trans,
    [all...]
  /external/chromium/chrome/browser/sync/glue/
theme_model_associator.cc 38 sync_api::WriteTransaction trans(sync_service_->GetUserShare());
39 sync_api::ReadNode root(&trans);
46 sync_api::WriteNode node(&trans);
61 sync_api::WriteNode node(&trans);
84 sync_api::ReadTransaction trans(sync_service_->GetUserShare());
85 sync_api::ReadNode root(&trans);
98 sync_api::ReadTransaction trans(sync_service_->GetUserShare());
102 sync_service_->IsCryptographerReady(&trans);
  /external/icu4c/i18n/unicode/
utrans.h 206 * @param trans the transliterator to open the inverse of.
209 * inverse of trans, or NULL if the open call fails.
213 utrans_openInverse(const UTransliterator* trans,
220 * @param trans the transliterator to be copied.
227 utrans_clone(const UTransliterator* trans,
233 * @param trans the transliterator to be closed.
237 utrans_close(UTransliterator* trans);
264 * @param trans the transliterator to return the ID of.
273 utrans_getUnicodeID(const UTransliterator *trans,
313 * @param trans the transliterato
    [all...]
  /libcore/luni/src/main/java/java/lang/reflect/
AccessibleObject.java 61 static Hashtable<String, String> trans; field in class:AccessibleObject
64 trans = new Hashtable<String, String>(9);
65 trans.put("byte", "B");
66 trans.put("char", "C");
67 trans.put("short", "S");
68 trans.put("int", "I");
69 trans.put("long", "J");
70 trans.put("float", "F");
71 trans.put("double", "D");
72 trans.put("void", "V")
    [all...]
  /external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/util/
CollisionShapeFactory.java 67 Transform trans = new Transform(); local
68 trans.setScale(currentSpatial.getLocalScale());
69 shapeTransform.combineWithParent(trans);
89 Transform trans = getTransform(spatial, realRootNode); local
90 shape.addChildShape(new HeightfieldCollisionShape(terrain.getHeightMap(), trans.getScale()),
91 trans.getTranslation(),
92 trans.getRotation().toRotationMatrix());
101 Transform trans = getTransform(spatial, realRootNode); local
103 trans.getTranslation(),
104 trans.getRotation().toRotationMatrix())
116 Transform trans = getTransform(spatial, realRootNode); local
122 Transform trans = getTransform(spatial, realRootNode); local
212 Transform trans = getTransform(geom, parent); local
240 Transform trans = getTransform(geom, parent); local
    [all...]

Completed in 406 milliseconds

1 2 3 4 5 6 7 8 91011>>