HomeSort by relevance Sort by last modified time
    Searched defs:rn (Results 1 - 16 of 16) sorted by null

  /external/openssl/crypto/lhash/
lhash.c 182 LHASH_NODE *nn,**rn; local
189 rn=getrn(lh,data,&hash);
191 if (*rn == NULL)
203 *rn=nn;
210 ret= (*rn)->data;
211 (*rn)->data=data;
220 LHASH_NODE *nn,**rn; local
224 rn=getrn(lh,data,&hash);
226 if (*rn == NULL)
233 nn= *rn;
251 LHASH_NODE **rn; local
    [all...]
  /external/ipsec-tools/src/racoon/
eaytest.c 990 vchar_t *rn; local
994 rn = eay_set_random((u_int32_t)96);
995 PVDUMP(rn);
996 vfree(rn);
  /external/srec/srec_jni/
android_speech_srec_Recognizer.cpp 192 const char* rn = env->GetStringUTFChars(ruleName, 0); local
193 checkEsrError(env, SR_RecognizerSetupRule((SR_Recognizer*)recognizer, (SR_Grammar*)grammar, rn));
194 env->ReleaseStringUTFChars(ruleName, rn);
206 const char* rn = env->GetStringUTFChars(ruleName, 0); local
207 checkEsrError(env, SR_RecognizerActivateRule((SR_Recognizer*)recognizer, (SR_Grammar*)grammar, rn, weight));
208 env->ReleaseStringUTFChars(ruleName, rn);
213 const char* rn = env->GetStringUTFChars(ruleName, 0); local
214 checkEsrError(env, SR_RecognizerDeactivateRule((SR_Recognizer*)recognizer, (SR_Grammar*)grammar, rn));
215 env->ReleaseStringUTFChars(ruleName, rn);
226 const char* rn = env->GetStringUTFChars(ruleName, 0) local
    [all...]
  /sdk/emulator/qtools/
armdis.cpp 150 uint8_t rn = (insn >> 16) & 0xf; local
170 // The "mov" instruction ignores the first operand (rn).
173 sprintf(rn_str, "r%d, ", rn);
250 uint8_t rn = insn & 0xf; local
251 sprintf(ptr, "bx%s\tr%d", cond_to_str(cond), rn);
280 uint8_t rn = (insn >> 16) & 0xf; local
319 opname, cond_to_str(cond), addr_mode, rn, bang, tmp_list, carret);
332 uint8_t rn = (insn >> 16) & 0xf; local
356 opname, cond_to_str(cond), byte, rd, rn);
359 opname, cond_to_str(cond), byte, rd, rn, minus, offset, bang)
429 uint8_t rn = (insn >> 16) & 0xf; local
498 uint8_t rn = (insn >> 12) & 0xf; local
588 uint8_t rn = (insn >> 16) & 0xf; local
621 uint8_t rn = (insn >> 16) & 0xf; local
    [all...]
  /cts/tools/dasm/src/dasm/
