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

1 2 3 4 5 6

  /external/oprofile/daemon/
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_ibs_trans.h 27 extern void trans_ibs_fetch (struct transient * trans, unsigned int selected_flag, unsigned int size);
28 extern void trans_ibs_op (struct transient * trans, unsigned int selected_flag, unsigned int size);
29 extern void trans_ibs_op_ls (struct transient * trans, unsigned int selected_flag, unsigned int size);
30 extern void trans_ibs_op_nb (struct transient * trans, unsigned int selected_flag, unsigned int size);
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_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 96 extern void code_ibs_fetch_sample(struct transient * trans);
128 extern void code_ibs_op_sample(struct transient * trans);
131 extern void opd_log_ibs_event(unsigned int event, struct transient * trans);
134 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.c 72 static void opd_log_ibs_fetch(struct transient * trans)
74 struct ibs_fetch_sample * trans_fetch = ((struct ibs_sample*)(trans->ext))->fetch;
78 trans_ibs_fetch(trans, ibs_fetch_selected_flag, ibs_fetch_selected_size);
86 static void opd_log_ibs_op(struct transient * trans)
88 struct ibs_op_sample * trans_op = ((struct ibs_sample*)(trans->ext))->op;
92 trans_ibs_op(trans, ibs_op_selected_flag, ibs_op_selected_size);
93 trans_ibs_op_ls(trans, ibs_op_ls_selected_flag, ibs_op_ls_selected_size);
94 trans_ibs_op_nb(trans, ibs_op_nb_selected_flag, ibs_op_nb_selected_size);
98 static void opd_put_ibs_sample(struct transient * trans)
102 struct ibs_fetch_sample * trans_fetch = ((struct ibs_sample*)(trans->ext))->fetch
    [all...]
