HomeSort by relevance Sort by last modified time
    Searched refs:fv (Results 26 - 50 of 255) sorted by null

12 3 4 5 6 7 8 91011

  /external/vboot_reference/futility/
cmd_show.c 38 uint8_t *fv; member in struct:local_data_s
281 uint8_t *fv_data = option.fv;
492 if (option.fv) {
494 kernel_blob = option.fv;
559 " -f|--fv FILE Verify this payload (FW_MAIN_A/B)\n"
579 {"fv", 1, 0, 'f'},
628 option.fv = ReadFile(optarg, &option.fv_size);
629 if (!option.fv) {
726 if (option.fv)
727 free(option.fv);
    [all...]
  /external/vboot_reference/tests/
gen_preamble_testdata.sh 72 --fv "${DATADIR}/FWDATA"
run_preamble_tests.sh 47 --fv "${DATADIR}/FWDATA" >/dev/null 2>&1
gen_fuzz_test_cases.sh 48 --fv $1 \
  /external/clang/test/OpenMP/
atomic_read_codegen.c 20 float fv, fx; variable
129 fv = fx;
207 fv = cix;
atomic_update_codegen.cpp 20 float fv, fx; variable
206 fx = fx + fv;
496 cix = fv / cix;
    [all...]
atomic_write_codegen.c 20 float fv, fx; variable
129 fx = fv;
242 cix = fv;
  /prebuilts/go/darwin-x86/src/net/
dnsmsg.go 450 switch fv := field.(type) {
455 i := *fv
463 i := *fv
470 n := len(fv)
474 copy(msg[off:off+n], fv)
477 s := *fv
509 switch fv := field.(type) {
517 *fv = uint16(msg[off])<<8 | uint16(msg[off+1])
523 *fv = uint32(msg[off])<<24 | uint32(msg[off+1])<<16 |
527 n := len(fv)
    [all...]
  /prebuilts/go/linux-x86/src/net/
dnsmsg.go 450 switch fv := field.(type) {
455 i := *fv
463 i := *fv
470 n := len(fv)
474 copy(msg[off:off+n], fv)
477 s := *fv
509 switch fv := field.(type) {
517 *fv = uint16(msg[off])<<8 | uint16(msg[off+1])
523 *fv = uint32(msg[off])<<24 | uint32(msg[off+1])<<16 |
527 n := len(fv)
    [all...]
  /device/linaro/bootloader/edk2/ArmPlatformPkg/Scripts/Ds5/
firmware_volume.py 185 def __init__(self, fv, base, ec):
186 self.fv = fv
208 polarity = self.fv.get_polarity()
269 # Get the offset of the first FFS file from the FV header
  /external/vboot_reference/tests/futility/
test_sign_firmware.sh 107 --fv ${loemdir}/fw_main_A \
111 --fv ${loemdir}/fw_main_B \
test_sign_kernel.sh 188 --fv ${TMP}.blob3.${arch}.kb0 \
213 --fv ${TMP}.blob4.${arch}.kb0 \
  /prebuilts/go/darwin-x86/src/reflect/
makefunc.go 115 fv := &methodValue{
125 methodReceiver(op, fv.rcvr, fv.method)
127 return Value{funcType, unsafe.Pointer(fv), v.flag&flagRO | flag(Func)}
set_test.go 147 fv := ValueOf(io.WriteString)
149 fv.Call([]Value{ValueOf(b), ValueOf("hello world")})
  /prebuilts/go/linux-x86/src/reflect/
makefunc.go 115 fv := &methodValue{
125 methodReceiver(op, fv.rcvr, fv.method)
127 return Value{funcType, unsafe.Pointer(fv), v.flag&flagRO | flag(Func)}
set_test.go 147 fv := ValueOf(io.WriteString)
149 fv.Call([]Value{ValueOf(b), ValueOf("hello world")})
  /build/kati/
expr.go 662 var fv Value
663 fv = f
665 fv = compactor.Compact()
668 fv = funcstats{
669 Value: fv,
670 str: fv.String(),
674 return fv, i, nil
  /toolchain/binutils/binutils-2.25/gas/config/
atof-ieee.c 679 float fv;
691 memcpy (&fv, &arr[0], sizeof (float));
692 sprintf (sbuf + strlen (sbuf), "%x %x %.12g\n", arr[0], arr[1], fv);
677 float fv; local
  /external/deqp/modules/gles2/functional/
es2fDefaultVertexAttributeTests.cpp 158 GEN_INDIRECT_FLOAT_LOADER(float, 1, fv, "vertex_attrib_1fv");
159 GEN_INDIRECT_FLOAT_LOADER(float, 2, fv, "vertex_attrib_2fv");
160 GEN_INDIRECT_FLOAT_LOADER(float, 3, fv, "vertex_attrib_3fv");
161 GEN_INDIRECT_FLOAT_LOADER(float, 4, fv, "vertex_attrib_4fv");
  /external/deqp/modules/gles3/functional/
es3fDefaultVertexAttributeTests.cpp 228 GEN_INDIRECT_FLOAT_LOADER(float, 1, fv, "vertex_attrib_1fv");
229 GEN_INDIRECT_FLOAT_LOADER(float, 2, fv, "vertex_attrib_2fv");
230 GEN_INDIRECT_FLOAT_LOADER(float, 3, fv, "vertex_attrib_3fv");
231 GEN_INDIRECT_FLOAT_LOADER(float, 4, fv, "vertex_attrib_4fv");
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Eot/
Report.py 32 # @param FvObj: FV object after parsing FV images
84 # Generate FV information
233 # @param FfsObj: FFS object after FV image is parsed
461 FilePath = 'FVRECOVERYFLOPPY.fv'
462 if FilePath.lower().endswith(".fv"):
470 fv = FirmwareVolume("FVRECOVERY", buf, 0)
472 report = Report('Report.html', fv)
  /frameworks/native/libs/math/tests/
vec_test.cpp 172 float4 fv(1, 2, 3, 4);
173 v1 += fv;
  /prebuilts/go/darwin-x86/src/cmd/pprof/internal/driver/
interactive.go 351 var fv float64
390 if fv, err = strconv.ParseFloat(value, 64); err != nil {
393 of.flagNodeFraction = newFloat64(fv)
395 if fv, err = strconv.ParseFloat(value, 64); err != nil {
398 of.flagEdgeFraction = newFloat64(fv)
  /prebuilts/go/linux-x86/src/cmd/pprof/internal/driver/
interactive.go 351 var fv float64
390 if fv, err = strconv.ParseFloat(value, 64); err != nil {
393 of.flagNodeFraction = newFloat64(fv)
395 if fv, err = strconv.ParseFloat(value, 64); err != nil {
398 of.flagEdgeFraction = newFloat64(fv)
  /external/vboot_reference/utility/
dev_debug_vboot 328 --fv "FW_MAIN_${fw}" --kernelkey "kern_subkey_${fw}.vbpubk" ; result
333 --fv "FW_MAIN_${fw}" > tmp.txt

Completed in 937 milliseconds

12 3 4 5 6 7 8 91011