DAsm.java 713 int rn = regs.length; local
714 if (rn == 0 || rn > 5)
717 int reg_num[] = new int[rn];
719 reg_spec_list = new RegisterSpecList(rn);
721 for (int i = 0; i < rn; i++) {
    [all...]
  /external/bluetooth/bluez/lib/
hci.c 1109 evt_remote_name_req_complete *rn; local
1181 rn = (void *) ptr;
1184 if (bacmp(&rn->bdaddr, &cp->bdaddr))
1333 evt_remote_name_req_complete rn; local
1348 rq.rparam = &rn;
1354 if (rn.status) {
1359 rn.name[247] = '\0';
1360 strncpy(name, (char *) rn.name, len);
    [all...]
  /external/bluetooth/glib/tests/
testglib.c 673 const gchar *un, *rn, *hn; local
687 rn = g_get_real_name();
693 g_print ("real: %s\n", rn);
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
tree-flow.h 280 int rn; local
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
tree-flow.h 280 int rn; local
    [all...]
  /dalvik/vm/compiler/codegen/arm/
Assemble.c 2348 int rn = (insn >> 16) & 0xF; local
2516 int rn = (insn >> 3) & 0x7; local
    [all...]
  /external/qemu/
arm-dis.c 1744 int rn = (given >> 16) & 0xf; local
2073 const char *rn = arm_regnames [(given >> 16) & 0xf]; local
2286 int rn = ((given >> 16) & 0xf); local
2316 int rn = ((given >> 16) & 0xf); local
2391 int rn = ((given >> 16) & 0xf); local
    [all...]
  /external/v8/src/arm/
simulator-arm.cc 1102 int rn = instr->RnField(); local
1255 int rn = instr->RnField(); local
1320 int rn = instr->RnField(); local
1440 int rn = instr->RnField(); local
1681 int rn = instr->RnField(); local
1746 int rn = instr->RnField(); local
1859 int rn = instr->RnField(); local
2068 int rn = instr->RnField(); local
2087 int rn = instr->RnField(); local
    [all...]
  /external/webkit/JavaScriptCore/assembler/
ARMAssembler.h 230 void emitInst(ARMWord op, int rd, int rn, ARMWord op2)
233 m_buffer.putInt(op | RN(rn) | RD(rd) | op2);
236 void and_r(int rd, int rn, ARMWord op2, Condition cc = AL)
238 emitInst(static_cast<ARMWord>(cc) | AND, rd, rn, op2);
241 void ands_r(int rd, int rn, ARMWord op2, Condition cc = AL)
243 emitInst(static_cast<ARMWord>(cc) | AND | SET_CC, rd, rn, op2); local
246 void eor_r(int rd, int rn, ARMWord op2, Condition cc = AL)
248 emitInst(static_cast<ARMWord>(cc) | EOR, rd, rn, op2);
251 void eors_r(int rd, int rn, ARMWord op2, Condition cc = AL
253 emitInst(static_cast<ARMWord>(cc) | EOR | SET_CC, rd, rn, op2); local
263 emitInst(static_cast<ARMWord>(cc) | SUB | SET_CC, rd, rn, op2); local
273 emitInst(static_cast<ARMWord>(cc) | RSB | SET_CC, rd, rn, op2); local
283 emitInst(static_cast<ARMWord>(cc) | ADD | SET_CC, rd, rn, op2); local
293 emitInst(static_cast<ARMWord>(cc) | ADC | SET_CC, rd, rn, op2); local
303 emitInst(static_cast<ARMWord>(cc) | SBC | SET_CC, rd, rn, op2); local
313 emitInst(static_cast<ARMWord>(cc) | RSC | SET_CC, rd, rn, op2); local
318 emitInst(static_cast<ARMWord>(cc) | TST | SET_CC, 0, rn, op2); local
323 emitInst(static_cast<ARMWord>(cc) | TEQ | SET_CC, 0, rn, op2); local
328 emitInst(static_cast<ARMWord>(cc) | CMP | SET_CC, 0, rn, op2); local
338 emitInst(static_cast<ARMWord>(cc) | ORR | SET_CC, rd, rn, op2); local
372 emitInst(static_cast<ARMWord>(cc) | BIC | SET_CC, rd, rn, op2); local
457 emitInst(static_cast<ARMWord>(cc) | LDRH | HDT_UH | DT_UP | DT_PRE, rd, rn, rm); local
472 emitInst(static_cast<ARMWord>(cc) | STRH | HDT_UH | DT_UP | DT_PRE, rd, rn, rm); local
    [all...]
  /external/qemu/target-arm/
translate.c 2754 uint32_t rd, rn, rm, op, i, n, offset, delta_d, delta_m, bank_mask; local
3730 int rd, rn, rm; local
4111 int rd, rn, rm; local
5799 unsigned int cond, insn, val, op1, i, shift, rm, rs, rn, rd, sh; local
7147 uint32_t rd, rn, rm, rs; local
8175 uint32_t val, insn, op, rm, rn, rd, shift, cond; local
    [all...]
  /prebuilt/common/groovy/
groovy-all-1.7.0.jar 
  /prebuilt/common/jython/
jython.jar 

Completed in 548 milliseconds