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

12

/external/libmtp/src/
H A Dplaylist-spl.h26 int is_spl_playlist(PTPObjectInfo *oi);
28 void spl_to_playlist_t(LIBMTP_mtpdevice_t* device, PTPObjectInfo *oi,
H A Dptp-pack.c459 ptp_pack_OI (PTPParams *params, PTPObjectInfo *oi, unsigned char** oidataptr) argument
471 htod32a(&oidata[PTP_oi_StorageID],oi->StorageID);
472 htod16a(&oidata[PTP_oi_ObjectFormat],oi->ObjectFormat);
473 htod16a(&oidata[PTP_oi_ProtectionStatus],oi->ProtectionStatus);
474 htod32a(&oidata[PTP_oi_ObjectCompressedSize],oi->ObjectCompressedSize);
475 htod16a(&oidata[PTP_oi_ThumbFormat],oi->ThumbFormat);
476 htod32a(&oidata[PTP_oi_ThumbCompressedSize],oi->ThumbCompressedSize);
477 htod32a(&oidata[PTP_oi_ThumbPixWidth],oi->ThumbPixWidth);
478 htod32a(&oidata[PTP_oi_ThumbPixHeight],oi->ThumbPixHeight);
479 htod32a(&oidata[PTP_oi_ImagePixWidth],oi
566 ptp_unpack_OI(PTPParams *params, unsigned char* data, PTPObjectInfo *oi, unsigned int len) argument
1795 PTPObjectInfo *oi = (*oinfos)+curob; local
[all...]
H A Dplaylist-spl.c88 * @param oi object we are deciding on
91 int is_spl_playlist(PTPObjectInfo *oi) argument
93 return (oi->ObjectFormat == PTP_OFC_Undefined) &&
94 (strlen(oi->Filename) > 4) &&
95 (strcmp((oi->Filename + strlen(oi->Filename) -4), ".spl") == 0);
112 * @param oi object we are reading
117 void spl_to_playlist_t(LIBMTP_mtpdevice_t* device, PTPObjectInfo *oi, argument
122 pl->name = malloc(sizeof(char)*(strlen(oi->Filename) -4 +1));
123 memcpy(pl->name, oi
[all...]
H A Dlibmtp.c2207 if (!params->objects[i].oi.Filename) {
2209 params->objects[i].oi.Filename = strdup("<null>");
2218 params->objects[i].oi.ParentObject = prop->propval.u32;
2222 params->objects[i].oi.ObjectFormat = prop->propval.u16;
2229 params->objects[i].oi.ObjectCompressedSize = (uint32_t) prop->propval.u64;
2231 params->objects[i].oi.ObjectCompressedSize = prop->propval.u32;
2235 params->objects[i].oi.StorageID = prop->propval.u32;
2240 params->objects[i].oi.Filename = strdup(prop->propval.str);
2302 if (ob->oi.ObjectFormat == PTP_OFC_Association)
2323 if (ob->oi
[all...]
H A Dptp.c704 unsigned char* oi=NULL; local
712 ret=ptp_transaction(params, &ptp, PTP_DP_GETDATA, 0, &oi, &len);
713 if (ret == PTP_RC_OK) ptp_unpack_OI(params, oi, objectinfo, len);
714 free(oi);
2766 ptp_free_objectinfo (PTPObjectInfo *oi) argument
2768 if (!oi) return;
2769 free (oi->Filename); oi->Filename = NULL;
2770 free (oi->Keywords); oi
[all...]
/external/valgrind/main/none/tests/s390x/
H A Dor.c12 memimmsweep(oi, 0);
13 memimmsweep(oi, 255);
14 memimmsweep(oi, 128);
15 memimmsweep(oi, 0xaa);
16 memimmsweep(oi, 0x55);
H A Dor.stdout.exp1021 oi 0000000000000000 | 0000000000000000 = 0000000000000000 (cc=0)
1022 oi 0000000000000001 | 0000000000000000 = 0000000000000001 (cc=0)
1023 oi 000000000000FFFF | 0000000000000000 = 000000000000FFFF (cc=0)
1024 oi 0000000000007FFF | 0000000000000000 = 0000000000007FFF (cc=0)
1025 oi 0000000000008000 | 0000000000000000 = 0000000000008000 (cc=0)
1026 oi 00000000FFFFFFFF | 0000000000000000 = 00000000FFFFFFFF (cc=0)
1027 oi 0000000080000000 | 0000000000000000 = 0000000080000000 (cc=0)
1028 oi 000000007FFFFFFF | 0000000000000000 = 000000007FFFFFFF (cc=0)
1029 oi AAAAAAAAAAAAAAAA | 0000000000000000 = AAAAAAAAAAAAAAAA (cc=1)
1030 oi 800000000000000
[all...]
/external/llvm/lib/Target/AArch64/
H A DAArch64ConditionalCompares.cpp221 for (unsigned oi = 1, oe = I.getNumOperands(); oi != oe; oi += 2) {
222 MachineBasicBlock *MBB = I.getOperand(oi + 1).getMBB();
223 unsigned Reg = I.getOperand(oi).getReg();
246 for (unsigned oi = I.getNumOperands(); oi > 2; oi -= 2) {
247 // PHI operands are (Reg, MBB) at (oi-2, oi
[all...]
/external/clang/test/SemaTemplate/
H A Dconstructor-template.cpp45 Outer<int> oi(xi);
/external/mksh/src/
H A Dmisc.c175 const struct options_info *oi = (const struct options_info *)arg; local
178 oi->opt_width, OFN(oi->opts[i]),
179 Flag(oi->opts[i]) ? "on" : "off");
190 struct options_info oi; local
195 oi.opt_width = 0;
198 oi.opts[n++] = i;
202 if ((int)len > oi.opt_width)
203 oi.opt_width = (int)len;
207 print_columns(shl_stdout, n, options_fmt_entry, &oi,
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DMixedItemSection.java114 OffsettedItem oi = (OffsettedItem) item;
115 return oi.getAbsoluteOffset();
/external/llvm/lib/MC/MCAnalysis/
H A DMCModuleYAML.cpp324 for (unsigned oi = 0; oi != OpCount; ++oi)
325 A.Insts[i].Operands[oi].MCOp = MCDI.Inst.getOperand(oi);
/external/llvm/utils/TableGen/
H A DRegisterInfoEmitter.cpp1150 for (unsigned oi = 1 , oe = RC.getNumOrders(); oi != oe; ++oi) {
1151 ArrayRef<Record*> Elems = RC.getOrder(oi);
1153 OS << " static const MCPhysReg AltOrder" << oi << "[] = {"; local
1163 for (unsigned oi = 1, oe = RC.getNumOrders(); oi != oe; ++oi)
1164 if (RC.getOrder(oi).empty())
1167 OS << "),\n makeArrayRef(AltOrder" << oi; local
[all...]
/external/chromium_org/third_party/openssl/openssl/crypto/perlasm/
H A Dx86masm.pl17 for (@arg) { s/(?<![\w\$\.])0x([0-9a-f]+)/0$1h/oi; }
/external/openssl/crypto/perlasm/
H A Dx86masm.pl17 for (@arg) { s/(?<![\w\$\.])0x([0-9a-f]+)/0$1h/oi; }
/external/dhcpcd/
H A Ddhcpcd.c1472 reconf_reboot(int action, int argc, char **argv, int oi) argument
1476 ifs = discover_interfaces(argc - oi, argv + oi);
1602 int opt, oi = 0; local
1688 while ((opt = getopt_long(argc, argv, IF_OPTS, cf_options, &oi)) != -1)
1713 for (oi = optind; oi < argc; oi++) {
1715 if (strcmp(ifp->name, argv[oi]) == 0)
1800 int opt, oi local
[all...]
/external/lldb/source/Expression/
H A DIRForTarget.cpp1903 for (OffsetsTy::iterator oi = offsets.begin(), oe = offsets.end();
1904 oi != oe;
1905 ++oi)
1907 GlobalVariable *gv = oi->first;
1908 size_t offset = oi->second;
1980 for (Instruction::op_iterator oi = inst.op_begin(), oe = inst.op_end();
1981 oi != oe;
1982 ++oi)
1984 Value *operand_val = oi->get();
H A DIRInterpreter.cpp527 for (int oi = 0, oe = ii->getNumOperands();
528 oi != oe;
529 ++oi)
531 Value *operand = ii->getOperand(oi);
/external/chromium_org/third_party/WebKit/Source/bindings/scripts/
H A Dv8_interface.py499 # 3. Let o0..n−1 be a list of optionality values, where oi is “variadic”
524 if n > 0 and all(oi for oi in o):
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dap_config.h156 u8 oi[MAX_ROAMING_CONSORTIUM_LEN]; member in struct:hostapd_roaming_consortium
H A Dieee802_11_shared.c378 os_memcpy(pos, hapd->conf->roaming_consortium[i].oi,
/external/wpa_supplicant_8/src/ap/
H A Dap_config.h156 u8 oi[MAX_ROAMING_CONSORTIUM_LEN]; member in struct:hostapd_roaming_consortium
H A Dieee802_11_shared.c378 os_memcpy(pos, hapd->conf->roaming_consortium[i].oi,
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dap_config.h156 u8 oi[MAX_ROAMING_CONSORTIUM_LEN]; member in struct:hostapd_roaming_consortium
H A Dieee802_11_shared.c378 os_memcpy(pos, hapd->conf->roaming_consortium[i].oi,

Completed in 529 milliseconds

12