Searched refs:oi (Results 1 - 25 of 35) sorted by relevance

12

/freebsd-10.1-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/translators/
H A Dtst.PartialDereferencing.d45 int oi;
52 oi = ((struct input_struct) ivar).ii;
65 out.oi = xlate < struct output_struct > (in).oi;
67 printf("out.oi: %d\t out.oc: %d\n", out.oi, out.oc);
71 /(100 != out.oi) || (0 != out.oc)/
77 /(100 == out.oi) && (0 == out.oc)/
H A Dtst.PartialOutputTransDefn.d46 int oi;
53 oi = ((struct input_struct *) ivar)->ii;
H A Dtst.StructureAssignment.d46 int oi;
53 oi = ((struct input_struct) ivar).ii;
67 printf("out.oi: %d\t out.oc: %d\n", out.oi, out.oc);
71 /(100 != out.oi) || (0 != out.oc)/
77 /(100 == out.oi) && (0 == out.oc)/
H A Derr.D_XLATE_REDECL.RepeatTransDecl.d45 int oi;
52 oi = ((struct input_struct *) ivar1)->ii1;
58 oi = ((struct input_struct *) ivar1)->ii1;
H A Dtst.InputAliasTrans.d45 int oi;
52 oi = ((input_t *) ivar)->ii;
H A Dtst.OutputAliasTrans.d46 int oi;
55 oi = ((struct input_struct *) ivar)->ii;
H A Dtst.UnionOutputTrans.d46 int oi;
52 oi = ((struct input_struct *) ivar)->ii;
H A Dtst.SimultaneousTranslators.d52 int oi;
59 oi = ((struct input_struct1 *) ivar1)->ii1;
H A Dtst.RepeatDeclaration.d50 int oi;
57 oi = ((struct input_struct1 *) ivar1)->ii1;
63 oi = ((struct input_struct2 *) ivar2)->ii2;
/freebsd-10.1-release/crypto/openssh/
H A Dbufbn.c65 int oi; local
69 oi = BN_bn2bin(value, buf);
70 if (oi != bin_size) {
71 error("buffer_put_bignum_ret: BN_bn2bin() failed: oi %d != bin_size %d",
72 oi, bin_size);
81 buffer_append(buffer, buf, oi);
153 int oi; local
172 oi = BN_bn2bin(value, buf+1);
173 if (oi < 0 || (u_int)oi !
[all...]
/freebsd-10.1-release/tools/tools/mid/
H A Dmid-index52 if (/^Message-id:\s+\<([^$idsep]+)/oi) {
54 } elsif (/^Resent-Message-id:\s+\<([^$idsep]+)/oi) {
56 } elsif (/^References:\s+\<([^$idsep]+)/oi) {
58 } elsif (/^In-Reply-to:\s+[^<]*\<([^$idsep]+)/oi) {
/freebsd-10.1-release/sys/dev/acpi_support/
H A Datk0110.c223 ACPI_OBJECT *oi; local
234 oi = o[0].Package.Elements;
236 oi[0].Type != ACPI_TYPE_INTEGER ||
237 oi[1].Type != ACPI_TYPE_STRING ||
238 oi[2].Type != ACPI_TYPE_INTEGER ||
239 oi[3].Type != ACPI_TYPE_INTEGER ||
240 oi[4].Type != ACPI_TYPE_INTEGER) {
246 as[i].i = oi[0].Integer.Value;
247 desc = oi[1].String.Pointer;
248 as[i].l = oi[
[all...]
/freebsd-10.1-release/bin/ed/
H A Dio.c254 int oi = 0; local
261 oi = 0;
279 if (i != oi) {
280 oi = i;
/freebsd-10.1-release/contrib/subversion/subversion/libsvn_subr/
H A Dwin32_crashrpt.c191 OSVERSIONINFO oi; local
210 oi.dwOSVersionInfoSize = sizeof(oi);
211 GetVersionEx(&oi);
215 oi.dwMajorVersion, oi.dwMinorVersion, oi.dwBuildNumber,
216 oi.szCSDVersion);
/freebsd-10.1-release/contrib/gdb/gdb/
H A Dcp-valprint.c758 int fn, oi; local
772 for (oi = 0; oi < TYPE_FN_FIELDLIST_LENGTH (type, fn); oi++)
773 if (TYPE_FN_FIELD_VIRTUAL_P (TYPE_FN_FIELDLIST1 (type, fn), oi))
779 int vx = (TYPE_FN_FIELD_VOFFSET (TYPE_FN_FIELDLIST1 (type, fn), oi)
794 = TYPE_FN_FIELD_PHYSNAME (TYPE_FN_FIELDLIST1 (type, fn), oi);
/freebsd-10.1-release/contrib/llvm/utils/TableGen/
H A DInstrInfoEmitter.cpp331 for (unsigned oi = 0, oe = Operands.size(); oi != oe; ++oi) {
332 if (!Operands[oi]->isAnonymous())
333 OS << " " << Operands[oi]->getName() << " = " << oi << ",\n";
H A DRegisterInfoEmitter.cpp1149 for (unsigned oi = 1 , oe = RC.getNumOrders(); oi != oe; ++oi) {
1150 ArrayRef<Record*> Elems = RC.getOrder(oi);
1152 OS << " static const MCPhysReg AltOrder" << oi << "[] = {"; local
1162 for (unsigned oi = 1, oe = RC.getNumOrders(); oi != oe; ++oi)
1163 if (RC.getOrder(oi).empty())
1166 OS << "),\n makeArrayRef(AltOrder" << oi; local
[all...]
/freebsd-10.1-release/contrib/llvm/lib/MC/
H A DMCModuleYAML.cpp321 for (unsigned oi = 0; oi != OpCount; ++oi)
322 A.Insts[i].Operands[oi].MCOp = MCDI.Inst.getOperand(oi);
/freebsd-10.1-release/crypto/openssl/crypto/perlasm/
H A Dx86masm.pl17 for (@arg) { s/(?<![\w\$\.])0x([0-9a-f]+)/0$1h/oi; }
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Expression/
H A DIRForTarget.cpp1891 for (OffsetsTy::iterator oi = offsets.begin(), oe = offsets.end();
1892 oi != oe;
1893 ++oi)
1895 GlobalVariable *gv = oi->first;
1896 size_t offset = oi->second;
1968 for (Instruction::op_iterator oi = inst.op_begin(), oe = inst.op_end();
1969 oi != oe;
1970 ++oi)
1972 Value *operand_val = oi->get();
H A DIRInterpreter.cpp535 for (int oi = 0, oe = ii->getNumOperands();
536 oi != oe;
537 ++oi)
539 Value *operand = ii->getOperand(oi);
/freebsd-10.1-release/contrib/unbound/util/
H A Dconfig_file.c436 char** oi = (char**)malloc((cfg->num_out_ifs+1)*sizeof(char*)); local
437 if(!d || !oi) { free(d); free(oi); return -1; }
439 memmove(oi, cfg->out_ifs, cfg->num_out_ifs*sizeof(char*));
442 oi[cfg->num_out_ifs++] = d;
443 cfg->out_ifs = oi;
/freebsd-10.1-release/contrib/wpa/src/ap/
H A Dap_config.h151 u8 oi[MAX_ROAMING_CONSORTIUM_LEN]; member in struct:hostapd_roaming_consortium
H A Dieee802_11_shared.c330 os_memcpy(pos, hapd->conf->roaming_consortium[i].oi,
/freebsd-10.1-release/contrib/gcc/
H A Dtree-ssa-loop-im.c1214 ssa_op_iter oi; local
1273 FOR_EACH_SSA_TREE_OPERAND (vname, stmt, oi,
1280 FOR_EACH_SSA_TREE_OPERAND (vname, stmt, oi,

Completed in 285 milliseconds

12