Home
last modified time | relevance | path

Searched refs:cj (Results 1 - 12 of 12) sorted by relevance

/third_party/json/tests/src/
H A Dunit-udt.cpp685 custom_json cj = me; variable
687 CHECK(j.dump() == cj.dump());
690 CHECK(me == cj.get<udt::person>());
698 custom_json cj = j; variable
699 CHECK(cj == nullptr);
705 custom_json cj = j; variable
706 CHECK(cj == true);
712 custom_json cj; variable
713 CHECK_NOTHROW(cj = j);
714 CHECK(cj
720 custom_json cj = j; global() variable
727 custom_json cj = j; global() variable
734 custom_json cj = j; global() variable
741 custom_json cj = j; global() variable
748 custom_json cj = j; global() variable
755 custom_json cj = j; global() variable
765 custom_json cj = j; global() variable
773 custom_json cj = j.get<custom_json>(); global() variable
[all...]
/third_party/lzma/C/
H A DBcj2Enc.c334 // const unsigned cj = ((Byte)v == 0xe8 ? BCJ2_STREAM_CALL : BCJ2_STREAM_JUMP); in Bcj2Enc_Encode_2()
335 const unsigned cj = (((v + 0x57) >> 6) & 1) + BCJ2_STREAM_CALL; in Bcj2Enc_Encode_2() local
344 Byte *cur = p->bufs[cj]; in Bcj2Enc_Encode_2()
347 if (cur == p->lims[cj]) in Bcj2Enc_Encode_2()
349 p->state = cj; in Bcj2Enc_Encode_2()
355 p->bufs[cj] = cur + 4; in Bcj2Enc_Encode_2()
H A DBcj2.c241 // const unsigned cj = ((Byte)v == 0xe8) ? BCJ2_STREAM_CALL : BCJ2_STREAM_JUMP; in Bcj2Dec_Decode()
242 const unsigned cj = (((v + 0x57) >> 6) & 1) + BCJ2_STREAM_CALL; in Bcj2Dec_Decode() local
243 const Byte *cur = p->bufs[cj]; in Bcj2Dec_Decode()
246 if (cur == p->lims[cj]) in Bcj2Dec_Decode()
248 p->state = cj; in Bcj2Dec_Decode()
252 p->bufs[cj] = cur + 4; in Bcj2Dec_Decode()
/third_party/python/Lib/test/
H A Dtest_http_cookiejar.py752 cj = CookieJar()
755 interact_netscape(cj, uri, value)
757 self.assertIn("/", cj._cookies["example.com"])
759 self.assertEqual(interact_netscape(cj, uri), value)
920 cj = CookieJar(policy=cp)
921 interact_netscape(cj, "http://example.co.uk/", 'no=problemo')
922 interact_netscape(cj, "http://example.co.uk/",
924 self.assertEqual(len(cj), 2)
926 interact_netscape(cj, "http://example.%s/" % pseudo_tld,
928 self.assertEqual(len(cj),
[all...]
H A Dtest_urllib2.py1161 cj = MockCookieJar()
1162 h = urllib.request.HTTPCookieProcessor(cj)
1168 self.assertIs(cj.ach_req, req)
1169 self.assertIs(cj.ach_req, newreq)
1173 self.assertIs(cj.ec_req, req)
1174 self.assertIs(cj.ec_r, r)
1291 cj = CookieJar()
1292 interact_netscape(cj, "http://www.example.com/", "spam=eggs")
1296 cp = urllib.request.HTTPCookieProcessor(cj)
/third_party/node/deps/v8/src/codegen/loong64/
H A Dassembler-loong64.h358 void bceqz(CFRegister cj, int32_t si21);
359 inline void bceqz(CFRegister cj, Label* L) { in bceqz() argument
360 bceqz(cj, shifted_branch_offset21(L)); in bceqz()
362 void bcnez(CFRegister cj, int32_t si21);
363 inline void bcnez(CFRegister cj, Label* L) { in bcnez() argument
364 bcnez(cj, shifted_branch_offset21(L)); in bcnez()
673 void movcf2fr(FPURegister fd, CFRegister cj);
676 void movcf2gr(Register rd, CFRegister cj);
948 void GenB(Opcode opcode, CFRegister cj, int32_t si21, bool isEq);
963 void GenRegister(Opcode opcode, CFRegister cj, FPURegiste
[all...]
H A Dassembler-loong64.cc686 void Assembler::GenB(Opcode opcode, CFRegister cj, int32_t si21, bool isEq) { in GenB() argument
689 DCHECK(cj >= 0 && cj <= 7); in GenB()
690 int32_t sc = (isEq ? cj : cj + 8); in GenB()
773 void Assembler::GenRegister(Opcode opcode, CFRegister cj, FPURegister fd) { in GenRegister() argument
775 Instr instr = opcode | cj << kFjShift | fd.code(); in GenRegister()
785 void Assembler::GenRegister(Opcode opcode, CFRegister cj, Register rd) { in GenRegister() argument
787 Instr instr = opcode | cj << kFjShift | rd.code(); in GenRegister()
1013 void Assembler::bceqz(CFRegister cj, int32_ argument
1017 bcnez(CFRegister cj, int32_t si21) bcnez() argument
2024 movcf2fr(FPURegister fd, CFRegister cj) movcf2fr() argument
2032 movcf2gr(Register rd, CFRegister cj) movcf2gr() argument
[all...]
H A Dmacro-assembler-loong64.cc1836 void TurboAssembler::BranchTrueShortF(Label* target, CFRegister cj) { in CallRecordWriteStub() argument
1837 bcnez(cj, target); in CallRecordWriteStub()
1840 void TurboAssembler::BranchFalseShortF(Label* target, CFRegister cj) { in CallRecordWriteStub() argument
1841 bceqz(cj, target); in CallRecordWriteStub()
1844 void TurboAssembler::BranchTrueF(Label* target, CFRegister cj) { in CallRecordWriteStub() argument
1851 BranchFalseShortF(&skip, cj); in CallRecordWriteStub()
1855 BranchTrueShortF(target, cj); in CallRecordWriteStub()
1859 void TurboAssembler::BranchFalseF(Label* target, CFRegister cj) { in CallRecordWriteStub() argument
1865 BranchTrueShortF(&skip, cj); in CallRecordWriteStub()
1869 BranchFalseShortF(target, cj); in CallRecordWriteStub()
[all...]
/third_party/node/deps/v8/src/diagnostics/loong64/
H A Ddisasm-loong64.cc261 int cj = instr->CjValue(); in PrintCj() local
262 out_buffer_pos_ += base::SNPrintF(out_buffer_ + out_buffer_pos_, "%u", cj); in PrintCj()
405 DCHECK(STRING_STARTS_WITH(format, "cj")); in FormatOption()
621 Format(instr, "bcnez fcc'cj, 'offs21 -> 'pcoffs21"); in DecodeTypekOp6()
623 Format(instr, "bceqz fcc'cj, 'offs21 -> 'pcoffs21"); in DecodeTypekOp6()
1552 Format(instr, "movcf2fr 'fd, fcc'cj"); in DecodeTypekOp22()
1558 Format(instr, "movcf2gr 'rd, fcc'cj"); in DecodeTypekOp22()
/third_party/node/deps/v8/src/execution/loong64/
H A Dsimulator-loong64.h411 inline bool cj() const { return get_cf_register(cj_reg()); } in cj() function in v8::internal::Simulator
H A Dsimulator-loong64.cc2572 printf_instr("BCEQZ\t fcc%d: %s, ", cj_reg(), cj() ? "True" : "False"); in DecodeTypeOp6()
2573 BranchOff21Helper(cj() == false); in DecodeTypeOp6()
2576 printf_instr("BCNEZ\t fcc%d: %s, ", cj_reg(), cj() ? "True" : "False"); in DecodeTypeOp6()
2577 BranchOff21Helper(cj() == true); in DecodeTypeOp6()
5105 SetResult(rd_reg(), cj()); in DecodeTypeOp22()
/third_party/mesa3d/src/mesa/main/
H A Dmipmap.c157 const GLfloat cj = _mesa_half_to_float(rowC[j][e]); \
161 dst[i][e] = _mesa_float_to_half((aj + ak + bj + bk + cj + ck + dj + dk) \

Completed in 35 milliseconds