Home
last modified time | relevance | path

Searched refs:xlength (Results 1 – 25 of 487) sorted by relevance

12345678910>>...20

/dports/math/R-cran-matrixStats/matrixStats/src/
H A Dx_OP_y.c18 ny = xlength(y); in x_OP_y()
48 …ws, nxrows, cxcols, nxcols, cyidxs, nyidxs, byrow, commute2, narm, hasna, REAL(ans), xlength(ans)); in x_OP_y()
51 …ws, nxrows, cxcols, nxcols, cyidxs, nyidxs, byrow, commute2, narm, hasna, REAL(ans), xlength(ans)); in x_OP_y()
54 …ws, nxrows, cxcols, nxcols, cyidxs, nyidxs, byrow, commute2, narm, hasna, REAL(ans), xlength(ans)); in x_OP_y()
69 …ws, nxrows, cxcols, nxcols, cyidxs, nyidxs, byrow, commute2, narm, hasna, REAL(ans), xlength(ans)); in x_OP_y()
72 …ws, nxrows, cxcols, nxcols, cyidxs, nyidxs, byrow, commute2, narm, hasna, REAL(ans), xlength(ans)); in x_OP_y()
75 …ws, nxrows, cxcols, nxcols, cyidxs, nyidxs, byrow, commute2, narm, hasna, REAL(ans), xlength(ans)); in x_OP_y()
90 …ws, nxrows, cxcols, nxcols, cyidxs, nyidxs, byrow, commute2, narm, hasna, REAL(ans), xlength(ans)); in x_OP_y()
110 …ws, nxrows, cxcols, nxcols, cyidxs, nyidxs, byrow, commute2, narm, hasna, REAL(ans), xlength(ans)); in x_OP_y()
113 …ws, nxrows, cxcols, nxcols, cyidxs, nyidxs, byrow, commute2, narm, hasna, REAL(ans), xlength(ans)); in x_OP_y()
[all …]
H A DallocMatrix2.c45 n = xlength(ans); in fillWithValue()
48 if (!isVectorAtomic(value) || xlength(value) != 1) { in fillWithValue()
94 if (isInteger(length) && xlength(length) == 1) { in allocVector2()
96 } else if (isReal(length) && xlength(length) == 1) { in allocVector2()
104 if (!isVectorAtomic(value) || xlength(value) != 1) { in allocVector2()
123 if (!isInteger(nrow) || xlength(nrow) != 1) { in allocMatrix2()
126 if (!isInteger(ncol) || xlength(ncol) != 1) { in allocMatrix2()
135 if (!isVectorAtomic(value) || xlength(value) != 1) { in allocMatrix2()
156 if (!isInteger(dim) || xlength(dim) == 0) { in allocArray2()
160 for (i = 0; i < xlength(dim); i++) { in allocArray2()
[all …]
H A DbinCounts.c23 nbins = xlength(bx)-1; in binCounts()
25 error("Argument 'bx' must specify at least two bin boundaries (= one bin): %d", xlength(bx)); in binCounts()
34 binCounts_R(REAL(x), xlength(x), REAL(bx), nbins, INTEGER(counts)); in binCounts()
36 binCounts_L(REAL(x), xlength(x), REAL(bx), nbins, INTEGER(counts)); in binCounts()
/dports/math/e-antic/e-antic-1.0.0-rc.13/libeantic/upstream/antic/fmpz/test/
H A Dt-divides_mod_list.c32 fmpz_t xstart, xstride, xlength; in main() local
38 fmpz_init(xlength); in main()
48 fmpz_randtest(xlength, state, 100); in main()
55 fmpz_divides_mod_list(xstart, xstride, xlength, a, b, n); in main()
57 if (fmpz_sgn(xlength) > 0) in main()
82 fmpz_cmp(q, xlength) < 0; in main()
128 !fmpz_equal(x, xlength)) in main()
140 !fmpz_equal(x, xlength)) in main()
152 !fmpz_equal(x, xlength)) in main()
160 fmpz_clear(xlength); in main()
/dports/math/e-antic/flint2-ae7ec89/fmpz/test/
H A Dt-divides_mod_list.c32 fmpz_t xstart, xstride, xlength; in main() local
38 fmpz_init(xlength); in main()
48 fmpz_randtest(xlength, state, 100); in main()
55 fmpz_divides_mod_list(xstart, xstride, xlength, a, b, n); in main()
57 if (fmpz_sgn(xlength) > 0) in main()
82 fmpz_cmp(q, xlength) < 0; in main()
128 !fmpz_equal(x, xlength)) in main()
140 !fmpz_equal(x, xlength)) in main()
152 !fmpz_equal(x, xlength)) in main()
160 fmpz_clear(xlength); in main()
/dports/math/flint2/flint-2.8.4/fmpz/test/
H A Dt-divides_mod_list.c32 fmpz_t xstart, xstride, xlength; in main() local
38 fmpz_init(xlength); in main()
48 fmpz_randtest(xlength, state, 100); in main()
55 fmpz_divides_mod_list(xstart, xstride, xlength, a, b, n); in main()
57 if (fmpz_sgn(xlength) > 0) in main()
82 fmpz_cmp(q, xlength) < 0; in main()
128 !fmpz_equal(x, xlength)) in main()
140 !fmpz_equal(x, xlength)) in main()
152 !fmpz_equal(x, xlength)) in main()
160 fmpz_clear(xlength); in main()
/dports/benchmarks/bombardier/bombardier-1.2.5/vendor/github.com/klauspost/compress/flate/
H A Dtoken.go81 func matchToken(xlength uint32, xoffset uint32) token {
82 return token(matchType + xlength<<lengthShift + xoffset)
85 func matchTokend(xlength uint32, xoffset uint32) token {
86 if xlength > maxMatchLength || xoffset > maxMatchOffset {
87 panic(fmt.Sprintf("Invalid match: len: %d, offset: %d\n", xlength, xoffset))
90 return token(matchType + xlength<<lengthShift + xoffset)
/dports/devel/bit/bit-1.1.2/vendor/github.com/klauspost/compress/flate/
H A Dtoken.go81 func matchToken(xlength uint32, xoffset uint32) token {
82 return token(matchType + xlength<<lengthShift + xoffset)
85 func matchTokend(xlength uint32, xoffset uint32) token {
86 if xlength > maxMatchLength || xoffset > maxMatchOffset {
87 panic(fmt.Sprintf("Invalid match: len: %d, offset: %d\n", xlength, xoffset))
90 return token(matchType + xlength<<lengthShift + xoffset)
/dports/math/R/R-4.1.2/src/library/utils/src/
H A Dsize.c93 vcnt = INT2VEC(xlength(s)); in objectsize()
97 vcnt = FLOAT2VEC(xlength(s)); in objectsize()
101 vcnt = COMPLEX2VEC(xlength(s)); in objectsize()
106 vcnt = PTR2VEC(xlength(s)); in objectsize()
108 for (R_xlen_t i = 0; i < xlength(s); i++) { in objectsize()
124 vcnt = PTR2VEC(xlength(s)); in objectsize()
125 for (R_xlen_t i = 0; i < xlength(s); i++) in objectsize()
136 vcnt = BYTE2VEC(xlength(s)); in objectsize()
/dports/math/libRmath/R-4.1.1/src/library/utils/src/
H A Dsize.c93 vcnt = INT2VEC(xlength(s)); in objectsize()
97 vcnt = FLOAT2VEC(xlength(s)); in objectsize()
101 vcnt = COMPLEX2VEC(xlength(s)); in objectsize()
106 vcnt = PTR2VEC(xlength(s)); in objectsize()
108 for (R_xlen_t i = 0; i < xlength(s); i++) { in objectsize()
124 vcnt = PTR2VEC(xlength(s)); in objectsize()
125 for (R_xlen_t i = 0; i < xlength(s); i++) in objectsize()
136 vcnt = BYTE2VEC(xlength(s)); in objectsize()
/dports/x11-fonts/bdf2sfd/bdf2sfd-1.1.7/src/
H A Dpolygon.c20 float x, float y, float xlength, float ylength) { in polygon() argument
23 x = column * xlength; in polygon()
31 x + xlength, y - ylength, in polygon()
32 x + xlength, y, in polygon()
/dports/net/goreplay/goreplay-1.2.0/vendor/github.com/klauspost/compress/compress-1.10.10/flate/
H A Dtoken.go264 func (t *tokens) AddMatch(xlength uint32, xoffset uint32) {
266 if xlength >= maxMatchLength+baseMatchLength {
267 panic(fmt.Errorf("invalid length: %v", xlength))
274 lengthCode := lengthCodes1[uint8(xlength)] & 31
275 t.tokens[t.n] = token(matchType | xlength<<lengthShift | xoffset)
283 func (t *tokens) AddMatchLong(xlength int32, xoffset uint32) {
290 for xlength > 0 {
291 xl := xlength
296 xlength -= xl
/dports/sysutils/brename/brename-2.11.1/vendor/github.com/klauspost/compress/flate/
H A Dtoken.go264 func (t *tokens) AddMatch(xlength uint32, xoffset uint32) {
266 if xlength >= maxMatchLength+baseMatchLength {
267 panic(fmt.Errorf("invalid length: %v", xlength))
274 lengthCode := lengthCodes1[uint8(xlength)] & 31
275 t.tokens[t.n] = token(matchType | xlength<<lengthShift | xoffset)
283 func (t *tokens) AddMatchLong(xlength int32, xoffset uint32) {
290 for xlength > 0 {
291 xl := xlength
296 xlength -= xl
/dports/security/vault/vault-1.8.2/vendor/github.com/klauspost/compress/flate/
H A Dtoken.go256 func (t *tokens) AddMatch(xlength uint32, xoffset uint32) {
258 if xlength >= maxMatchLength+baseMatchLength {
259 panic(fmt.Errorf("invalid length: %v", xlength))
266 lengthCode := lengthCodes1[uint8(xlength)] & 31
267 t.tokens[t.n] = token(matchType | xlength<<lengthShift | xoffset)
275 func (t *tokens) AddMatchLong(xlength int32, xoffset uint32) {
282 for xlength > 0 {
283 xl := xlength
288 xlength -= xl
/dports/net-im/dendrite/dendrite-0.5.1/vendor/github.com/klauspost/compress/flate/
H A Dtoken.go264 func (t *tokens) AddMatch(xlength uint32, xoffset uint32) {
266 if xlength >= maxMatchLength+baseMatchLength {
267 panic(fmt.Errorf("invalid length: %v", xlength))
274 lengthCode := lengthCodes1[uint8(xlength)] & 31
275 t.tokens[t.n] = token(matchType | xlength<<lengthShift | xoffset)
283 func (t *tokens) AddMatchLong(xlength int32, xoffset uint32) {
290 for xlength > 0 {
291 xl := xlength
296 xlength -= xl
/dports/misc/concourse/concourse-6.7.2/vendor/github.com/klauspost/compress/flate/
H A Dtoken.go256 func (t *tokens) AddMatch(xlength uint32, xoffset uint32) {
258 if xlength >= maxMatchLength+baseMatchLength {
259 panic(fmt.Errorf("invalid length: %v", xlength))
266 lengthCode := lengthCodes1[uint8(xlength)] & 31
267 t.tokens[t.n] = token(matchType | xlength<<lengthShift | xoffset)
275 func (t *tokens) AddMatchLong(xlength int32, xoffset uint32) {
282 for xlength > 0 {
283 xl := xlength
288 xlength -= xl
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/klauspost/compress/compress-1.11.6/flate/
H A Dtoken.go264 func (t *tokens) AddMatch(xlength uint32, xoffset uint32) {
266 if xlength >= maxMatchLength+baseMatchLength {
267 panic(fmt.Errorf("invalid length: %v", xlength))
274 lengthCode := lengthCodes1[uint8(xlength)] & 31
275 t.tokens[t.n] = token(matchType | xlength<<lengthShift | xoffset)
283 func (t *tokens) AddMatchLong(xlength int32, xoffset uint32) {
290 for xlength > 0 {
291 xl := xlength
296 xlength -= xl
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/klauspost/compress/flate/
H A Dtoken.go264 func (t *tokens) AddMatch(xlength uint32, xoffset uint32) {
266 if xlength >= maxMatchLength+baseMatchLength {
267 panic(fmt.Errorf("invalid length: %v", xlength))
274 lengthCode := lengthCodes1[uint8(xlength)] & 31
275 t.tokens[t.n] = token(matchType | xlength<<lengthShift | xoffset)
283 func (t *tokens) AddMatchLong(xlength int32, xoffset uint32) {
290 for xlength > 0 {
291 xl := xlength
296 xlength -= xl
/dports/sysutils/terraform/terraform-1.0.11/vendor/github.com/klauspost/compress/flate/
H A Dtoken.go264 func (t *tokens) AddMatch(xlength uint32, xoffset uint32) {
266 if xlength >= maxMatchLength+baseMatchLength {
267 panic(fmt.Errorf("invalid length: %v", xlength))
274 lengthCode := lengthCodes1[uint8(xlength)] & 31
275 t.tokens[t.n] = token(matchType | xlength<<lengthShift | xoffset)
283 func (t *tokens) AddMatchLong(xlength int32, xoffset uint32) {
290 for xlength > 0 {
291 xl := xlength
296 xlength -= xl
/dports/math/symphony/SYMPHONY-releases-5.6.17/SYMPHONY/src/CutGen/
H A Dcg_proccomm.c61 receive_int_array(&p->cur_sol.xlength, 1); in cg_process_message()
63 p->cur_sol.max_sol_length, p->cur_sol.xlength, BB_BUNCH); in cg_process_message()
65 p->cur_sol.max_sol_length, p->cur_sol.xlength, BB_BUNCH); in cg_process_message()
66 receive_int_array(p->cur_sol.xind, p->cur_sol.xlength); in cg_process_message()
67 receive_dbl_array(p->cur_sol.xval, p->cur_sol.xlength); in cg_process_message()
/dports/net/rclone/rclone-1.57.0/vendor/github.com/klauspost/compress/flate/
H A Dtoken.go267 func (t *tokens) AddMatch(xlength uint32, xoffset uint32) {
269 if xlength >= maxMatchLength+baseMatchLength {
270 panic(fmt.Errorf("invalid length: %v", xlength))
280 t.extraHist[lengthCodes1[uint8(xlength)]]++
282 t.tokens[t.n] = token(matchType | xlength<<lengthShift | xoffset)
288 func (t *tokens) AddMatchLong(xlength int32, xoffset uint32) {
296 for xlength > 0 {
297 xl := xlength
302 xlength -= xl
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/grafana/loki/vendor/github.com/klauspost/compress/flate/
H A Dtoken.go267 func (t *tokens) AddMatch(xlength uint32, xoffset uint32) {
269 if xlength >= maxMatchLength+baseMatchLength {
270 panic(fmt.Errorf("invalid length: %v", xlength))
280 t.extraHist[lengthCodes1[uint8(xlength)]]++
282 t.tokens[t.n] = token(matchType | xlength<<lengthShift | xoffset)
288 func (t *tokens) AddMatchLong(xlength int32, xoffset uint32) {
296 for xlength > 0 {
297 xl := xlength
302 xlength -= xl
/dports/www/gitea/gitea-1.16.5/vendor/github.com/klauspost/compress/flate/
H A Dtoken.go267 func (t *tokens) AddMatch(xlength uint32, xoffset uint32) {
269 if xlength >= maxMatchLength+baseMatchLength {
270 panic(fmt.Errorf("invalid length: %v", xlength))
280 t.extraHist[lengthCodes1[uint8(xlength)]]++
282 t.tokens[t.n] = token(matchType | xlength<<lengthShift | xoffset)
288 func (t *tokens) AddMatchLong(xlength int32, xoffset uint32) {
296 for xlength > 0 {
297 xl := xlength
302 xlength -= xl
/dports/www/mattermost-server/mattermost-server-6.0.2/vendor/github.com/klauspost/compress/flate/
H A Dtoken.go267 func (t *tokens) AddMatch(xlength uint32, xoffset uint32) {
269 if xlength >= maxMatchLength+baseMatchLength {
270 panic(fmt.Errorf("invalid length: %v", xlength))
280 t.extraHist[lengthCodes1[uint8(xlength)]]++
282 t.tokens[t.n] = token(matchType | xlength<<lengthShift | xoffset)
288 func (t *tokens) AddMatchLong(xlength int32, xoffset uint32) {
296 for xlength > 0 {
297 xl := xlength
302 xlength -= xl
/dports/www/minio-client/mc-RELEASE.2021-12-10T00-14-28Z/vendor/github.com/klauspost/compress/flate/
H A Dtoken.go267 func (t *tokens) AddMatch(xlength uint32, xoffset uint32) {
269 if xlength >= maxMatchLength+baseMatchLength {
270 panic(fmt.Errorf("invalid length: %v", xlength))
280 t.extraHist[lengthCodes1[uint8(xlength)]]++
282 t.tokens[t.n] = token(matchType | xlength<<lengthShift | xoffset)
288 func (t *tokens) AddMatchLong(xlength int32, xoffset uint32) {
296 for xlength > 0 {
297 xl := xlength
302 xlength -= xl

12345678910>>...20