HomeSort by relevance Sort by last modified time
    Searched refs:ct (Results 176 - 200 of 418) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/third_party/yasm/source/patched-yasm/
out_test.sh 93 ct=`expr $failedct + $passedct`
94 per=`expr 100 \* $passedct / $ct`
96 echo " +$passedct-$failedct/$ct $per%"
  /external/skia/src/images/
SkImageRef_ashmem.cpp 72 virtual bool allocPixelRef(SkBitmap* bm, SkColorTable* ct) {
118 bm->setPixels(addr, ct);
162 void* SkImageRef_ashmem::onLockPixels(SkColorTable** ct) {
189 if (ct) {
190 *ct = NULL;
198 return this->INHERITED::onLockPixels(ct);
SkImageRef.cpp 145 void* SkImageRef::onLockPixels(SkColorTable** ct) {
150 if (ct) {
151 *ct = fBitmap.getColorTable();
  /external/srtp/crypto/cipher/
cipher.c 74 * cipher_type_self_test(ct) tests a cipher of type ct against test cases
84 cipher_type_self_test(const cipher_type_t *ct) {
85 const cipher_test_case_t *test_case = ct->test_data;
94 ct->description);
110 status = cipher_type_alloc(ct, &c, test_case->key_length_octets);
263 test_case = ct->test_data;
264 status = cipher_type_alloc(ct, &c, test_case->key_length_octets);
  /frameworks/base/graphics/java/android/renderscript/
Element.java 78 for (int ct = 0; ct < fieldCount; ct ++) {
79 if (mElementNames[ct].charAt(0) != '#') {
86 for (int ct = 0, ctNoPadding = 0; ct < fieldCount; ct ++) {
87 if (mElementNames[ct].charAt(0) != '#') {
88 mVisibleElementMap[ctNoPadding ++] = ct;
199 for (int ct=0; ct < mElements.length; ct++)
    [all...]
AllocationAdapter.java 109 for (int ct=0; ct < lod; ct++) {
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
Element.java 82 for (int ct = 0; ct < fieldCount; ct ++) {
83 if (mElementNames[ct].charAt(0) != '#') {
90 for (int ct = 0, ctNoPadding = 0; ct < fieldCount; ct ++) {
91 if (mElementNames[ct].charAt(0) != '#') {
92 mVisibleElementMap[ctNoPadding ++] = ct;
201 for (int ct=0; ct < mElements.length; ct++)
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ThreadTest.java 121 Thread st, ct, spinner; field in class:ThreadTest
128 ct = new Thread(new SimpleThread(10));
129 ct.start();
486 ct = new ChildThread1(Thread.currentThread(), "Interrupt Test1",
489 ct.start();
499 ct = new ChildThread1(Thread.currentThread(), "Interrupt Test2",
502 ct.start();
861 ct = new Thread(t, "Interrupt Test4");
862 ct.start();
865 assertTrue("Thread is not running1", ct.isAlive())
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
encodemv.c 187 static void calc_prob(vp8_prob *p, const unsigned int ct[2])
189 const unsigned int tot = ct[0] + ct[1];
193 const vp8_prob x = ((ct[0] * 255) / tot) & -2;
200 const unsigned int ct[2],
207 const int cur_b = vp8_cost_branch(ct, *cur_p);
208 const int new_b = vp8_cost_branch(ct, new_p);
302 vp8_prob p [mvnum_short - 1]; /* actually only need branch ct */
  /external/srtp/crypto/test/
cipher_driver.c 60 cipher_driver_self_test(cipher_type_t *ct);
64 * cipher_driver_test_buffering(ct) tests the cipher's output
77 cipher_driver_test_array_throughput(cipher_type_t *ct,
239 cipher_driver_self_test(cipher_type_t *ct) {
242 printf("running cipher self-test for %s...", ct->description);
243 status = cipher_type_self_test(ct);
254 * cipher_driver_test_buffering(ct) tests the cipher's output
474 cipher_driver_test_array_throughput(cipher_type_t *ct,
479 status = cipher_array_alloc_init(&ca, num_cipher, ct, klen);
  /external/qemu/tcg/ppc/
tcg-target.c 228 static int target_parse_constraint(TCGArgConstraint *ct, const char **pct_str)
235 ct->ct |= TCG_CT_REG;
236 tcg_regset_set_reg(ct->u.regs, 3 + ct_str[0] - 'A');
239 ct->ct |= TCG_CT_REG;
240 tcg_regset_set32(ct->u.regs, 0, 0xffffffff);
244 ct->ct |= TCG_CT_REG;
245 tcg_regset_set32(ct->u.regs, 0, 0xffffffff)
292 int ct; local
    [all...]
  /external/dropbear/libtomcrypt/src/ciphers/aes/
aes.c 284 @param ct The output ciphertext (16 bytes)
289 static int _rijndael_ecb_encrypt(const unsigned char *pt, unsigned char *ct, symmetric_key *skey)
291 int ECB_ENC(const unsigned char *pt, unsigned char *ct, symmetric_key *skey)
298 LTC_ARGCHK(ct != NULL);
423 STORE32H(s0, ct);
430 STORE32H(s1, ct+4);
437 STORE32H(s2, ct+8);
444 STORE32H(s3, ct+12);
450 int ECB_ENC(const unsigned char *pt, unsigned char *ct, symmetric_key *skey)
452 int err = _rijndael_ecb_encrypt(pt, ct, skey)
    [all...]
  /external/dropbear/libtomcrypt/src/ciphers/twofish/
twofish.c 468 @param ct The output ciphertext (16 bytes)
473 static int _twofish_ecb_encrypt(const unsigned char *pt, unsigned char *ct, symmetric_key *skey)
475 int twofish_ecb_encrypt(const unsigned char *pt, unsigned char *ct, symmetric_key *skey)
485 LTC_ARGCHK(ct != NULL);
523 STORE32L(ta,&ct[0]); STORE32L(tb,&ct[4]);
524 STORE32L(tc,&ct[8]); STORE32L(td,&ct[12]);
530 int twofish_ecb_encrypt(const unsigned char *pt, unsigned char *ct, symmetric_key *skey)
532 int err = _twofish_ecb_encrypt(pt, ct, skey)
    [all...]
  /external/wpa_supplicant_8/src/crypto/
aes-internal-dec.c 75 static void rijndaelDecrypt(const u32 rk[/*44*/], int Nr, const u8 ct[16],
87 s0 = GETU32(ct ) ^ rk[0];
88 s1 = GETU32(ct + 4) ^ rk[1];
89 s2 = GETU32(ct + 8) ^ rk[2];
90 s3 = GETU32(ct + 12) ^ rk[3];
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
cProfile.py 104 ct = entry.totaltime # cumtime column of pstats
107 self.stats[func] = cc, nc, tt, ct, callers
120 ct = subentry.totaltime
126 ct += prev[3]
127 callers[func] = nc, cc, tt, ct
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
cProfile.py 104 ct = entry.totaltime # cumtime column of pstats
107 self.stats[func] = cc, nc, tt, ct, callers
120 ct = subentry.totaltime
126 ct += prev[3]
127 callers[func] = nc, cc, tt, ct
  /external/chromium_org/third_party/skia/src/images/
SkImageRef.cpp 137 void* SkImageRef::onLockPixels(SkColorTable** ct) {
142 if (ct) {
143 *ct = fBitmap.getColorTable();
  /external/chromium_org/ui/gfx/ozone/dri/
dri_skbitmap.cc 41 virtual void* onLockPixels(SkColorTable** ct) OVERRIDE;
86 void* DriSkPixelRef::onLockPixels(SkColorTable** ct) {
87 *ct = color_table_;
  /external/javassist/src/main/javassist/scopedpool/
ScopedClassPool.java 284 * @param ct
291 public Class toClass(CtClass ct, ClassLoader loader, ProtectionDomain domain)
305 lockInCache(ct);
306 return super.toClass(ct, getClassLoader0(), domain);
  /external/nist-sip/java/gov/nist/javax/sip/
EventScanner.java 349 SIPClientTransaction ct = (SIPClientTransaction) eventWrapper.transaction; local
350 if (ct != null
351 && TransactionState.COMPLETED == ct.getState()
352 && ct.getOriginalRequest() != null
353 && !ct.getOriginalRequest().getMethod().equals(
359 ct.clearState();
SipProviderImpl.java 319 SIPClientTransaction ct = (SIPClientTransaction) sipStack local
321 if (ct != null) {
323 (SIPRequest) request, ct.getMessageChannel());
327 if (ct.getDialog() != null) {
328 ((SIPClientTransaction) retval).setDialog((SIPDialog) ct
397 SIPClientTransaction ct = (SIPClientTransaction) sipStack local
400 if (ct == null)
402 ct.setNextHop(hop);
403 ct.setOriginalRequest(sipRequest);
404 ct.setBranch(branchId)
477 SIPClientTransaction ct = sipStack.findSubscribeTransaction( local
    [all...]
  /external/e2fsprogs/lib/ss/
mk_cmds.sh.in 42 ROOT=`echo $1 | sed -e s/.ct$//`
44 TMP="ct$$.c"
  /external/qemu/tcg/hppa/
tcg-target.c 185 static int target_parse_constraint(TCGArgConstraint *ct, const char **pct_str)
192 ct->ct |= TCG_CT_REG;
193 tcg_regset_set32(ct->u.regs, 0, 0xffffffff);
196 ct->ct |= TCG_CT_REG;
197 tcg_regset_set32(ct->u.regs, 0, 0xffffffff);
198 tcg_regset_reset_reg(ct->u.regs, TCG_REG_R26);
199 tcg_regset_reset_reg(ct->u.regs, TCG_REG_R25);
200 tcg_regset_reset_reg(ct->u.regs, TCG_REG_R24)
233 int ct = arg_ct->ct; local
    [all...]
  /external/srec/srec/EventLog/src/
EventLogImpl.c 161 struct tm *ct, ct_r; local
239 ct = localtime_r(&timestamp.secs, &ct_r);
241 ct->tm_year + 1900, ct->tm_mon + 1, ct->tm_mday, ct->tm_hour,
242 ct->tm_min, ct->tm_sec);
455 struct tm *ct, ct_r; local
470 ct = &ct_r
    [all...]
  /external/qemu/tcg/arm/
tcg-target.c 155 static int target_parse_constraint(TCGArgConstraint *ct, const char **pct_str)
162 ct->ct |= TCG_CT_CONST_ARM;
166 ct->ct |= TCG_CT_REG;
167 tcg_regset_set32(ct->u.regs, 0, (1 << TCG_TARGET_NB_REGS) - 1);
172 ct->ct |= TCG_CT_REG;
173 tcg_regset_set32(ct->u.regs, 0, (1 << TCG_TARGET_NB_REGS) - 1);
177 tcg_regset_reset_reg(ct->u.regs, TCG_REG_R0)
270 int ct; local
    [all...]

Completed in 611 milliseconds

1 2 3 4 5 6 78 91011>>