HomeSort by relevance Sort by last modified time
    Searched refs:_choice (Results 1 - 4 of 4) sorted by null

  /frameworks/rs/tests/lldb/
run_tests.py 137 def _choice(first_choice, second_choice): function
177 self.blacklist = _choice(args.blacklist, config.blacklist)
181 self.adb_path = _choice(args.adb_path, config.adb_path)
183 self.host_port = int(_choice(args.host_port, config.host_port))
185 self.device = _choice(args.device, config.device)
189 self.device_port = int(_choice(args.device_port, config.device_port))
191 self.lldb_server_path_device = _choice(args.lldb_server_path_device,
194 self.lldb_server_path_host = _choice(args.lldb_server_path_host,
197 self.aosp_product_path = _choice(args.aosp_product_path,
200 self.log_file_path = _choice(args.log_file_path, config.log_file_path
    [all...]
  /external/lzma/Java/SevenZip/Compression/LZMA/
Encoder.java 169 short[] _choice = new short[2]; field in class:Encoder.LenEncoder
186 SevenZip.Compression.RangeCoder.Encoder.InitBitModels(_choice);
200 rangeEncoder.Encode(_choice, 0, 0);
206 rangeEncoder.Encode(_choice, 0, 1);
209 rangeEncoder.Encode(_choice, 1, 0);
214 rangeEncoder.Encode(_choice, 1, 1);
222 int a0 = SevenZip.Compression.RangeCoder.Encoder.GetPrice0(_choice[0]);
223 int a1 = SevenZip.Compression.RangeCoder.Encoder.GetPrice1(_choice[0]);
224 int b0 = a1 + SevenZip.Compression.RangeCoder.Encoder.GetPrice0(_choice[1]);
225 int b1 = a1 + SevenZip.Compression.RangeCoder.Encoder.GetPrice1(_choice[1]);
    [all...]
  /external/scapy/scapy/
volatile.py 235 self._choice = args
237 return random.choice(self._choice)
558 self._choice = list(sing)
559 self._choice.sort()
596 self._choice = [ "",
  /external/lzma/CS/7zip/Compress/LZMA/
LzmaEncoder.cs 169 RangeCoder.BitEncoder _choice = new RangeCoder.BitEncoder(); field in class:SevenZip.Compression.LZMA.Encoder.LenEncoder
186 _choice.Init();
200 _choice.Encode(rangeEncoder, 0);
206 _choice.Encode(rangeEncoder, 1);
222 UInt32 a0 = _choice.GetPrice0();
223 UInt32 a1 = _choice.GetPrice1();
    [all...]

Completed in 934 milliseconds