Searched refs:StringLength (Results 1 - 13 of 13) sorted by relevance

/freebsd-10.0-release/sys/contrib/dev/acpica/components/executer/
H A Dexconvrt.c446 UINT32 StringLength = 0; local
471 StringLength = ACPI_MAX_DECIMAL_DIGITS;
479 StringLength = ACPI_MUL_2 (AcpiGbl_IntegerByteWidth);
487 ReturnDesc = AcpiUtCreateStringObject ((ACPI_SIZE) StringLength);
497 StringLength = AcpiExConvertToAscii (ObjDesc->Integer.Value, Base,
502 ReturnDesc->String.Length = StringLength;
503 NewBuf [StringLength] = 0;
527 StringLength += 4;
531 StringLength += 3;
535 StringLength
[all...]
/freebsd-10.0-release/sys/contrib/dev/acpica/compiler/
H A Daslrestype2.c179 UINT16 StringLength = 0; local
188 StringLength = RsGetStringDataLength (InitializerOp);
216 1 + OptionIndex + StringLength);
277 if (StringLength)
377 if (StringLength && ResSourceString)
382 AML_RESOURCE, &(Rover->ByteItem), StringLength);
385 (Descriptor->ExtendedIrq.ResourceLength + StringLength);
390 + OptionIndex + StringLength;
H A Daslrestype2d.c85 UINT16 StringLength = 0; local
93 StringLength = RsGetStringDataLength (InitializerOp);
96 sizeof (AML_RESOURCE_ADDRESS32) + 1 + StringLength);
212 if (StringLength)
217 (Descriptor->Address32.ResourceLength + StringLength);
285 OptionIndex + StringLength;
317 UINT16 StringLength = 0; local
324 StringLength = RsGetStringDataLength (InitializerOp);
327 sizeof (AML_RESOURCE_ADDRESS32) + 1 + StringLength);
449 if (StringLength)
553 UINT16 StringLength = 0; local
[all...]
H A Daslrestype2q.c86 UINT16 StringLength = 0; local
93 StringLength = RsGetStringDataLength (InitializerOp);
96 sizeof (AML_RESOURCE_ADDRESS64) + 1 + StringLength);
205 if (StringLength)
208 (Descriptor->Address64.ResourceLength + StringLength);
276 OptionIndex + StringLength;
308 UINT16 StringLength = 0; local
315 StringLength = RsGetStringDataLength (InitializerOp);
318 sizeof (AML_RESOURCE_ADDRESS64) + 1 + StringLength);
434 if (StringLength)
538 UINT16 StringLength = 0; local
[all...]
H A Daslrestype2w.c86 UINT16 StringLength = 0; local
93 StringLength = RsGetStringDataLength (InitializerOp);
96 sizeof (AML_RESOURCE_ADDRESS16) + 1 + StringLength);
205 if (StringLength)
208 (Descriptor->Address16.ResourceLength + StringLength);
276 OptionIndex + StringLength;
308 UINT16 StringLength = 0; local
315 StringLength = RsGetStringDataLength (InitializerOp);
318 sizeof (AML_RESOURCE_ADDRESS16) + 1 + StringLength);
425 if (StringLength)
514 UINT16 StringLength = 0; local
[all...]
H A Daslrestype2e.c84 UINT16 StringLength = 0; local
89 StringLength = RsGetStringDataLength (InitializerOp);
92 sizeof (AML_RESOURCE_EXTENDED_ADDRESS64) + 1 + StringLength);
226 Rnode->BufferLength = sizeof (AML_RESOURCE_EXTENDED_ADDRESS64) + StringLength;
257 UINT16 StringLength = 0; local
262 StringLength = RsGetStringDataLength (InitializerOp);
265 sizeof (AML_RESOURCE_EXTENDED_ADDRESS64) + 1 + StringLength);
407 Rnode->BufferLength = sizeof (AML_RESOURCE_EXTENDED_ADDRESS64) + StringLength;
438 UINT16 StringLength = 0; local
443 StringLength
[all...]
/freebsd-10.0-release/sys/contrib/dev/acpica/components/resources/
H A Drscalc.c129 * (StringLength includes the NULL terminator) plus the size of the
134 return ((ACPI_RS_LENGTH) (ResourceSource->StringLength + 1));
162 UINT32 StringLength = 0; local
184 StringLength = ResourceLength - MinimumAmlResourceLength - 1;
191 return ((UINT32) ACPI_ROUND_UP_TO_NATIVE_WORD (StringLength));
358 Resource->Data.Gpio.ResourceSource.StringLength +
369 Resource->Data.I2cSerialBus.ResourceSource.StringLength +
H A Drsserial.c132 {ACPI_RSC_COUNT_GPIO_RES, ACPI_RS_OFFSET (Data.Gpio.ResourceSource.StringLength),
208 {ACPI_RSC_COUNT_SERIAL_RES, ACPI_RS_OFFSET (Data.CommonSerialBus.ResourceSource.StringLength),
288 {ACPI_RSC_COUNT_SERIAL_RES, ACPI_RS_OFFSET (Data.CommonSerialBus.ResourceSource.StringLength),
384 {ACPI_RSC_COUNT_SERIAL_RES, ACPI_RS_OFFSET (Data.CommonSerialBus.ResourceSource.StringLength),
H A Drsutils.c422 ResourceSource->StringLength = AcpiRsStrcpy (ResourceSource->StringPtr,
431 ResourceSource->StringLength = 0;
471 if (ResourceSource->StringLength)
490 DescriptorLength += ((ACPI_RSDESC_SIZE) ResourceSource->StringLength + 1);
/freebsd-10.0-release/contrib/apr-util/include/private/
H A Dapr_dbd_odbc_v2.h38 #define SQLSetEnvAttr(henv, Attribute, Value, StringLength) (0)
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCodeGenModule.cpp2230 unsigned &StringLength) {
2236 StringLength = NumBytes;
2252 StringLength = ToPtr - &ToBuf[0];
2258 (StringLength + 1) * 2));
2264 unsigned &StringLength) {
2266 StringLength = String.size();
2272 unsigned StringLength = 0; local
2277 isUTF16, StringLength);
2361 Fields[3] = llvm::ConstantInt::get(Ty, StringLength);
2387 unsigned StringLength local
2226 GetConstantCFStringEntry(llvm::StringMap<llvm::Constant*> &Map, const StringLiteral *Literal, bool TargetIsLSB, bool &IsUTF16, unsigned &StringLength) argument
2262 GetConstantStringEntry(llvm::StringMap<llvm::Constant*> &Map, const StringLiteral *Literal, unsigned &StringLength) argument
[all...]
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Lex/
H A DModuleMap.cpp733 unsigned StringLength; member in struct:clang::MMToken
739 StringLength = 0;
750 return StringRef(StringData, StringLength);
848 Tok.StringLength = LToken.getLength();
918 Tok.StringLength = Length;
/freebsd-10.0-release/sys/contrib/dev/acpica/include/
H A Dacrestyp.h333 UINT16 StringLength; member in struct:acpi_resource_source

Completed in 259 milliseconds