opd_sfile.h 107 struct sfile * sfile_find(struct transient const * trans);
110 void sfile_log_sample(struct transient const * trans);
113 void sfile_log_sample_count(struct transient const * trans,
opd_kernel.h 39 /** Find a kernel_image based upon the given parameters in trans. */
41 find_kernel_image(struct transient const * trans);
  /external/icu4c/i18n/
ztrans.cpp 35 ztrans_close(ZTrans *trans) {
36 delete (TimeZoneTransition*)trans;
40 ztrans_clone(ZTrans *trans) {
41 return (ZTrans*) (((TimeZoneTransition*)trans)->TimeZoneTransition::clone());
50 ztrans_getTime(ZTrans* trans) {
51 return ((TimeZoneTransition*)trans)->TimeZoneTransition::getTime();
55 ztrans_setTime(ZTrans* trans, UDate time) {
56 return ((TimeZoneTransition*)trans)->TimeZoneTransition::setTime(time);
60 ztrans_getFrom(ZTrans* & trans) {
61 return (void*) (((TimeZoneTransition*)trans)->TimeZoneTransition::getFrom())
    [all...]
ztrans.h 51 * @param trans the object to dispose of
55 ztrans_close(ZTrans *trans);
64 ztrans_clone(ZTrans *trans);
79 * param trans, the transition to use
84 ztrans_getTime(ZTrans* trans);
88 * param trans, the transition to use
93 ztrans_setTime(ZTrans* trans, UDate time);
97 * param trans, the transition to use
102 ztrans_getFrom(ZTrans* & trans);
107 * param trans, the transition to us
    [all...]
cpdtrans.cpp 56 trans(0), count(0), numAnonymousRBTs(0) {
73 trans(0), numAnonymousRBTs(0) {
83 trans(0), numAnonymousRBTs(0) {
100 trans(0), numAnonymousRBTs(anonymousRBTs)
114 trans(0), numAnonymousRBTs(0)
127 trans(0), numAnonymousRBTs(anonymousRBTs)
134 * constructors. Before calling init(), set trans and filter to NULL.
152 // assert(trans == 0);
179 * constructors. Before calling init(), set trans and filter to NULL.
194 // assert(trans == 0)
    [all...]
utrans.cpp 156 Transliterator *trans = NULL;
158 trans = Transliterator::createInstance(ID, dir, *parseError, *status);
163 return (UTransliterator*) trans;
169 Transliterator *trans = NULL;
170 trans = Transliterator::createFromRules(ID, ruleStr, dir, *parseError, *status);
175 return (UTransliterator*) trans;
193 utrans_openInverse(const UTransliterator* trans,
199 (UTransliterator*) ((Transliterator*) trans)->createInverse(*status);
205 utrans_clone(const UTransliterator* trans,
210 if (trans == NULL)
    [all...]
  /external/chromium/net/http/
http_network_layer_unittest.cc 22 scoped_ptr<net::HttpTransaction> trans; local
23 int rv = factory.CreateTransaction(&trans);
25 EXPECT_TRUE(trans.get() != NULL);
33 scoped_ptr<net::HttpTransaction> trans; local
34 int rv = factory.CreateTransaction(&trans);
37 trans.reset();
41 rv = factory.CreateTransaction(&trans);
44 ASSERT_TRUE(trans == NULL);
48 rv = factory.CreateTransaction(&trans);
75 scoped_ptr<net::HttpTransaction> trans; local
    [all...]
http_transaction_factory.h 23 // transaction to |*trans| and returns OK.
24 virtual int CreateTransaction(scoped_ptr<HttpTransaction>* trans) = 0;
http_transaction_unittest.cc 111 void AddMockTransaction(const MockTransaction* trans) {
112 mock_transactions[GURL(trans->url).spec()] = trans;
115 void RemoveMockTransaction(const MockTransaction* trans) {
116 mock_transactions.erase(GURL(trans->url).spec());
143 int ReadTransaction(net::HttpTransaction* trans, std::string* result) {
151 rv = trans->Read(buf, 256, &callback);
http_network_transaction_unittest.cc 104 scoped_ptr<HttpTransaction> trans(
117 int rv = trans->Start(&request, &callback, NULL);
124 const HttpResponseInfo* response = trans->GetResponseInfo();
130 rv = ReadTransaction(trans.get(), &out.response_data);
229 scoped_ptr<HttpTransaction> trans(
358 scoped_ptr<HttpTransaction> trans(
386 int rv = trans->Start(&request, &callback1, NULL);
392 const HttpResponseInfo* response = trans->GetResponseInfo();
410 rv = ReadTransaction(trans.get(), &response_data);
434 scoped_ptr<HttpTransaction> trans(new HttpNetworkTransaction(session))
    [all...]
  /external/chromium/third_party/icu/source/i18n/
cpdtrans.cpp 56 trans(0), count(0), numAnonymousRBTs(0) {
73 trans(0), numAnonymousRBTs(0) {
83 trans(0), numAnonymousRBTs(0) {
100 trans(0), numAnonymousRBTs(anonymousRBTs)
114 trans(0), numAnonymousRBTs(0)
127 trans(0), numAnonymousRBTs(anonymousRBTs)
134 * constructors. Before calling init(), set trans and filter to NULL.
152 // assert(trans == 0);
179 * constructors. Before calling init(), set trans and filter to NULL.
194 // assert(trans == 0)
    [all...]
utrans.cpp 156 Transliterator *trans = NULL;
158 trans = Transliterator::createInstance(ID, dir, *parseError, *status);
163 return (UTransliterator*) trans;
169 Transliterator *trans = NULL;
170 trans = Transliterator::createFromRules(ID, ruleStr, dir, *parseError, *status);
175 return (UTransliterator*) trans;
193 utrans_openInverse(const UTransliterator* trans,
199 (UTransliterator*) ((Transliterator*) trans)->createInverse(*status);
205 utrans_clone(const UTransliterator* trans,
210 if (trans == NULL)
    [all...]
  /external/chromium/third_party/icu/public/i18n/unicode/
utrans.h 205 * @param trans the transliterator to open the inverse of.
208 * inverse of trans, or NULL if the open call fails.
212 utrans_openInverse(const UTransliterator* trans,
219 * @param trans the transliterator to be copied.
226 utrans_clone(const UTransliterator* trans,
232 * @param trans the transliterator to be closed.
236 utrans_close(UTransliterator* trans);
244 * @param trans the transliterator to return the ID of.
253 utrans_getUnicodeID(const UTransliterator *trans,
293 * @param trans the transliterato
    [all...]
  /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...]
  /external/srec/tools/parseStringTest/
parseStringTest.c 67 void lstr_strip_multiple_spaces(LCHAR* trans)
69 char *src=trans, *dst=trans;
104 ESR_ReturnCode Parse(SR_Grammar* grammar, LCHAR* trans, PFile* fout, Opts* opts)
123 trans = wmap->words[id];
124 Parse(grammar, trans, fout, &myopts);
132 lstrtrim(trans);
134 lstr_strip_multiple_spaces(trans);
138 rc = grammar->checkParse(grammar, trans, semanticResults, (size_t*) & result_count);
143 strcpy(copy_of_trans, trans);
276 LCHAR trans[MAX_LINE_LENGTH]; local
452 LCHAR trans[MAX_LINE_LENGTH]; local
540 LCHAR trans[MAX_LINE_LENGTH]; local
    [all...]
  /external/openssl/crypto/des/asm/
crypt586.pl 30 $trans="ebp";
41 &mov($trans,&wparam(1)); # reloaded with DES_SPtrans in D_ENCRYPT
50 &D_ENCRYPT($i,$L,$R,$i*2,$trans,"eax","ebx","ecx","edx");
54 &D_ENCRYPT($i+1,$R,$L,($i+1)*2,$trans,"eax","ebx","ecx","edx");
79 local($r,$L,$R,$S,$trans,$u,$tmp1,$tmp2,$t)=@_;
96 &mov( $tmp1, &DWP(&n2a($S*4),$trans,"",0)); # 2
98 &mov( $tmp2, &DWP(&n2a(($S+1)*4),$trans,"",0)); # 2
110 &mov( $trans, &swtmp(1));
111 &xor( $L, &DWP(" ",$trans,$tmp1,0));
113 &xor( $L, &DWP("0x200",$trans,$tmp2,0))
    [all...]
  /libcore/luni/src/main/java/java/lang/reflect/
AccessibleObject.java 78 static Hashtable<String, String> trans; field in class:AccessibleObject
81 trans = new Hashtable<String, String>(9);
82 trans.put("byte", "B");
83 trans.put("char", "C");
84 trans.put("short", "S");
85 trans.put("int", "I");
86 trans.put("long", "J");
87 trans.put("float", "F");
88 trans.put("double", "D");
89 trans.put("void", "V")
    [all...]

Completed in 1108 milliseconds

1 2 3 4 5 6